Repository: yasenh/sort-cpp
Branch: master
Commit: 1dcafbaa4351
Files: 29
Total size: 1.9 MB
Directory structure:
gitextract__xtzkjbt/
├── .gitignore
├── CMakeLists.txt
├── Dockerfile
├── LICENSE
├── README.md
├── data/
│ ├── ADL-Rundle-6/
│ │ └── det.txt
│ ├── ADL-Rundle-8/
│ │ └── det.txt
│ ├── ETH-Bahnhof/
│ │ └── det.txt
│ ├── ETH-Pedcross2/
│ │ └── det.txt
│ ├── ETH-Sunnyday/
│ │ └── det.txt
│ ├── KITTI-13/
│ │ └── det.txt
│ ├── KITTI-17/
│ │ └── det.txt
│ ├── PETS09-S2L1/
│ │ └── det.txt
│ ├── TUD-Campus/
│ │ └── det.txt
│ ├── TUD-Stadtmitte/
│ │ └── det.txt
│ └── Venice-2/
│ └── det.txt
├── docker_run.sh
├── include/
│ ├── kalman_filter.h
│ ├── matrix.cpp
│ ├── matrix.h
│ ├── munkres.h
│ ├── track.h
│ ├── tracker.h
│ └── utils.h
└── src/
├── kalman_filter.cpp
├── main.cpp
├── munkres.cpp
├── track.cpp
└── tracker.cpp
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitignore
================================================
bin/
build/
.idea/
cmake-*/
mot_benchmark/
output/
================================================
FILE: CMakeLists.txt
================================================
cmake_minimum_required(VERSION 3.5.1)
project(sort-cpp)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall")
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
# Try to find OpenCV
find_package(OpenCV REQUIRED)
if (OpenCV_FOUND)
# If the package has been found, several variables will
# be set, you can find the full list with descriptions
# in the OpenCVConfig.cmake file.
# Print some message showing some of them
message(STATUS "OpenCV library status:")
message(STATUS " version: ${OpenCV_VERSION}")
message(STATUS " include path: ${OpenCV_INCLUDE_DIRS}")
else ()
message(FATAL_ERROR "Could not locate OpenCV")
endif()
# Try to find Boost
find_package(Boost COMPONENTS program_options filesystem REQUIRED)
if(Boost_FOUND)
include_directories(${Boost_INCLUDE_DIRS})
else ()
message(FATAL_ERROR "Could not locate Boost")
endif()
include_directories(${PROJECT_SOURCE_DIR}/include)
file(GLOB SOURCE_FILES src/*.cpp)
add_executable(${CMAKE_PROJECT_NAME} ${SOURCE_FILES})
target_link_libraries (
${CMAKE_PROJECT_NAME}
${OpenCV_LIBS}
${Boost_LIBRARIES}
)
================================================
FILE: Dockerfile
================================================
FROM valian/docker-python-opencv-ffmpeg:py3
MAINTAINER Yasen Hu(yasenhu789@gmail.com)
RUN apt-get update -y && \
apt-get install -y \
libvtk-java \
python-vtk \
tcl-vtk \
libvtk5-dev \
libvtk5-qt4-dev \
libusb-1.0-0-dev \
libeigen3-dev \
libboost-all-dev
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
#Add new sudo user
ARG USERNAME=yasen
ARG UID=1000
ARG GID=1000
RUN useradd -m $USERNAME
RUN usermod -aG sudo $USERNAME
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
# Replace 1000 with your user/group id
RUN usermod --uid $UID $USERNAME && groupmod --gid $GID $USERNAME
# Change user
USER $USERNAME
WORKDIR /home/$USERNAME
================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc.
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
Copyright (C)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
Copyright (C)
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
.
================================================
FILE: README.md
================================================
## Introduction
C++ implementation of SORT: Simple, online, and real-time tracking of multiple objects in a video sequence.
Kuhn-Munkres (Hungarian) Algorithm in C++ is forked from:
https://github.com/saebyn/munkres-cpp
## Dependencies
- Ubuntu 16.04
- Docker 18.09.4
- OpenCV 3.4.2
- Boost 1.58.0
> All of the 3rd party libraries are included in the provided docker image
## Build Docker Image
1. Open Dockerfile, change line #19 ARG USERNAME to your host user name (echo $USER)
2. Open a terminal and run:
```bash
$ cd /path/to/sort-cpp
$ docker build -t sort .
$ ./docker_run.sh
```
## Demo:

To run the tracker with the provided detections and visualize the results:
1. Download the [2D MOT 2015 benchmark dataset](https://motchallenge.net/data/2D_MOT_2015/#download)
2. Create a symbolic link to the dataset
```bash
$ ln -s /path/to/MOT2015_challenge/data/2DMOT2015 /path/to/sort-cpp/mot_benchmark
```
3. Run the demo
```bash
$ cd /path/to/sort-cpp
$ mkdir build && cd "$_"
$ cmake .. && make
$ cd /path/to/sort-cpp/bin
# Without display
$ ./sort-cpp
# With display
$ ./sort-cpp -d
```
## Evaluate Metrics
Using the [Python implementation of metrics for benchmarking multiple object trackers (MOT)](https://github.com/cheind/py-motmetrics) to evaluate metrics.
#### Dataset Structure
```
Layout for ground truth data
//gt/gt.txt
//gt/gt.txt
...
Layout for test data
/.txt
/.txt
...
Example:
mot_benchmark
├── test
│ ├── ADL-Rundle-6.txt
│ └── ADL-Rundle-8.txt
└── train
├── ADL-Rundle-6
│ └── gt
│ └── gt.txt
└── ADL-Rundle-8
└── gt
└── gt.txt
Sequences of ground truth and test will be matched according to the ``
string.
```
#### Example
```bash
# Optional for virtualenv
$ source ~/env/bin/activate
$ pip install motmetrics
# Usage
$ python -m motmetrics.apps.eval_motchallenge --help
# Format: python -m motmetrics.apps.eval_motchallenge groundtruths tests
$ python -m motmetrics.apps.eval_motchallenge mot_benchmark/train output/
```
## Result

FPS is around 1900 with Debug build.
## References
1. https://github.com/abewley/sort
2. https://github.com/mcximing/sort-cpp
3. https://github.com/saebyn/munkres-cpp
================================================
FILE: data/ADL-Rundle-6/det.txt
================================================
1,-1,1691.97,381.048,152.23,352.617,0.995616,-1,-1,-1
1,-1,1233.55,467.507,133.65,218.985,0.980069,-1,-1,-1
1,-1,108.484,461.531,97.759,297.453,0.942438,-1,-1,-1
1,-1,256.996,420.694,101.497,296.434,0.938051,-1,-1,-1
1,-1,19.5685,469.707,87.4595,343.434,0.872169,-1,-1,-1
1,-1,1869.09,376.414,49.91,222.562,0.754415,-1,-1,-1
1,-1,1252.28,509.199,59.49,133.608,0.65418,-1,-1,-1
1,-1,0,265.374,109.767,381.325,0.629887,-1,-1,-1
2,-1,1691.29,382.432,187.78,363.197,0.99714,-1,-1,-1
2,-1,249.136,473.997,108.874,235.769,0.986837,-1,-1,-1
2,-1,1272.37,447.903,72.79,217.543,0.985943,-1,-1,-1
2,-1,88.626,445.029,104.591,328.988,0.967904,-1,-1,-1
2,-1,10.6657,486.485,106.665,375.935,0.812186,-1,-1,-1
2,-1,1875.74,375.006,43.26,203.969,0.749853,-1,-1,-1
2,-1,3.37989,285.912,96.0394,365.456,0.579795,-1,-1,-1
3,-1,1703.29,380.319,180.14,344.491,0.997301,-1,-1,-1
3,-1,1275.12,449.542,77.48,212.878,0.984799,-1,-1,-1
3,-1,260.157,441.321,103.242,275.996,0.981736,-1,-1,-1
3,-1,91.6913,480.534,105.259,284.27,0.973085,-1,-1,-1
3,-1,0,274.243,111.097,669.417,0.925986,-1,-1,-1
3,-1,1252.19,475.714,49.63,185.759,0.786207,-1,-1,-1
3,-1,1874.27,375.553,44.73,199.789,0.75428,-1,-1,-1
4,-1,1698.06,390.287,158.29,320.432,0.996181,-1,-1,-1
4,-1,0,284.033,109.849,628.917,0.990643,-1,-1,-1
4,-1,1291.85,440.04,74.5,255.35,0.98008,-1,-1,-1
4,-1,254.554,426.438,110.3,300.785,0.979648,-1,-1,-1
4,-1,92.9269,473.023,108.595,292.996,0.978604,-1,-1,-1
4,-1,1261.51,492.931,66.1,162.723,0.842982,-1,-1,-1
4,-1,1871.56,373.3,47.44,203.455,0.818952,-1,-1,-1
5,-1,1696.65,386.656,155.3,347.506,0.993925,-1,-1,-1
5,-1,0,246.68,116.7,677.913,0.990555,-1,-1,-1
5,-1,1273.26,442.289,92.31,235.936,0.983911,-1,-1,-1
5,-1,97.7056,475.972,94.0824,276.654,0.948322,-1,-1,-1
5,-1,1868.96,362.823,50.04,206.49,0.880095,-1,-1,-1
5,-1,264.041,434.493,115.622,285.328,0.750853,-1,-1,-1
6,-1,1705.35,397.595,153.22,335.607,0.996048,-1,-1,-1
6,-1,0,245.031,123.924,693.271,0.988873,-1,-1,-1
6,-1,95.77,479.716,107.673,293.688,0.986938,-1,-1,-1
6,-1,1276.15,442.949,92.07,234.107,0.982222,-1,-1,-1
6,-1,1866.39,349.775,52.61,218.644,0.89568,-1,-1,-1
6,-1,251.272,446.831,91.44,256.325,0.870085,-1,-1,-1
6,-1,1262.9,480.995,53.99,172.091,0.776214,-1,-1,-1
7,-1,1686.41,392.86,183.13,335.486,0.996342,-1,-1,-1
7,-1,1274.76,438.168,89.09,234.233,0.972008,-1,-1,-1
7,-1,0,225.188,147.16,689.978,0.96411,-1,-1,-1
7,-1,263.729,450.479,98.498,257.106,0.951638,-1,-1,-1
7,-1,90.9364,470.294,96.0606,313.024,0.92323,-1,-1,-1
7,-1,1864.88,344.158,54.12,239.613,0.859147,-1,-1,-1
7,-1,1258.04,468.077,48.73,197.148,0.79982,-1,-1,-1
8,-1,1685.39,391.07,171.03,348.369,0.994414,-1,-1,-1
8,-1,0,208.805,142.165,732.398,0.985531,-1,-1,-1
8,-1,1278.25,442.554,84.76,231.737,0.973777,-1,-1,-1
8,-1,267.537,445.492,92.75,257.643,0.970997,-1,-1,-1
8,-1,97.5531,461.155,104.521,311.176,0.906391,-1,-1,-1
8,-1,1863.39,339.329,55.61,246.33,0.84361,-1,-1,-1
9,-1,0,215.153,160.289,694.958,0.993267,-1,-1,-1
9,-1,1682.47,398.328,127.55,348.057,0.986735,-1,-1,-1
9,-1,1280.18,442.033,101.98,210.255,0.974576,-1,-1,-1
9,-1,270.972,434.023,96.003,288.502,0.947945,-1,-1,-1
9,-1,97.719,455.763,101.776,309.867,0.869936,-1,-1,-1
9,-1,1860.7,341.93,58.3,245.184,0.817238,-1,-1,-1
10,-1,0,203.839,160.222,757.24,0.994371,-1,-1,-1
10,-1,1691.09,390.336,159.39,353.443,0.991052,-1,-1,-1
10,-1,1280.93,445.194,86.6,230.13,0.976381,-1,-1,-1
10,-1,273.275,441.559,88.371,285.586,0.953487,-1,-1,-1
10,-1,91.8027,415.623,110.464,383.305,0.849741,-1,-1,-1
10,-1,1881.51,362.833,37.49,230.781,0.740677,-1,-1,-1
10,-1,1338.92,453.611,49.16,203.473,0.553071,-1,-1,-1
11,-1,0,189.299,159.943,741.503,0.996389,-1,-1,-1
11,-1,1679.77,390.624,125.82,351.47,0.99204,-1,-1,-1
11,-1,1286.7,432.94,88.91,245.694,0.969334,-1,-1,-1
11,-1,268.802,460.127,80.71,255.506,0.922857,-1,-1,-1
11,-1,1883.03,388.971,35.97,186.024,0.797018,-1,-1,-1
11,-1,99.9922,418.095,99.9488,379.695,0.795981,-1,-1,-1
11,-1,1277.46,481.314,45.12,188.87,0.677793,-1,-1,-1
11,-1,1343.74,462.074,47.16,185.604,0.609871,-1,-1,-1
12,-1,0,234.839,163.349,711.916,0.996207,-1,-1,-1
12,-1,1686.43,393.521,158.05,337.918,0.993126,-1,-1,-1
12,-1,1289.87,448.171,84.19,230.912,0.980906,-1,-1,-1
12,-1,266.979,442.701,78.139,265.587,0.904555,-1,-1,-1
12,-1,88.0534,420.927,115.363,382.49,0.74799,-1,-1,-1
12,-1,1861.53,340.362,57.47,282.474,0.743309,-1,-1,-1
12,-1,1341.44,461.708,46.79,183.717,0.664727,-1,-1,-1
13,-1,0,207.924,176.761,717.912,0.997823,-1,-1,-1
13,-1,1692.54,383.631,144.7,385.057,0.99048,-1,-1,-1
13,-1,1293.36,436.366,87.39,246.891,0.972511,-1,-1,-1
13,-1,282.49,414.932,91.529,306.963,0.961094,-1,-1,-1
13,-1,98.7764,445.047,101.591,339.055,0.91363,-1,-1,-1
13,-1,1859.44,348.917,59.56,290.562,0.757001,-1,-1,-1
14,-1,0,202.368,172.324,755.401,0.99522,-1,-1,-1
14,-1,1691.26,388.336,132.27,352.345,0.986563,-1,-1,-1
14,-1,1279.63,462.362,121.64,210.556,0.977632,-1,-1,-1
14,-1,95.5652,458.327,97.9128,307.921,0.915101,-1,-1,-1
14,-1,291.968,435.811,79.683,289.317,0.897074,-1,-1,-1
14,-1,1857.62,349.329,61.38,260.075,0.733428,-1,-1,-1
14,-1,1776.83,434.746,68.1,215.062,0.622456,-1,-1,-1
15,-1,0,202.593,190.143,733.83,0.997251,-1,-1,-1
15,-1,1685.34,388.441,154.37,360.751,0.994097,-1,-1,-1
15,-1,1282.5,453.128,118.58,205.577,0.985718,-1,-1,-1
15,-1,1859.29,357.606,59.71,232.063,0.787469,-1,-1,-1
15,-1,294.381,456.103,79.565,254.02,0.784643,-1,-1,-1
15,-1,107.658,421.942,89.846,347.21,0.600738,-1,-1,-1
15,-1,1777.2,411.336,67.61,240.408,0.533053,-1,-1,-1
16,-1,0,182.528,189.518,731.484,0.998812,-1,-1,-1
16,-1,1683.54,381.757,137.16,380.739,0.990211,-1,-1,-1
16,-1,1282.59,452.273,117.08,203.328,0.987213,-1,-1,-1
16,-1,287.406,450.886,99.565,261.173,0.922834,-1,-1,-1
16,-1,1856.31,396.173,62.69,212.923,0.81484,-1,-1,-1
16,-1,112.591,388.197,85.016,386.226,0.603085,-1,-1,-1
17,-1,0,218.941,191.05,718.953,0.998428,-1,-1,-1
17,-1,1681.48,384.268,123.66,360.17,0.993807,-1,-1,-1
17,-1,1284.68,463.846,130.64,218.457,0.986297,-1,-1,-1
17,-1,285.461,419.819,95.685,297.289,0.94772,-1,-1,-1
17,-1,1287.39,450.983,47.01,194.095,0.882322,-1,-1,-1
17,-1,1847.31,354.107,71.69,281.422,0.845241,-1,-1,-1
18,-1,0,228.849,199.413,687.942,0.999203,-1,-1,-1
18,-1,1664.42,380.144,164.27,360.757,0.995213,-1,-1,-1
18,-1,1290.84,454.891,112.76,200.261,0.985292,-1,-1,-1
18,-1,308.173,459.195,77.217,259.604,0.951183,-1,-1,-1
18,-1,1850.77,385.257,68.23,246.807,0.878039,-1,-1,-1
18,-1,1287.27,494.397,44.74,159.43,0.630281,-1,-1,-1
18,-1,284.611,459.052,69.265,131.44,0.570411,-1,-1,-1
19,-1,0.316757,218.914,207.133,698.822,0.999021,-1,-1,-1
19,-1,1661.5,365.597,138.91,400.608,0.99588,-1,-1,-1
19,-1,1296.55,453.943,106.37,203.554,0.984757,-1,-1,-1
19,-1,311.047,432.805,95.831,299.066,0.945968,-1,-1,-1
19,-1,1833.1,328.493,85.43,342.903,0.867615,-1,-1,-1
19,-1,1286.79,497.214,48.52,156.964,0.646612,-1,-1,-1
20,-1,0,220.536,236.735,696.748,0.999094,-1,-1,-1
20,-1,1657.11,375.627,142.26,405.012,0.994356,-1,-1,-1
20,-1,1300.57,450.282,100.12,201.951,0.98142,-1,-1,-1
20,-1,309.49,456.186,88.812,269.071,0.961129,-1,-1,-1
20,-1,1858.51,337.225,58.58,382.834,0.908969,-1,-1,-1
20,-1,1285.01,508.765,49.55,151.587,0.594674,-1,-1,-1
21,-1,14.8017,216.449,233.181,702.713,0.999343,-1,-1,-1
21,-1,1649.51,354.993,156.84,405.46,0.993184,-1,-1,-1
21,-1,1288.15,466.845,127.39,216.303,0.977651,-1,-1,-1
21,-1,311.631,455.822,90.501,260.135,0.964582,-1,-1,-1
21,-1,1855.76,333.095,61.64,422.789,0.916978,-1,-1,-1
21,-1,1284.32,500.339,49.47,155.468,0.539418,-1,-1,-1
22,-1,0,210.918,246.155,734.813,0.999155,-1,-1,-1
22,-1,1649.55,367.672,161.21,399.108,0.996136,-1,-1,-1
22,-1,1281.45,437.261,103.98,229.122,0.976753,-1,-1,-1
22,-1,309.009,434.147,87.032,279.791,0.964423,-1,-1,-1
22,-1,1851.49,339.925,67.51,429.554,0.923309,-1,-1,-1
23,-1,0,217.052,264.021,698.763,0.999388,-1,-1,-1
23,-1,1638.89,386.734,184.33,362.782,0.994716,-1,-1,-1
23,-1,310.504,436.32,94.976,285.814,0.975404,-1,-1,-1
23,-1,1293.72,459.234,125.47,210.99,0.973429,-1,-1,-1
23,-1,1832.22,314.453,86.78,449.753,0.932877,-1,-1,-1
23,-1,1286.18,462.876,48.64,192.961,0.769182,-1,-1,-1
24,-1,0,194.512,285.311,732.721,0.999473,-1,-1,-1
24,-1,1641.46,367.872,163.72,398.125,0.995381,-1,-1,-1
24,-1,311.556,454.04,102.319,276.989,0.976893,-1,-1,-1
24,-1,1292.1,459.546,125.31,208.229,0.9757,-1,-1,-1
24,-1,1826.24,318.868,92.76,448.384,0.961662,-1,-1,-1
24,-1,1295.23,522.498,62.05,119.877,0.718929,-1,-1,-1
25,-1,0,205.381,290.447,724.079,0.999318,-1,-1,-1
25,-1,1649.31,384.969,147.84,377.884,0.995232,-1,-1,-1
25,-1,1303.88,459.414,106.62,232.986,0.980339,-1,-1,-1
25,-1,299.74,435.279,96.873,298.264,0.979313,-1,-1,-1
25,-1,1823.13,315.571,95.87,461.761,0.972902,-1,-1,-1
25,-1,1304.62,520.543,57.63,126.101,0.677764,-1,-1,-1
25,-1,1287.66,463.916,43.8,184.853,0.538369,-1,-1,-1
26,-1,6.03195,195.194,280.903,717.279,0.999387,-1,-1,-1
26,-1,1642.71,385.345,174.68,378.995,0.995423,-1,-1,-1
26,-1,1305.15,460.855,104.1,234.44,0.98098,-1,-1,-1
26,-1,338.452,445.437,62.812,270.241,0.976028,-1,-1,-1
26,-1,1828.07,325.382,90.93,431.344,0.946712,-1,-1,-1
26,-1,1309.66,511.487,53.74,126.68,0.628868,-1,-1,-1
26,-1,1289.2,459.371,42.36,181.548,0.501262,-1,-1,-1
27,-1,0.0326233,212.481,310.681,667.152,0.999349,-1,-1,-1
27,-1,1640.66,382.876,136.76,384.932,0.994787,-1,-1,-1
27,-1,319.171,450.88,94.424,290.828,0.979479,-1,-1,-1
27,-1,1304.18,457.449,104.01,235.097,0.978603,-1,-1,-1
27,-1,1838.76,343.767,80.24,418.308,0.976414,-1,-1,-1
28,-1,0,198.991,352.792,690.287,0.999331,-1,-1,-1
28,-1,1626.87,370.052,179.31,396.561,0.997828,-1,-1,-1
28,-1,1828.09,329.013,90.91,453.959,0.988276,-1,-1,-1
28,-1,326.731,476.49,82.637,233.913,0.980971,-1,-1,-1
28,-1,1313.16,451.605,76.78,230.941,0.967842,-1,-1,-1
29,-1,0,201.687,365.819,707.78,0.999143,-1,-1,-1
29,-1,1630.31,378.717,174.98,377.528,0.996025,-1,-1,-1
29,-1,1826.08,302.64,92.92,474.52,0.990057,-1,-1,-1
29,-1,340.263,482.838,64.98,223.376,0.98198,-1,-1,-1
29,-1,1314.67,449.599,74.69,233.516,0.95805,-1,-1,-1
30,-1,6.06326,209.72,346.02,699.893,0.998992,-1,-1,-1
30,-1,1614.11,375.909,184.84,386.616,0.995402,-1,-1,-1
30,-1,1803.26,332.389,115.74,420.002,0.993269,-1,-1,-1
30,-1,1316.14,459.78,102.35,225.208,0.951165,-1,-1,-1
30,-1,342.124,467.013,68.767,223.255,0.932847,-1,-1,-1
31,-1,30.1685,209.816,322.752,698.28,0.999096,-1,-1,-1
31,-1,1825.28,295.514,93.72,496.294,0.993803,-1,-1,-1
31,-1,1632.77,359.115,153.09,413.28,0.992933,-1,-1,-1
31,-1,1316.39,460.504,103.5,221.637,0.952836,-1,-1,-1
31,-1,345.414,495.8,66.64,207.224,0.860099,-1,-1,-1
32,-1,9.9942,203.282,370.507,709.323,0.999116,-1,-1,-1
32,-1,1625.01,367.04,181.13,386.405,0.996162,-1,-1,-1
32,-1,1799.18,294.923,119.82,475.432,0.994476,-1,-1,-1
32,-1,1318.15,461.441,102.78,221.384,0.949224,-1,-1,-1
32,-1,348.663,478.396,64.169,229.282,0.727177,-1,-1,-1
33,-1,18.0336,227.078,361.799,672.018,0.998294,-1,-1,-1
33,-1,1617.29,365.606,188.41,391.915,0.996652,-1,-1,-1
33,-1,1818.62,299.14,100.38,468.277,0.995649,-1,-1,-1
33,-1,1319.39,460.083,101.17,225.04,0.948291,-1,-1,-1
33,-1,353.234,420.991,67.163,308.244,0.678388,-1,-1,-1
34,-1,22.31,216.952,408.802,707.561,0.999199,-1,-1,-1
34,-1,1608.78,353.561,187.62,413.052,0.996105,-1,-1,-1
34,-1,1798.95,289.852,120.05,500.089,0.996038,-1,-1,-1
34,-1,1321.86,451.436,73.4,240.517,0.954964,-1,-1,-1
34,-1,1359.29,435.874,82.5,248.393,0.839526,-1,-1,-1
35,-1,46.9546,225.149,373.212,701.465,0.998689,-1,-1,-1
35,-1,1786.71,297.701,132.29,487.109,0.995192,-1,-1,-1
35,-1,1611.71,368.337,181.63,380.005,0.994783,-1,-1,-1
35,-1,1321.54,454.003,75.43,241.874,0.956361,-1,-1,-1
36,-1,1618.39,341.696,172.1,446.654,0.997499,-1,-1,-1
36,-1,1806.15,305.277,112.85,472.488,0.995575,-1,-1,-1
36,-1,55.0965,233.861,396.344,703.655,0.995145,-1,-1,-1
36,-1,1317.75,461.701,106.29,225.736,0.959775,-1,-1,-1
37,-1,71.1011,229.091,406.8,669.969,0.997128,-1,-1,-1
37,-1,1803.9,289.165,115.1,503.308,0.996885,-1,-1,-1
37,-1,1612.39,350.158,172.51,432.463,0.996727,-1,-1,-1
37,-1,1298,467.404,75.29,202.26,0.948513,-1,-1,-1
37,-1,41.0864,450.151,138.131,324.754,0.7848,-1,-1,-1
37,-1,1346.82,487.444,51.46,166.036,0.563721,-1,-1,-1
38,-1,57.2573,263.272,430.652,624.276,0.998864,-1,-1,-1
38,-1,1803.12,287.777,115.88,512.449,0.997118,-1,-1,-1
38,-1,1621.16,351.336,159.14,425.207,0.994795,-1,-1,-1
38,-1,1310.31,481.838,51.29,183.791,0.945322,-1,-1,-1
38,-1,1335.24,458.796,57.68,215.329,0.921375,-1,-1,-1
38,-1,82.6913,468.133,111.61,293.125,0.591274,-1,-1,-1
38,-1,31.3795,483.132,89.6425,271.304,0.50396,-1,-1,-1
39,-1,60.969,237.946,456.636,671.111,0.998045,-1,-1,-1
39,-1,1805.11,312.401,113.89,480.745,0.994617,-1,-1,-1
39,-1,1611.97,358.335,170.4,424.871,0.993764,-1,-1,-1
39,-1,1313.19,463.657,66.24,203.627,0.945697,-1,-1,-1
39,-1,93.6347,475.428,103.251,291.84,0.789045,-1,-1,-1
40,-1,106.217,257.082,413.013,639.293,0.998567,-1,-1,-1
40,-1,1630.66,355.477,156.72,431.151,0.997101,-1,-1,-1
40,-1,1803.26,311.808,108.6,469.286,0.995759,-1,-1,-1
40,-1,1309.47,490.233,51.53,175.484,0.946088,-1,-1,-1
40,-1,1337.15,455.25,55.94,218.523,0.916606,-1,-1,-1
40,-1,102.693,456.619,92.029,321.908,0.613951,-1,-1,-1
41,-1,176.045,251.177,320.272,652.853,0.998187,-1,-1,-1
41,-1,1792.92,298.106,119.67,476.009,0.997923,-1,-1,-1
41,-1,1630.71,358.763,159.14,422.771,0.996917,-1,-1,-1
41,-1,1310.02,490.946,51.39,174.443,0.946023,-1,-1,-1
41,-1,1326.34,443.138,70,257.456,0.9295,-1,-1,-1
41,-1,107.078,484.733,81.245,275.331,0.882958,-1,-1,-1
41,-1,1362.49,461.171,71.5,216.422,0.811395,-1,-1,-1
41,-1,25.5005,491.415,101.355,260.208,0.534377,-1,-1,-1
42,-1,190.544,238.887,313.951,689.925,0.997181,-1,-1,-1
42,-1,1791,307.882,128,481.916,0.994913,-1,-1,-1
42,-1,1613.97,358.985,164.06,431.814,0.994318,-1,-1,-1
42,-1,1308.28,495.685,52.08,168.535,0.947849,-1,-1,-1
42,-1,1325.69,444.581,69.87,254.547,0.929134,-1,-1,-1
42,-1,96.831,487.271,96.762,262.974,0.896159,-1,-1,-1
42,-1,1363.34,458.702,71,217.011,0.802803,-1,-1,-1
43,-1,220.356,243.799,299.938,679.859,0.998211,-1,-1,-1
43,-1,1776.21,299.713,142.79,504.538,0.996162,-1,-1,-1
43,-1,1616.03,365.702,152.07,411.899,0.989835,-1,-1,-1
43,-1,1308.27,495.08,52.07,170.433,0.948067,-1,-1,-1
43,-1,1326.06,446.358,70.74,254.153,0.93185,-1,-1,-1
43,-1,90.7575,482.245,117.207,280.724,0.871255,-1,-1,-1
43,-1,1362.16,460.87,73.31,217.596,0.810031,-1,-1,-1
43,-1,12.2296,512.921,88.5334,252.174,0.566617,-1,-1,-1
44,-1,246.412,253.072,270.568,635.815,0.999099,-1,-1,-1
44,-1,1621.37,353.14,125.37,436.847,0.997126,-1,-1,-1
44,-1,1784.08,311.994,134.92,479.733,0.99579,-1,-1,-1
44,-1,1312.56,465.917,69.05,196.174,0.950569,-1,-1,-1
44,-1,105.751,493.904,91.408,252.313,0.932749,-1,-1,-1
44,-1,29.6189,516.222,79.3381,255.211,0.856972,-1,-1,-1
44,-1,1361.31,465.534,73.33,212.545,0.791629,-1,-1,-1
45,-1,1773.17,288.659,145.83,487.966,0.997493,-1,-1,-1
45,-1,1608.69,352.835,158.07,454.335,0.997456,-1,-1,-1
45,-1,283.171,249.95,238.264,634.181,0.997121,-1,-1,-1
45,-1,112.786,497.957,86.517,244.361,0.956078,-1,-1,-1
45,-1,1311.97,466.154,69.04,198.223,0.950901,-1,-1,-1
45,-1,26.5691,507.124,87.4739,247.882,0.934224,-1,-1,-1
45,-1,1363.73,464.527,71.5,213.079,0.759547,-1,-1,-1
46,-1,306.663,215.4,209.962,663.147,0.998668,-1,-1,-1
46,-1,1598.29,351.852,171.56,462.741,0.997974,-1,-1,-1
46,-1,1773.13,285.534,145.87,498.169,0.995994,-1,-1,-1
46,-1,111.863,510.207,89.381,261.303,0.963045,-1,-1,-1
46,-1,33.1215,528.5,77.0955,229.738,0.956572,-1,-1,-1
46,-1,1312.56,471.501,68.3,195.537,0.952996,-1,-1,-1
46,-1,223.521,458.441,97.28,127.21,0.86833,-1,-1,-1
46,-1,1363.8,463.764,70.99,215.875,0.755672,-1,-1,-1
47,-1,307.197,216.898,241.345,687.575,0.998886,-1,-1,-1
47,-1,1591.3,336.807,175.25,458.995,0.997436,-1,-1,-1
47,-1,1778.73,307.329,140.27,488.324,0.994401,-1,-1,-1
47,-1,1312.81,473.432,67.67,194.386,0.950342,-1,-1,-1
47,-1,38.4001,510.365,76.8189,262.036,0.935711,-1,-1,-1
47,-1,104.669,505.476,91.78,255.293,0.935549,-1,-1,-1
47,-1,229.405,458.746,93.924,126.805,0.838546,-1,-1,-1
47,-1,1362.52,462.92,70.93,217.029,0.793311,-1,-1,-1
48,-1,346.202,229.498,221.277,658.185,0.998796,-1,-1,-1
48,-1,1587.44,347.868,179.02,451.012,0.99808,-1,-1,-1
48,-1,1777.12,271.037,141.88,523.235,0.997199,-1,-1,-1
48,-1,107.441,498.885,92.616,255.388,0.979144,-1,-1,-1
48,-1,30.4852,519.368,80.8698,248.523,0.977068,-1,-1,-1
48,-1,1312.53,474.424,67.32,192.694,0.950934,-1,-1,-1
48,-1,228.408,462.632,94.981,129.339,0.922382,-1,-1,-1
48,-1,1363.92,465.865,68.7,226.972,0.732678,-1,-1,-1
49,-1,1585.47,346.077,180.55,449.678,0.997772,-1,-1,-1
49,-1,1769.3,272.659,149.7,513.015,0.997457,-1,-1,-1
49,-1,360.461,231.895,217.198,660.129,0.996784,-1,-1,-1
49,-1,89.4606,476.463,118.568,281.767,0.984136,-1,-1,-1
49,-1,33.691,517.428,81.115,249.646,0.973678,-1,-1,-1
49,-1,1325.4,487.95,66.72,174.937,0.953514,-1,-1,-1
49,-1,229.568,449.847,113.038,126.552,0.921798,-1,-1,-1
49,-1,1364.67,466.32,68.03,227.135,0.713345,-1,-1,-1
50,-1,336.794,222.713,245.92,686.953,0.998926,-1,-1,-1
50,-1,1581.74,353.059,169.19,440.304,0.998548,-1,-1,-1
50,-1,1772.01,273.927,146.99,532.832,0.997038,-1,-1,-1
50,-1,107.447,499.569,89.292,259.269,0.982332,-1,-1,-1
50,-1,32.3178,517.462,84.9342,245.998,0.97772,-1,-1,-1
50,-1,1326.09,489.203,66.4,173.258,0.954804,-1,-1,-1
50,-1,225.332,450.826,103.332,122.934,0.891694,-1,-1,-1
50,-1,1365.82,448.211,73.69,230.111,0.586408,-1,-1,-1
51,-1,1577.53,351.087,172.98,443.733,0.998649,-1,-1,-1
51,-1,349.862,264.192,290.582,634.199,0.998574,-1,-1,-1
51,-1,1777.29,287.828,141.71,481.365,0.996982,-1,-1,-1
51,-1,32.3092,518.609,83.1118,248.029,0.978845,-1,-1,-1
51,-1,106.838,490.719,88.827,265.376,0.970318,-1,-1,-1
51,-1,1313.48,474.824,67.68,191.592,0.953572,-1,-1,-1
51,-1,246.497,457.662,77.838,122.922,0.927787,-1,-1,-1
51,-1,1364.3,460.886,66.84,228.769,0.694199,-1,-1,-1
52,-1,1575.06,342.607,170.14,466.721,0.998315,-1,-1,-1
52,-1,360.182,256.341,285.058,621.632,0.998065,-1,-1,-1
52,-1,1768.92,282.145,150.08,510.223,0.995873,-1,-1,-1
52,-1,36.497,515.017,77.468,254.355,0.96387,-1,-1,-1
52,-1,98.8215,458.005,99.2225,299.829,0.955069,-1,-1,-1
52,-1,1313.62,473.881,67.77,192.061,0.952724,-1,-1,-1
52,-1,221.616,446.125,104.218,132.438,0.889083,-1,-1,-1
52,-1,1364.66,460.506,67.34,231.043,0.704993,-1,-1,-1
53,-1,1773.31,289.438,145.69,475.17,0.997997,-1,-1,-1
53,-1,382.784,265.873,295.284,615.151,0.997911,-1,-1,-1
53,-1,1577.6,371.71,187.66,414.469,0.995653,-1,-1,-1
53,-1,31.3154,518.91,82.4676,252.453,0.965466,-1,-1,-1
53,-1,87.5607,453.31,124.121,294.94,0.958908,-1,-1,-1
53,-1,1325.54,484.466,67.83,177.053,0.953413,-1,-1,-1
53,-1,229.161,472.099,82.072,124.313,0.913641,-1,-1,-1
53,-1,1363.77,459.656,67.27,231.044,0.713672,-1,-1,-1
54,-1,1768.4,295.796,150.6,484.773,0.998583,-1,-1,-1
54,-1,395.875,285.955,283.159,597.282,0.998008,-1,-1,-1
54,-1,1567.73,343.607,179.06,445.726,0.997353,-1,-1,-1
54,-1,31.4723,519.651,79.8807,246.977,0.963348,-1,-1,-1
54,-1,1314.03,469.6,66.36,195.958,0.951494,-1,-1,-1
54,-1,222.96,449.422,104.144,122.954,0.915691,-1,-1,-1
54,-1,89.77,466.639,121.941,276.66,0.888405,-1,-1,-1
54,-1,1363.51,459.077,67.13,232.624,0.720463,-1,-1,-1
55,-1,1765.55,293.561,153.45,519.536,0.999075,-1,-1,-1
55,-1,430.982,294.938,253.713,567.214,0.997752,-1,-1,-1
55,-1,1563.73,355.698,199.59,463.94,0.991833,-1,-1,-1
55,-1,32.8433,523.115,77.0157,248.981,0.955424,-1,-1,-1
55,-1,1314.43,468.998,66.7,195.979,0.950481,-1,-1,-1
55,-1,232.4,475.104,77.452,111.668,0.891147,-1,-1,-1
55,-1,378.848,438.054,88.01,275.037,0.838358,-1,-1,-1
55,-1,111.099,488.91,82.952,266.893,0.744156,-1,-1,-1
55,-1,1363.32,457.665,66.44,234.256,0.734125,-1,-1,-1
55,-1,354.616,481.024,52.991,234.736,0.661287,-1,-1,-1
56,-1,1763.57,279.257,155.43,517.336,0.998898,-1,-1,-1
56,-1,481.108,285.373,221.54,564.726,0.997171,-1,-1,-1
56,-1,1578.69,368.154,178.25,416.029,0.991575,-1,-1,-1
56,-1,29.4923,523.681,80.9677,239.818,0.967592,-1,-1,-1
56,-1,364.995,439.184,106.062,274.773,0.96407,-1,-1,-1
56,-1,1313.67,465.937,68.06,200.153,0.950343,-1,-1,-1
56,-1,222.997,454.533,95.869,121.105,0.92177,-1,-1,-1
56,-1,121.152,542.155,76.975,216.538,0.871227,-1,-1,-1
56,-1,1363.3,457.031,66.53,235.292,0.737047,-1,-1,-1
57,-1,1750.33,278.256,168.67,546.578,0.99918,-1,-1,-1
57,-1,465.609,276.327,259.432,627.906,0.997939,-1,-1,-1
57,-1,1557.27,351.862,179.3,454.277,0.997429,-1,-1,-1
57,-1,377.239,459.125,89.743,249.579,0.977949,-1,-1,-1
57,-1,1314.4,468.369,67.18,197.461,0.950056,-1,-1,-1
57,-1,32.3688,502.789,76.1582,273.3,0.931335,-1,-1,-1
57,-1,220.461,453.28,89.405,113.481,0.901487,-1,-1,-1
57,-1,110.378,532.918,66.924,216.131,0.791265,-1,-1,-1
57,-1,1364.02,434.902,73.41,244.553,0.674555,-1,-1,-1
57,-1,341.129,461.155,69.068,249.615,0.554026,-1,-1,-1
58,-1,1756.98,275.457,162.02,541.696,0.997842,-1,-1,-1
58,-1,503.03,232.116,215.075,659.319,0.997741,-1,-1,-1
58,-1,1556.02,336.99,174.61,452.446,0.997551,-1,-1,-1
58,-1,382.586,436.305,93.084,295.144,0.97984,-1,-1,-1
58,-1,1324.97,476.272,67.95,181.822,0.948987,-1,-1,-1
58,-1,26.7792,528.4,82.8938,237.752,0.926651,-1,-1,-1
58,-1,115.53,488.971,81.352,269.664,0.821165,-1,-1,-1
58,-1,1361.86,457.43,66.85,230.789,0.760492,-1,-1,-1
59,-1,503.613,227.595,257.311,636.649,0.998797,-1,-1,-1
59,-1,1539.89,352.848,179.39,466.106,0.998358,-1,-1,-1
59,-1,1744.07,268.871,174.93,553.603,0.998313,-1,-1,-1
59,-1,383.026,440.172,102.701,288.199,0.987868,-1,-1,-1
59,-1,1324.33,474.381,69.13,183.886,0.949917,-1,-1,-1
59,-1,21.493,539.069,85.258,228.354,0.944588,-1,-1,-1
59,-1,120.301,529.843,76.056,230.747,0.905826,-1,-1,-1
59,-1,1361.42,457.071,69.6,235.971,0.763452,-1,-1,-1
60,-1,518.625,220.442,244.898,627.635,0.999285,-1,-1,-1
60,-1,1736.68,265.846,182.32,564.64,0.998722,-1,-1,-1
60,-1,1548.81,360.795,177.86,451.23,0.993855,-1,-1,-1
60,-1,377.714,450.896,105.965,280.864,0.988491,-1,-1,-1
60,-1,32.5246,515.764,80.2874,239.841,0.968318,-1,-1,-1
60,-1,1315.1,464.673,66.53,200.329,0.951066,-1,-1,-1
60,-1,112.275,522.608,67.772,229.018,0.877767,-1,-1,-1
60,-1,1362,441.207,77.6,240.604,0.684233,-1,-1,-1
61,-1,1749.9,254.402,151.52,568.233,0.999286,-1,-1,-1
61,-1,553.59,235.309,253.001,608.104,0.999014,-1,-1,-1
61,-1,1527.34,349.905,185.02,464.939,0.998478,-1,-1,-1
61,-1,374.731,443.048,115.86,288.04,0.985426,-1,-1,-1
61,-1,118.989,545.156,78.956,214.466,0.950598,-1,-1,-1
61,-1,1315.11,466.41,66.34,200.496,0.949122,-1,-1,-1
61,-1,32.5647,520.308,80.7743,268.169,0.941289,-1,-1,-1
61,-1,1367.04,468.457,56.71,190.679,0.74694,-1,-1,-1
62,-1,562.178,251.621,253.349,598.979,0.999424,-1,-1,-1
62,-1,1735.99,259.989,183.01,570.694,0.998967,-1,-1,-1
62,-1,1539.06,329.85,191.58,454.5,0.992706,-1,-1,-1
62,-1,385.474,447.548,108.278,282.137,0.990733,-1,-1,-1
62,-1,31.6955,526.993,79.1325,239.37,0.97783,-1,-1,-1
62,-1,1314.84,467.522,66.92,199.636,0.949737,-1,-1,-1
62,-1,121.489,537.109,77.471,223.183,0.943757,-1,-1,-1
62,-1,239.521,479.082,77.154,150.693,0.89228,-1,-1,-1
62,-1,1356.93,453.107,74.19,227.33,0.788156,-1,-1,-1
63,-1,1730.03,248.285,188.97,583.738,0.999468,-1,-1,-1
63,-1,582.649,249.609,258.204,593.165,0.998844,-1,-1,-1
63,-1,1519.37,350.024,202.34,433.947,0.993819,-1,-1,-1
63,-1,407.913,437.801,84.029,272.107,0.989535,-1,-1,-1
63,-1,30.128,508.89,87.078,245.871,0.979198,-1,-1,-1
63,-1,1313.68,467.359,67.89,200.241,0.947329,-1,-1,-1
63,-1,111.961,519.746,81.122,229.722,0.844722,-1,-1,-1
63,-1,1355.5,463.679,75.2,214.233,0.764702,-1,-1,-1
64,-1,1725.76,250.445,193.24,590.135,0.999447,-1,-1,-1
64,-1,586.928,239.262,261.709,619.701,0.999048,-1,-1,-1
64,-1,1505.91,361.455,226.49,444.013,0.994857,-1,-1,-1
64,-1,400.751,406.217,104.647,347.209,0.991862,-1,-1,-1
64,-1,1314.23,471.928,67.7,197.069,0.950014,-1,-1,-1
64,-1,25.0683,530.42,82.7647,239.065,0.943342,-1,-1,-1
64,-1,115.082,524.006,76.663,250.538,0.874947,-1,-1,-1
64,-1,1355.94,464.75,75.09,213.81,0.784765,-1,-1,-1
64,-1,254.857,459.946,85.887,225.11,0.576845,-1,-1,-1
65,-1,1719.11,252.376,199.89,574.499,0.99928,-1,-1,-1
65,-1,606.773,256.754,284.224,573.478,0.99925,-1,-1,-1
65,-1,1517.36,343.341,190.24,470.09,0.994852,-1,-1,-1
65,-1,391.945,435.824,121.793,280.985,0.988043,-1,-1,-1
65,-1,1314.12,470.228,67.35,199.383,0.949169,-1,-1,-1
65,-1,24.9208,530.32,81.6442,240.028,0.946151,-1,-1,-1
65,-1,244.732,452.331,92.537,247.461,0.887706,-1,-1,-1
65,-1,113.616,479.113,79.602,284.141,0.828435,-1,-1,-1
65,-1,1354.8,463.135,74.84,214.861,0.790556,-1,-1,-1
66,-1,612.834,248.873,287.673,592.834,0.999526,-1,-1,-1
66,-1,1713.38,258.602,205.62,590.435,0.999049,-1,-1,-1
66,-1,398.323,417.544,113.323,311.375,0.990326,-1,-1,-1
66,-1,1534.4,341.153,178.51,481.222,0.989561,-1,-1,-1
66,-1,24.0306,532.333,82.5394,235.474,0.953991,-1,-1,-1
66,-1,1313.94,471.3,66.75,199.02,0.949242,-1,-1,-1
66,-1,242.232,447.671,84.297,254.529,0.85885,-1,-1,-1
66,-1,113.542,483.013,81.707,277.856,0.854982,-1,-1,-1
66,-1,1355.7,461.238,74.41,213.085,0.783351,-1,-1,-1
67,-1,1705.6,256.313,213.4,591.196,0.999368,-1,-1,-1
67,-1,603.188,245.691,303.643,612.542,0.998455,-1,-1,-1
67,-1,1544.14,353.403,161.11,451.129,0.995563,-1,-1,-1
67,-1,400.696,418.035,97.349,326.529,0.990182,-1,-1,-1
67,-1,23.2119,527.672,84.0971,234.05,0.955397,-1,-1,-1
67,-1,1313.93,471.059,67.11,199.434,0.948797,-1,-1,-1
67,-1,238.551,455.563,110.002,259.671,0.894135,-1,-1,-1
67,-1,1355.63,461.203,73.87,214.209,0.805062,-1,-1,-1
67,-1,111.985,482.76,81.163,276.597,0.737915,-1,-1,-1
68,-1,1692.01,239.534,226.99,584.137,0.999652,-1,-1,-1
68,-1,633.484,266.505,288.964,573.092,0.998901,-1,-1,-1
68,-1,1530.83,342.341,173.04,468.938,0.993075,-1,-1,-1
68,-1,411.627,415.834,99.428,316.406,0.990926,-1,-1,-1
68,-1,31.4383,539.403,75.4877,223.33,0.95398,-1,-1,-1
68,-1,1313.52,473.758,66.33,196.223,0.946912,-1,-1,-1
68,-1,237.675,453.19,99.449,266.057,0.860401,-1,-1,-1
68,-1,1357.82,457.417,74.4,211.907,0.806299,-1,-1,-1
68,-1,111.824,473.967,81.351,291.694,0.715944,-1,-1,-1
69,-1,650.864,283.975,263.518,544.177,0.999129,-1,-1,-1
69,-1,1696.73,281.868,221.67,532.563,0.998757,-1,-1,-1
69,-1,1509.17,333.417,196.39,441.198,0.991932,-1,-1,-1
69,-1,409.379,427.841,110.653,319.326,0.991728,-1,-1,-1
69,-1,1314.21,473.536,65.76,196.504,0.946584,-1,-1,-1
69,-1,30.4848,534.203,75.5862,227.12,0.93577,-1,-1,-1
69,-1,243.544,454.457,104.082,282.26,0.840935,-1,-1,-1
69,-1,1356.99,458.779,74.04,210.69,0.813615,-1,-1,-1
69,-1,960.688,503.123,63.362,132.348,0.809002,-1,-1,-1
69,-1,112.14,479.777,80.288,284.928,0.622613,-1,-1,-1
70,-1,695.661,289.39,219.758,541.07,0.998926,-1,-1,-1
70,-1,1693.84,286.002,225.16,520.475,0.998595,-1,-1,-1
70,-1,1516.76,337.956,159.9,472.633,0.990307,-1,-1,-1
70,-1,408.116,415.581,131.257,320.051,0.98925,-1,-1,-1
70,-1,30.8021,519.332,85.1799,236.101,0.962895,-1,-1,-1
70,-1,1313.55,471.872,66.91,199.858,0.947386,-1,-1,-1
70,-1,241.303,447.511,94.06,292.983,0.857027,-1,-1,-1
70,-1,1357.96,458.084,72.98,213.053,0.825678,-1,-1,-1
70,-1,118.255,521.62,72.817,234.988,0.807002,-1,-1,-1
71,-1,698.938,270.003,232.064,574.521,0.999541,-1,-1,-1
71,-1,1684.97,240.265,234.03,580.538,0.998647,-1,-1,-1
71,-1,410.545,426.929,119.963,303.087,0.990516,-1,-1,-1
71,-1,1497.66,331.155,189.6,486.577,0.990226,-1,-1,-1
71,-1,238.663,445.285,102.047,286.865,0.976167,-1,-1,-1
71,-1,35.7079,528.341,79.5661,231.348,0.963578,-1,-1,-1
71,-1,1314.14,471.543,66.29,198.686,0.948032,-1,-1,-1
71,-1,118.316,529.538,75.045,224.884,0.847257,-1,-1,-1
71,-1,1358.85,463.616,73.14,206.223,0.81108,-1,-1,-1
72,-1,726.219,263.13,224.987,563.043,0.999502,-1,-1,-1
72,-1,1680.75,258.043,233.32,567.186,0.998747,-1,-1,-1
72,-1,1495.79,351.02,190.64,477.116,0.995514,-1,-1,-1
72,-1,412.669,425.99,117.545,327.466,0.991343,-1,-1,-1
72,-1,243.722,447.688,115.248,273.703,0.9872,-1,-1,-1
72,-1,27.7783,535.678,82.2427,228.784,0.955463,-1,-1,-1
72,-1,1313.13,473.823,66.55,198.027,0.945779,-1,-1,-1
72,-1,101.436,515.33,94.309,236.022,0.876686,-1,-1,-1
72,-1,1358.15,460.672,74.19,209.433,0.819074,-1,-1,-1
73,-1,746.375,252.892,198.048,606.183,0.998439,-1,-1,-1
73,-1,1704.35,259.3,214.65,550.106,0.998209,-1,-1,-1
73,-1,1501.85,317.628,188.18,526.995,0.994911,-1,-1,-1
73,-1,415.682,420.577,111.53,319.124,0.989143,-1,-1,-1
73,-1,245.487,462.703,89.116,239.384,0.986434,-1,-1,-1
73,-1,36.8427,524.386,84.6383,230.718,0.982248,-1,-1,-1
73,-1,1313.75,472.597,66.33,199.958,0.947105,-1,-1,-1
73,-1,91.3302,496.254,98.4298,261.216,0.841712,-1,-1,-1
73,-1,1356.35,465.073,75.3,208.018,0.805834,-1,-1,-1
74,-1,728.608,273.73,244.457,559.567,0.999128,-1,-1,-1
74,-1,1677.88,244.694,241.12,555.257,0.998543,-1,-1,-1
74,-1,1517.03,333.357,176.24,509.475,0.997838,-1,-1,-1
74,-1,414.077,416.787,117.973,319.7,0.98726,-1,-1,-1
74,-1,234.859,456.487,116.103,266.109,0.987119,-1,-1,-1
74,-1,38.2408,532.296,83.3962,229.374,0.970723,-1,-1,-1
74,-1,1313.11,473.854,65.58,197.137,0.945242,-1,-1,-1
74,-1,1356.19,466.591,76.08,206.979,0.798653,-1,-1,-1
74,-1,111.483,500.661,84.48,253.614,0.796538,-1,-1,-1
75,-1,771.533,278.097,190.901,543.527,0.99912,-1,-1,-1
75,-1,1697.93,262.664,206.77,548.863,0.998639,-1,-1,-1
75,-1,1503.57,344.076,175.62,492.422,0.997419,-1,-1,-1
75,-1,416.047,418.393,116.809,318.642,0.988833,-1,-1,-1
75,-1,237.626,465.326,109.751,250.004,0.985855,-1,-1,-1
75,-1,35.4673,533.855,86.1367,228.354,0.975681,-1,-1,-1
75,-1,1325.13,445.791,85.84,220.912,0.945391,-1,-1,-1
75,-1,1307.17,491.199,54.02,178.089,0.942427,-1,-1,-1
75,-1,112.113,487.714,82.307,273.17,0.739104,-1,-1,-1
76,-1,1693.84,246.59,219.77,592.425,0.998718,-1,-1,-1
76,-1,789.114,260.87,203.14,590.522,0.997158,-1,-1,-1
76,-1,1504.49,331.209,183.18,497.435,0.996205,-1,-1,-1
76,-1,438.146,402.256,87.481,329.28,0.988982,-1,-1,-1
76,-1,240.257,466.028,99.564,232.183,0.987366,-1,-1,-1
76,-1,37.9601,537.996,82.7839,224.536,0.976703,-1,-1,-1
76,-1,1313.75,474.883,65.27,197.019,0.945982,-1,-1,-1
76,-1,104.229,534.203,72.362,217.872,0.855181,-1,-1,-1
76,-1,1357.22,458.753,73.32,206.606,0.804736,-1,-1,-1
77,-1,1690.76,251.46,202.34,567.253,0.998987,-1,-1,-1
77,-1,1499.05,332.933,188.84,494.524,0.997512,-1,-1,-1
77,-1,802.471,315.865,198.529,498.521,0.993506,-1,-1,-1
77,-1,431.842,413.283,82.469,334.44,0.986821,-1,-1,-1
77,-1,39.9343,517.215,85.7617,243.803,0.968774,-1,-1,-1
77,-1,258.703,445.181,100.181,299.265,0.957749,-1,-1,-1
77,-1,1306.31,493.863,54.26,174.891,0.946093,-1,-1,-1
77,-1,1324.21,447.672,87.32,219.367,0.940462,-1,-1,-1
77,-1,114.972,517.375,77.819,242.261,0.834528,-1,-1,-1
78,-1,1677.55,236.898,209.44,630.353,0.999015,-1,-1,-1
78,-1,1485.07,336.644,174.32,494.738,0.997571,-1,-1,-1
78,-1,790.79,291.279,229.42,562.327,0.997009,-1,-1,-1
78,-1,433.628,438.978,108.734,303.549,0.991583,-1,-1,-1
78,-1,39.464,526.075,82.684,231.112,0.973012,-1,-1,-1
78,-1,261.151,459.668,91.688,278.136,0.968451,-1,-1,-1
78,-1,1307.18,491.117,113.69,188.692,0.951568,-1,-1,-1
78,-1,117.562,541.809,79.017,216.41,0.94883,-1,-1,-1
79,-1,1666.69,252.399,237.88,586.844,0.99878,-1,-1,-1
79,-1,819.471,304.87,207.949,492.347,0.997754,-1,-1,-1
79,-1,1466.74,289.64,195.37,566.4,0.996785,-1,-1,-1
79,-1,411.541,427.739,122.141,305.124,0.989514,-1,-1,-1
79,-1,40.5464,519.394,82.3526,244.248,0.972609,-1,-1,-1
79,-1,1306.48,492.225,53.51,174.907,0.950286,-1,-1,-1
79,-1,274.316,471.089,73.722,213.766,0.948874,-1,-1,-1
79,-1,1325.04,452.352,82.77,209.337,0.935704,-1,-1,-1
79,-1,115.592,519.617,72.396,235.089,0.690632,-1,-1,-1
80,-1,831.885,323.125,204.755,478.726,0.997225,-1,-1,-1
80,-1,1690.82,275.867,217.94,571.902,0.996703,-1,-1,-1
80,-1,1474.21,312.549,202.7,523.841,0.99428,-1,-1,-1
80,-1,413.208,423.043,129.89,303.62,0.990502,-1,-1,-1
80,-1,43.632,518.399,80.984,233.573,0.956707,-1,-1,-1
80,-1,1307.18,491.664,52.38,172.402,0.948547,-1,-1,-1
80,-1,1341.91,465.746,56.03,198.527,0.92798,-1,-1,-1
80,-1,276.701,442.779,108.926,273.817,0.869814,-1,-1,-1
80,-1,118.752,527.48,77.448,225.052,0.84278,-1,-1,-1
81,-1,1670.81,242.101,228.2,597.546,0.998568,-1,-1,-1
81,-1,811.21,297.031,242.16,502.439,0.99799,-1,-1,-1
81,-1,1447.28,305.333,229.39,546.313,0.993687,-1,-1,-1
81,-1,411.538,421.866,123.031,319.775,0.986851,-1,-1,-1
81,-1,42.0064,525.846,76.6896,227.177,0.962956,-1,-1,-1
81,-1,1307.33,490.88,52.93,174.077,0.948076,-1,-1,-1
81,-1,1342.85,463.722,54.63,196.615,0.930758,-1,-1,-1
81,-1,267.33,418.046,97.297,293.529,0.895831,-1,-1,-1
81,-1,118.377,533.63,77.567,211.394,0.852633,-1,-1,-1
81,-1,1373.09,478.09,50.21,169.605,0.839219,-1,-1,-1
82,-1,1666.5,253.995,232.91,593.255,0.99909,-1,-1,-1
82,-1,829.676,326.379,210.214,488.283,0.997092,-1,-1,-1
82,-1,1457.63,343.444,210.94,517.758,0.996378,-1,-1,-1
82,-1,418.898,423.618,132.694,297.4,0.986563,-1,-1,-1
82,-1,44.521,530.966,72.473,242.415,0.950841,-1,-1,-1
82,-1,1307.1,490.597,53.57,176.185,0.949983,-1,-1,-1
82,-1,1342.66,454.111,55.39,211.105,0.934864,-1,-1,-1
82,-1,317.928,431.784,71.03,296.23,0.905702,-1,-1,-1
82,-1,118.879,537.291,76.49,205.905,0.905089,-1,-1,-1
82,-1,254.977,453.92,91.829,247.726,0.721297,-1,-1,-1
82,-1,1380.1,450.902,42.48,190.049,0.624102,-1,-1,-1
83,-1,1668.49,249.978,234.99,592.136,0.999192,-1,-1,-1
83,-1,1433.75,326.924,263.58,505.86,0.996709,-1,-1,-1
83,-1,876.265,311.54,182.395,516.818,0.99425,-1,-1,-1
83,-1,432.75,419.738,115.829,329.198,0.991339,-1,-1,-1
83,-1,43.3958,513.875,75.2042,264.316,0.987184,-1,-1,-1
83,-1,1314.03,479.41,64.69,194.46,0.95313,-1,-1,-1
83,-1,270.155,428.938,107.161,288.283,0.905942,-1,-1,-1
83,-1,931.102,292.052,93.608,315.788,0.739394,-1,-1,-1
83,-1,1352.64,470.93,45.79,185.93,0.668546,-1,-1,-1
83,-1,110.759,522.642,72.299,250.065,0.661982,-1,-1,-1
83,-1,1392.38,442.279,44.08,206.309,0.586155,-1,-1,-1
84,-1,1682.85,232.022,215.9,621.263,0.999203,-1,-1,-1
84,-1,879.763,321.711,179.067,479.497,0.997058,-1,-1,-1
84,-1,1430.96,309.732,263.17,510.587,0.996046,-1,-1,-1
84,-1,435.147,428.753,105.468,308.169,0.98328,-1,-1,-1
84,-1,21.4213,521.209,84.0297,236.385,0.982246,-1,-1,-1
84,-1,1313.74,479.748,65.19,194.587,0.955067,-1,-1,-1
84,-1,123.604,524.764,73.37,212.982,0.839671,-1,-1,-1
84,-1,297.031,407.303,101.494,316.137,0.791104,-1,-1,-1
85,-1,1649.77,227.357,223.81,621.888,0.998763,-1,-1,-1
85,-1,1447.98,313.211,218.62,530.148,0.995922,-1,-1,-1
85,-1,897.013,302.171,208.547,533.953,0.995869,-1,-1,-1
85,-1,443.017,404.466,96.984,325.863,0.987627,-1,-1,-1
85,-1,42.5648,517.353,71.9062,253.508,0.977455,-1,-1,-1
85,-1,1294.38,473.087,78.12,207.778,0.96154,-1,-1,-1
85,-1,118.407,552.548,72.063,205.609,0.868636,-1,-1,-1
85,-1,311.904,408.538,80.667,296.59,0.848504,-1,-1,-1
85,-1,1380.94,445.055,47.17,216.255,0.706489,-1,-1,-1
85,-1,1345.48,455.601,47.57,195.39,0.647098,-1,-1,-1
86,-1,1663.71,244.635,220.13,605.053,0.998796,-1,-1,-1
86,-1,947.958,307.05,163.242,478.489,0.998019,-1,-1,-1
86,-1,1430.41,312.687,246.21,535.735,0.995751,-1,-1,-1
86,-1,444.279,427.366,98.655,302.57,0.990211,-1,-1,-1
86,-1,41.3705,513.655,74.0415,267.32,0.97266,-1,-1,-1
86,-1,1294.37,470.807,79.38,211.912,0.961883,-1,-1,-1
86,-1,1373.2,444.148,48.82,201.348,0.914339,-1,-1,-1
86,-1,320.26,428.635,67.547,296.307,0.857548,-1,-1,-1
86,-1,1345.45,449.16,47.5,198.259,0.665076,-1,-1,-1
86,-1,276.39,471.882,73.243,221.842,0.537288,-1,-1,-1
87,-1,1644.47,245.038,261.43,619.222,0.998875,-1,-1,-1
87,-1,1425.51,304.451,229.28,541.063,0.996654,-1,-1,-1
87,-1,940.737,296.002,171.633,463.424,0.996076,-1,-1,-1
87,-1,448.499,422.509,97.251,317.456,0.99183,-1,-1,-1
87,-1,32.6382,512.594,78.9978,245.122,0.972735,-1,-1,-1
87,-1,1294.07,471.177,79.45,208.853,0.96024,-1,-1,-1
87,-1,320.313,413.67,75.291,307.049,0.884098,-1,-1,-1
87,-1,1378.98,450.478,37.98,196.684,0.668356,-1,-1,-1
87,-1,1348.56,458.979,44.27,188.441,0.657966,-1,-1,-1
88,-1,1639.82,227.133,257.36,635.767,0.999243,-1,-1,-1
88,-1,936.271,291.046,197.669,472.319,0.998002,-1,-1,-1
88,-1,1433.15,336.422,213.38,511.539,0.996555,-1,-1,-1
88,-1,449.564,411.344,101.509,334.168,0.991102,-1,-1,-1
88,-1,25.3094,485.131,88.7146,278.934,0.968979,-1,-1,-1
88,-1,1307.76,491.393,53.24,178.239,0.953898,-1,-1,-1
88,-1,1337.03,444.27,55.62,221.335,0.931385,-1,-1,-1
88,-1,331.129,455.523,62.195,264.154,0.870729,-1,-1,-1
88,-1,107.361,524.932,67.922,234.711,0.604959,-1,-1,-1
89,-1,1637.39,221.657,260.15,662.212,0.999196,-1,-1,-1
89,-1,947.679,277.032,203.441,505.831,0.997997,-1,-1,-1
89,-1,1415.51,320.781,244.36,533.743,0.99503,-1,-1,-1
89,-1,452.02,412.214,106.675,328.334,0.989767,-1,-1,-1
89,-1,316.969,446.359,93.052,271.915,0.979907,-1,-1,-1
89,-1,26.7053,501.695,83.0737,272.148,0.97776,-1,-1,-1
89,-1,1307.95,492.043,53.35,177.772,0.952712,-1,-1,-1
89,-1,1343.42,444.073,51.89,225.122,0.902635,-1,-1,-1
89,-1,121.633,528.682,72.823,226.02,0.812123,-1,-1,-1
90,-1,1650.37,226.44,249.8,656.925,0.999489,-1,-1,-1
90,-1,959.92,298.379,207.82,460.013,0.998426,-1,-1,-1
90,-1,1423.24,312.036,223.51,548.113,0.997698,-1,-1,-1
90,-1,439.102,428.516,118.412,307.426,0.993588,-1,-1,-1
90,-1,29.1986,488.537,85.3774,280.003,0.978312,-1,-1,-1
90,-1,321.417,440.281,96.261,298.993,0.971361,-1,-1,-1
90,-1,1294.76,472.709,77.47,207.731,0.962038,-1,-1,-1
90,-1,1337.73,437.943,78.63,230.84,0.875368,-1,-1,-1
90,-1,116.599,543.577,78.406,216.482,0.800004,-1,-1,-1
91,-1,1641.18,230.724,261.77,660.96,0.99962,-1,-1,-1
91,-1,955.227,285.716,218.303,498.887,0.998922,-1,-1,-1
91,-1,1421.53,297.795,228.31,560.264,0.997443,-1,-1,-1
91,-1,442.405,420.929,113.012,321.578,0.993879,-1,-1,-1
91,-1,320.289,427.55,90.152,312.367,0.974138,-1,-1,-1
91,-1,1294.62,475.606,77.53,201.88,0.969586,-1,-1,-1
91,-1,13.6847,470.853,103.537,305.961,0.961881,-1,-1,-1
91,-1,120.244,532.272,76.588,224.343,0.837413,-1,-1,-1
91,-1,1345.5,429.009,51.2,250.721,0.633852,-1,-1,-1
92,-1,1634.72,227.149,248.41,645.126,0.999587,-1,-1,-1
92,-1,961.29,300.233,232.92,480.508,0.997167,-1,-1,-1
92,-1,1405.69,311.678,224.46,534.181,0.995647,-1,-1,-1
92,-1,448.881,416.372,106.365,328.448,0.993327,-1,-1,-1
92,-1,328.255,430.701,87.174,299.841,0.974703,-1,-1,-1
92,-1,1296.5,478.942,76.75,195.296,0.973876,-1,-1,-1
92,-1,35.2705,496.304,92.0595,286.416,0.947902,-1,-1,-1
92,-1,1345.11,475.559,47.99,193.225,0.651136,-1,-1,-1
92,-1,113.174,497.852,78.55,265.248,0.594024,-1,-1,-1
93,-1,1634.53,220.445,247.06,661.591,0.999613,-1,-1,-1
93,-1,968.174,309.393,214.516,460.86,0.998408,-1,-1,-1
93,-1,1421.26,299.687,209.71,573.389,0.997146,-1,-1,-1
93,-1,456.017,428.041,97.658,301.225,0.98835,-1,-1,-1
93,-1,326.626,439.02,76.654,301.665,0.977775,-1,-1,-1
93,-1,1297.8,491.026,74.27,190.74,0.976796,-1,-1,-1
93,-1,19.7962,491.097,110.301,272.114,0.937209,-1,-1,-1
93,-1,115.583,493.246,78.124,265.455,0.697492,-1,-1,-1
93,-1,1347.55,483.08,48.1,200.009,0.573848,-1,-1,-1
94,-1,1624.75,221.969,255.87,657.141,0.999439,-1,-1,-1
94,-1,1417.42,306.064,205.26,546.658,0.997744,-1,-1,-1
94,-1,976.784,281.264,219.276,485.377,0.997067,-1,-1,-1
94,-1,459.725,413.972,103.807,335.577,0.993241,-1,-1,-1
94,-1,326.278,439.019,66.091,304.894,0.976656,-1,-1,-1
94,-1,1309.12,471.825,72.34,212.642,0.962612,-1,-1,-1
94,-1,26.1657,505.912,102.249,250.806,0.931219,-1,-1,-1
94,-1,120.914,540.052,76.267,211.155,0.884472,-1,-1,-1
95,-1,1633.43,222.095,246.13,671.267,0.999167,-1,-1,-1
95,-1,987.073,306.102,241.957,459.252,0.998423,-1,-1,-1
95,-1,1404.66,324.534,201.5,547.824,0.997621,-1,-1,-1
95,-1,451.908,409.716,129.863,332.598,0.99024,-1,-1,-1
95,-1,337.616,443.422,63.326,286.76,0.976306,-1,-1,-1
95,-1,1306.55,506.994,55.51,166.449,0.954528,-1,-1,-1
95,-1,28.9904,513.352,79.7716,264.498,0.941048,-1,-1,-1
95,-1,113.757,533.538,74.63,215.201,0.736597,-1,-1,-1
95,-1,1338.67,482.884,54.08,202.65,0.53867,-1,-1,-1
96,-1,1614.28,221.945,257.14,681.377,0.999488,-1,-1,-1
96,-1,1007.54,304.09,204.99,457.497,0.998776,-1,-1,-1
96,-1,1361.32,328.442,237.99,517.796,0.99417,-1,-1,-1
96,-1,467.049,426.926,99.543,307.84,0.991763,-1,-1,-1
96,-1,344.522,431.97,56.99,288.778,0.972484,-1,-1,-1
96,-1,1309.14,509.633,53.47,161.238,0.94742,-1,-1,-1
96,-1,21.599,506.129,104.787,263.604,0.933461,-1,-1,-1
96,-1,116.368,537.775,81.992,214.385,0.916331,-1,-1,-1
96,-1,1343.08,470.028,53.23,195.771,0.585777,-1,-1,-1
97,-1,1602.6,214.806,262.92,676.212,0.999596,-1,-1,-1
97,-1,1027.47,330.093,194.14,410.662,0.998813,-1,-1,-1
97,-1,467.473,423.665,106.169,307.819,0.992834,-1,-1,-1
97,-1,1388.7,308.081,207.64,569.814,0.986151,-1,-1,-1
97,-1,340.356,434.357,75.266,296.127,0.981946,-1,-1,-1
97,-1,23.9569,534.438,83.3271,236.001,0.946731,-1,-1,-1
97,-1,1309.94,513.072,51.2,157.959,0.933376,-1,-1,-1
97,-1,117.393,510.604,77.383,254.858,0.77136,-1,-1,-1
97,-1,1348.06,485.818,52.37,174.466,0.573284,-1,-1,-1
98,-1,1622.92,182.241,229,725.543,0.999126,-1,-1,-1
98,-1,1050.52,320.593,151.07,434.356,0.997208,-1,-1,-1
98,-1,1400.31,319.825,182.22,551.089,0.991139,-1,-1,-1
98,-1,465.578,414.87,111.217,309.862,0.990531,-1,-1,-1
98,-1,341.236,423.558,74.489,312.793,0.984323,-1,-1,-1
98,-1,1313.38,509.9,45.85,156.483,0.95293,-1,-1,-1
98,-1,21.4653,551.551,89.9157,215.676,0.9423,-1,-1,-1
98,-1,116.443,536.856,82.768,208.882,0.903206,-1,-1,-1
98,-1,1345.39,505.68,52.71,154.263,0.607244,-1,-1,-1
98,-1,1365.24,343.99,84.84,354.119,0.524324,-1,-1,-1
99,-1,1613.01,194.183,226.21,716.038,0.999439,-1,-1,-1
99,-1,1065.16,299.304,148.44,468.214,0.997245,-1,-1,-1
99,-1,1387.14,313.497,193.1,570.998,0.995737,-1,-1,-1
99,-1,464.521,412.909,125.606,333.194,0.986685,-1,-1,-1
99,-1,331.767,442.209,82.756,287.547,0.979196,-1,-1,-1
99,-1,1315.65,506.268,47.36,160.558,0.951129,-1,-1,-1
99,-1,27.2756,537.765,78.6184,247.177,0.928257,-1,-1,-1
99,-1,117.406,546.583,79.611,198.947,0.880432,-1,-1,-1
99,-1,1351.69,501.525,48.4,170.72,0.542438,-1,-1,-1
100,-1,1607.58,208.9,237.6,703.83,0.998748,-1,-1,-1
100,-1,1076.83,302.442,153.66,473.154,0.99736,-1,-1,-1
100,-1,465.392,411.419,126.806,319.332,0.993349,-1,-1,-1
100,-1,1404.37,321.541,171.5,537.093,0.99197,-1,-1,-1
100,-1,330.934,434.73,87.72,312.123,0.977065,-1,-1,-1
100,-1,28.0801,519.735,79.5259,243.946,0.94451,-1,-1,-1
100,-1,117.834,543.489,78.075,205.247,0.888131,-1,-1,-1
100,-1,1320.6,496.428,49.14,164.768,0.819246,-1,-1,-1
100,-1,1344.19,449.906,66.74,216.535,0.745049,-1,-1,-1
101,-1,1580.78,195.491,267.6,702.968,0.99957,-1,-1,-1
101,-1,1078.43,318.699,163.08,420.166,0.993423,-1,-1,-1
101,-1,463.136,419.182,122.281,311.803,0.993288,-1,-1,-1
101,-1,1399.04,308.184,176.84,560.034,0.993229,-1,-1,-1
101,-1,329.316,434.698,95.316,290.058,0.986261,-1,-1,-1
101,-1,1331.28,488.18,62.58,186.414,0.948044,-1,-1,-1
101,-1,35.1435,566.096,73.9475,200.616,0.945617,-1,-1,-1
101,-1,116.921,537.771,78.49,210.381,0.888484,-1,-1,-1
101,-1,1308.88,530.659,57.73,91.862,0.52962,-1,-1,-1
102,-1,1570.97,187.965,268.53,724.017,0.999596,-1,-1,-1
102,-1,1075.96,323.106,164.58,442.503,0.998274,-1,-1,-1
102,-1,462.431,412.902,127.7,319.425,0.994249,-1,-1,-1
102,-1,1388.55,333.235,184.87,533.459,0.992301,-1,-1,-1
102,-1,328.353,438.783,101.76,285.643,0.989099,-1,-1,-1
102,-1,24.1418,534.956,79.7382,229.708,0.933857,-1,-1,-1
102,-1,1304.65,471.368,69.46,211.856,0.933519,-1,-1,-1
102,-1,117.947,504.245,79.103,260.034,0.788931,-1,-1,-1
102,-1,1292.26,552.311,64.21,86.815,0.715805,-1,-1,-1
103,-1,1570.07,200.675,252.38,712.391,0.999565,-1,-1,-1
103,-1,1093.67,319.921,159.02,432.534,0.997112,-1,-1,-1
103,-1,461.024,410.096,131.251,323.424,0.994278,-1,-1,-1
103,-1,1359.02,310.083,210.46,569.755,0.992851,-1,-1,-1
103,-1,330.184,441.897,106.053,265.954,0.990371,-1,-1,-1
103,-1,124.002,540.952,71.109,213.159,0.841486,-1,-1,-1
103,-1,1311.31,493.304,53.38,177.016,0.839354,-1,-1,-1
103,-1,20.3921,553.936,82.2649,210.067,0.832527,-1,-1,-1
104,-1,1590.57,212.751,230.71,682.327,0.99929,-1,-1,-1
104,-1,1364.95,322.027,192.25,554.162,0.997705,-1,-1,-1
104,-1,1109.68,328.085,157.86,434.324,0.996115,-1,-1,-1
104,-1,459.1,411.017,134.747,316.094,0.994834,-1,-1,-1
104,-1,328.934,436.097,104.387,288.484,0.986597,-1,-1,-1
104,-1,1303.83,504.913,56.4,160.27,0.923181,-1,-1,-1
104,-1,112.656,530.583,76.969,221.842,0.866919,-1,-1,-1
104,-1,29.9,563.271,79.125,200.992,0.69692,-1,-1,-1
105,-1,1562.52,204.052,245.66,685.483,0.999483,-1,-1,-1
105,-1,1359.69,314.929,204.6,562.594,0.997784,-1,-1,-1
105,-1,1105.32,332.707,166.8,424.695,0.995237,-1,-1,-1
105,-1,457.542,410.359,137.445,318.009,0.995083,-1,-1,-1
105,-1,333.093,440.914,96.006,283.15,0.983519,-1,-1,-1
105,-1,107.726,539.278,84.667,218.235,0.914058,-1,-1,-1
105,-1,1293.5,527.336,56.69,126.218,0.903372,-1,-1,-1
105,-1,30.3031,537.529,74.4049,220.547,0.721571,-1,-1,-1
106,-1,1553.6,177.966,271.01,755.09,0.999134,-1,-1,-1
106,-1,1355.65,308.391,196.26,570.412,0.998167,-1,-1,-1
106,-1,1116.19,332.994,165.02,432.391,0.994804,-1,-1,-1
106,-1,459.207,414.522,131.342,313.85,0.994669,-1,-1,-1
106,-1,349.004,453.891,84.879,277.003,0.985891,-1,-1,-1
106,-1,110.946,548.95,69.415,196.41,0.856136,-1,-1,-1
106,-1,1313.93,499.252,67.87,172.133,0.740782,-1,-1,-1
107,-1,1556.61,173.646,251.16,747.796,0.998812,-1,-1,-1
107,-1,1337.44,301.603,193.65,597.53,0.998295,-1,-1,-1
107,-1,1120.86,347.326,164.5,407.101,0.995281,-1,-1,-1
107,-1,461.518,413.159,124.733,335.416,0.993587,-1,-1,-1
107,-1,353.862,444.32,90.162,291.39,0.984261,-1,-1,-1
107,-1,108.076,549.489,71.235,201.641,0.868918,-1,-1,-1
108,-1,1568.15,198.188,243.44,715.347,0.999009,-1,-1,-1
108,-1,1296.97,290.758,266.29,560.262,0.99853,-1,-1,-1
108,-1,464.786,413.98,137.359,329.467,0.993606,-1,-1,-1
108,-1,353.384,443.854,96.678,289.637,0.985158,-1,-1,-1
108,-1,1141.78,316.217,158.47,408.26,0.978185,-1,-1,-1
108,-1,112.229,549.152,82.113,210.003,0.893993,-1,-1,-1
109,-1,1541.78,187.056,243.99,724.763,0.999171,-1,-1,-1
109,-1,1294.65,290.446,254.09,567.832,0.99796,-1,-1,-1
109,-1,465.109,404.52,132.494,341.115,0.994255,-1,-1,-1
109,-1,1153.82,314.276,139.52,434.635,0.985604,-1,-1,-1
109,-1,355.408,445.337,91.805,289.161,0.98179,-1,-1,-1
109,-1,110.767,547.326,82.11,208.511,0.824879,-1,-1,-1
110,-1,1531.84,189.485,248.38,708.031,0.999468,-1,-1,-1
110,-1,1321.43,295.108,213.36,605.666,0.995747,-1,-1,-1
110,-1,464.073,404.169,131.312,340.965,0.99413,-1,-1,-1
110,-1,358.651,450.452,90.145,282.81,0.980466,-1,-1,-1
110,-1,1174.78,315.804,135.04,398.219,0.962671,-1,-1,-1
110,-1,109.578,547.502,85.731,211.201,0.816686,-1,-1,-1
111,-1,1542.26,184.756,246.37,711.335,0.999152,-1,-1,-1
111,-1,462.492,402.736,133.443,334.373,0.994111,-1,-1,-1
111,-1,1277.55,293.222,276.62,603.711,0.993462,-1,-1,-1
111,-1,1201.25,333.632,107.96,389.768,0.970408,-1,-1,-1
111,-1,355.273,446.882,92.41,293.887,0.969365,-1,-1,-1
111,-1,106.477,544.086,86.739,213.698,0.824033,-1,-1,-1
112,-1,1534.6,187.88,252.29,712.398,0.999301,-1,-1,-1
112,-1,1290.98,276.556,257.52,610.808,0.995452,-1,-1,-1
112,-1,461.274,413.094,119.083,319.697,0.993032,-1,-1,-1
112,-1,353.342,450.078,91.458,282.513,0.973111,-1,-1,-1
112,-1,1191.96,329.112,121.31,383.54,0.951281,-1,-1,-1
112,-1,115.351,521.815,82.548,233.242,0.672877,-1,-1,-1
113,-1,1509.41,191.338,260.99,704.312,0.999593,-1,-1,-1
113,-1,455.925,406.696,126.014,335.04,0.994303,-1,-1,-1
113,-1,1281.02,295.268,264.08,608.284,0.99314,-1,-1,-1
113,-1,357.344,457.863,71.384,261.025,0.965668,-1,-1,-1
113,-1,1206.58,304.972,99.38,336.846,0.893873,-1,-1,-1
113,-1,1242.1,518.805,64.69,201.315,0.782368,-1,-1,-1
113,-1,114.863,511.616,83.937,242.885,0.665378,-1,-1,-1
113,-1,19.1471,495.884,104.805,260.511,0.642044,-1,-1,-1
114,-1,1498.59,197.075,268.45,723.966,0.999571,-1,-1,-1
114,-1,1248.08,282.256,308.98,618.437,0.994764,-1,-1,-1
114,-1,461.071,402.303,118.328,337.175,0.992173,-1,-1,-1
114,-1,355.696,455.584,74.036,269.634,0.97095,-1,-1,-1
114,-1,1219,304.492,97.91,428.842,0.940794,-1,-1,-1
114,-1,21.2411,498.393,142.531,256.151,0.843909,-1,-1,-1
114,-1,112.403,509.765,89.86,246.181,0.786632,-1,-1,-1
115,-1,1517.31,229.421,247.43,628.963,0.999322,-1,-1,-1
115,-1,1253.77,272.961,293.02,626.901,0.997222,-1,-1,-1
115,-1,441.272,416.846,149.006,320.732,0.993818,-1,-1,-1
115,-1,339.155,435.346,100.343,287.811,0.967812,-1,-1,-1
115,-1,20.5157,507.346,84.0523,252.663,0.879694,-1,-1,-1
115,-1,1208.14,326.805,106.56,359.224,0.861909,-1,-1,-1
115,-1,112.02,514.016,88.071,241.733,0.82666,-1,-1,-1
116,-1,1509.23,188.206,255.07,751.492,0.999047,-1,-1,-1
116,-1,1232.73,262.497,302.09,652.108,0.998017,-1,-1,-1
116,-1,461.368,388.398,103.117,362.137,0.993229,-1,-1,-1
116,-1,339.396,444.814,100.001,281.935,0.971033,-1,-1,-1
116,-1,25.3198,511.081,80.5052,239.601,0.89318,-1,-1,-1
116,-1,112.067,516.67,88.941,242.224,0.867889,-1,-1,-1
116,-1,1218.63,331.144,92.45,494.595,0.584494,-1,-1,-1
117,-1,1505.95,166.647,243.15,755.857,0.99927,-1,-1,-1
117,-1,1236.98,264.887,302.08,656.622,0.998645,-1,-1,-1
117,-1,458.268,391.186,94.615,356.887,0.991784,-1,-1,-1
117,-1,362.034,436.153,91.255,305.18,0.972181,-1,-1,-1
117,-1,22.9504,502.644,84.0206,252.984,0.948857,-1,-1,-1
117,-1,113.341,520.949,85.078,239.016,0.869592,-1,-1,-1
118,-1,1495.77,141.626,241.98,788.59,0.999526,-1,-1,-1
118,-1,1217.6,273.715,323.46,648.482,0.997996,-1,-1,-1
118,-1,448.368,405.559,129.632,341.608,0.990768,-1,-1,-1
118,-1,359.187,436.482,91.281,302.675,0.975661,-1,-1,-1
118,-1,21.6926,515.634,89.2684,238.811,0.959399,-1,-1,-1
118,-1,111.802,516.339,83.487,242.993,0.787771,-1,-1,-1
119,-1,1484.28,150.667,268.21,805.438,0.999395,-1,-1,-1
119,-1,1214.32,263.803,280.35,677.727,0.997611,-1,-1,-1
119,-1,465.608,403.195,96.157,330.076,0.990827,-1,-1,-1
119,-1,342.302,444.472,86.651,279.125,0.974848,-1,-1,-1
119,-1,28.6627,523.849,91.8113,233.627,0.742668,-1,-1,-1
119,-1,115.002,515.93,80.081,242.133,0.705653,-1,-1,-1
120,-1,1478,167.607,267.1,774.708,0.999568,-1,-1,-1
120,-1,1194.99,269.916,317.62,649.633,0.995573,-1,-1,-1
120,-1,449.082,410.586,128.2,314.436,0.992805,-1,-1,-1
120,-1,361.39,423.333,87.184,315.815,0.974675,-1,-1,-1
120,-1,110.118,530.06,82.604,229.529,0.673527,-1,-1,-1
120,-1,25.9622,518.661,97.5638,239.568,0.623528,-1,-1,-1
121,-1,1465.3,123.347,268.64,835.234,0.999728,-1,-1,-1
121,-1,1168.42,261.992,304.03,709.958,0.998087,-1,-1,-1
121,-1,448.203,394.613,95.438,337.93,0.99252,-1,-1,-1
121,-1,360.122,415.736,89.132,309.696,0.985388,-1,-1,-1
121,-1,20.7665,530.825,92.5165,248.196,0.936749,-1,-1,-1
121,-1,111.452,513.306,81.544,244.631,0.822782,-1,-1,-1
122,-1,1468.91,139.802,282.7,815.672,0.999658,-1,-1,-1
122,-1,1172.76,264.018,313.35,683.782,0.998794,-1,-1,-1
122,-1,445.696,400.866,104.495,335.748,0.9939,-1,-1,-1
122,-1,349.355,417.142,86.459,320.529,0.963745,-1,-1,-1
122,-1,14.8372,522.739,82.4715,241.669,0.907451,-1,-1,-1
122,-1,112.461,529.864,83.834,230.645,0.764157,-1,-1,-1
123,-1,1461.32,146.469,278.7,818.311,0.99965,-1,-1,-1
123,-1,1174.7,255.402,314.05,706.434,0.997837,-1,-1,-1
123,-1,451.981,398.928,122.642,341.248,0.993389,-1,-1,-1
123,-1,347.307,419,96.997,318.371,0.985888,-1,-1,-1
123,-1,12.8491,526.615,87.1629,238.91,0.786503,-1,-1,-1
124,-1,1453.59,119.599,269.73,851.935,0.999761,-1,-1,-1
124,-1,1159.52,298.876,310.23,663.777,0.997699,-1,-1,-1
124,-1,466.305,418.352,94.523,323.28,0.994712,-1,-1,-1
124,-1,340.459,421.373,102.364,321.83,0.984528,-1,-1,-1
124,-1,26.5515,528.894,90.4305,244.121,0.939899,-1,-1,-1
125,-1,1439.81,130.478,288.31,856.993,0.999673,-1,-1,-1
125,-1,1164.03,244.724,291.55,694.252,0.996859,-1,-1,-1
125,-1,467.272,420.393,92.417,310.873,0.9945,-1,-1,-1
125,-1,330.341,445.346,107.384,298.335,0.974721,-1,-1,-1
125,-1,25.1183,517.112,91.0897,256.491,0.964709,-1,-1,-1
125,-1,113.289,462.907,101.493,302.225,0.812952,-1,-1,-1
126,-1,1440.94,141.379,281.08,844.019,0.999567,-1,-1,-1
126,-1,1142.43,267.797,283.31,669.356,0.996865,-1,-1,-1
126,-1,442.368,404.987,126.599,350.533,0.993685,-1,-1,-1
126,-1,335.52,425.518,112.812,332.372,0.986083,-1,-1,-1
126,-1,25.009,524.187,78.542,243.304,0.825654,-1,-1,-1
126,-1,116.133,499.552,79.351,269.316,0.636446,-1,-1,-1
127,-1,1421.61,128.505,296.37,852.198,0.999432,-1,-1,-1
127,-1,1123.07,281.944,297.77,692.805,0.993884,-1,-1,-1
127,-1,443.768,397.948,124.597,336.849,0.992901,-1,-1,-1
127,-1,341.378,413.587,108.191,327.205,0.986036,-1,-1,-1
127,-1,27.1836,517.005,90.5664,255.344,0.919776,-1,-1,-1
127,-1,115.169,486.368,87.285,282.078,0.834272,-1,-1,-1
128,-1,1420.25,142.805,291.76,830.801,0.999525,-1,-1,-1
128,-1,1132.14,257.558,281.53,683.869,0.996672,-1,-1,-1
128,-1,437.621,400.771,134.773,358.609,0.992896,-1,-1,-1
128,-1,322.779,430.003,114.452,311.417,0.976753,-1,-1,-1
128,-1,109.552,507.564,74.213,233.084,0.96418,-1,-1,-1
128,-1,27.7982,516.448,86.7358,246.102,0.940194,-1,-1,-1
129,-1,1401.84,121.99,320.91,896.31,0.99957,-1,-1,-1
129,-1,1105.81,268.898,325.2,694.764,0.996588,-1,-1,-1
129,-1,448.695,419.079,112.525,326.517,0.987766,-1,-1,-1
129,-1,110.625,532.871,82.76,222.487,0.985934,-1,-1,-1
129,-1,336.007,427.831,101.487,325.757,0.983397,-1,-1,-1
129,-1,18.406,535.581,81.5617,218.414,0.918766,-1,-1,-1
130,-1,1397.87,136.651,308.38,871.049,0.999278,-1,-1,-1
130,-1,1122.01,241.379,292.27,706.923,0.997064,-1,-1,-1
130,-1,429.012,407.197,131.027,335.186,0.988418,-1,-1,-1
130,-1,335.613,424.819,103.565,306.171,0.976355,-1,-1,-1
130,-1,108.608,484.569,90.025,283.517,0.967127,-1,-1,-1
130,-1,30.1618,513.651,76.1802,266.924,0.912193,-1,-1,-1
131,-1,1396.61,147.516,331.69,877.454,0.99896,-1,-1,-1
131,-1,1116.2,253.395,271.67,686.182,0.997678,-1,-1,-1
131,-1,449.371,404.021,121.427,350.609,0.99047,-1,-1,-1
131,-1,330.913,417.788,108.454,341.027,0.987153,-1,-1,-1
131,-1,125.83,484.028,75.715,266.657,0.94842,-1,-1,-1
131,-1,36.1418,499.295,75.0612,271.342,0.858418,-1,-1,-1
132,-1,1377.6,148.775,319.19,863.495,0.999337,-1,-1,-1
132,-1,1114.51,239.819,285.64,718.044,0.998684,-1,-1,-1
132,-1,439.795,408.933,129.976,337.207,0.99189,-1,-1,-1
132,-1,319.93,417.602,116.021,325.207,0.990265,-1,-1,-1
132,-1,95.7649,496.577,97.7781,246.862,0.910165,-1,-1,-1
132,-1,32.7104,525.261,77.5976,244.852,0.784841,-1,-1,-1
133,-1,1374.4,136.233,293.61,874.737,0.999163,-1,-1,-1
133,-1,1103.74,285.543,294.22,728.797,0.998775,-1,-1,-1
133,-1,321.153,420,112.808,331.613,0.992014,-1,-1,-1
133,-1,441.985,408.48,126.033,331.516,0.991616,-1,-1,-1
133,-1,121.911,477.119,75.567,280.035,0.896123,-1,-1,-1
133,-1,27.4389,495.869,90.2061,268.058,0.658345,-1,-1,-1
134,-1,1363.07,128.925,328.29,899.265,0.999152,-1,-1,-1
134,-1,1110.41,236.767,265.54,733.432,0.998175,-1,-1,-1
134,-1,440.281,403.301,130.191,336.945,0.991066,-1,-1,-1
134,-1,316.802,424.143,116.612,323.059,0.990439,-1,-1,-1
134,-1,101.701,503.377,84.793,253.755,0.939438,-1,-1,-1
135,-1,1364.65,139.564,305.65,857.527,0.999372,-1,-1,-1
135,-1,1093.43,250.172,299.73,681.665,0.998696,-1,-1,-1
135,-1,451.295,406.893,117.735,332.284,0.989518,-1,-1,-1
135,-1,316.239,422.111,118.004,325.718,0.989489,-1,-1,-1
135,-1,106.794,447.992,107.963,305.294,0.978172,-1,-1,-1
135,-1,5.44726,411.803,89.2329,402.005,0.759028,-1,-1,-1
136,-1,1351.53,124.751,307.39,904.369,0.99889,-1,-1,-1
136,-1,1084.67,251.655,283.81,711.535,0.998057,-1,-1,-1
136,-1,446.979,401.681,120.874,344.132,0.990564,-1,-1,-1
136,-1,316.653,421.874,115.968,324.666,0.985638,-1,-1,-1
136,-1,121.182,454.073,77.17,296.057,0.938865,-1,-1,-1
136,-1,2.63392,380.425,106.171,292.404,0.876278,-1,-1,-1
137,-1,1355.28,138.372,305.99,866.148,0.999482,-1,-1,-1
137,-1,1066.08,268.928,306.38,728.562,0.99897,-1,-1,-1
137,-1,444.326,404.256,124.141,346.877,0.990345,-1,-1,-1
137,-1,320.099,421.683,113.388,319.494,0.985453,-1,-1,-1
137,-1,109.31,456.158,106.988,304.346,0.934293,-1,-1,-1
137,-1,0,296.726,161.729,623.505,0.845309,-1,-1,-1
138,-1,1046.87,260.614,317.06,710.552,0.99877,-1,-1,-1
138,-1,1325.28,102.684,295.27,914.206,0.998467,-1,-1,-1
138,-1,443.808,408.293,123.561,336.509,0.991291,-1,-1,-1
138,-1,319.693,413.367,114.065,329.195,0.985525,-1,-1,-1
138,-1,0,371.161,156.527,575.344,0.968758,-1,-1,-1
138,-1,21.5465,409.417,94.7405,240.449,0.842351,-1,-1,-1
139,-1,1322.92,130.881,314.99,873.449,0.999438,-1,-1,-1
139,-1,1052.34,210.071,298.08,809.799,0.998072,-1,-1,-1
139,-1,442.142,403.264,129.767,350.082,0.990796,-1,-1,-1
139,-1,324.508,411.87,106.378,325.404,0.986341,-1,-1,-1
139,-1,1.73608,384.039,160.363,506.17,0.964791,-1,-1,-1
140,-1,1326.38,147.925,316.24,831.094,0.999176,-1,-1,-1
140,-1,1010.48,238.594,325.58,762.656,0.998353,-1,-1,-1
140,-1,8.41307,364.604,170.586,553.983,0.992091,-1,-1,-1
140,-1,442.765,400.666,130.867,355.471,0.990977,-1,-1,-1
140,-1,324.716,411.696,106.652,332.32,0.9863,-1,-1,-1
140,-1,47.7337,402.756,98.7823,231.239,0.680982,-1,-1,-1
141,-1,1319.75,123.711,314.7,872.97,0.99952,-1,-1,-1
141,-1,983.629,231.887,325.281,777.473,0.997594,-1,-1,-1
141,-1,446.394,359.989,127.03,408.279,0.992521,-1,-1,-1
141,-1,15.2461,352.729,173.828,570.387,0.988356,-1,-1,-1
141,-1,317.128,415.754,116.603,336.75,0.985269,-1,-1,-1
142,-1,1313.9,119.54,300.29,876.868,0.999547,-1,-1,-1
142,-1,998.639,226.158,321.551,747.38,0.997563,-1,-1,-1
142,-1,3.41721,297.828,181.684,664.636,0.991098,-1,-1,-1
142,-1,446.639,397.454,133.057,368.778,0.990036,-1,-1,-1
142,-1,317.604,407.098,113.639,349.891,0.985291,-1,-1,-1
142,-1,96.2322,383.085,110.455,308.977,0.554631,-1,-1,-1
143,-1,1295.56,131.57,306.77,852.654,0.999294,-1,-1,-1
143,-1,994.627,208.196,331.043,792.944,0.997949,-1,-1,-1
143,-1,0,267.078,194.297,736.782,0.996046,-1,-1,-1
143,-1,442.812,361.677,131.009,420.24,0.99378,-1,-1,-1
143,-1,315.557,392.359,110.774,383.785,0.986015,-1,-1,-1
143,-1,131.143,385.41,93.78,274.583,0.930221,-1,-1,-1
144,-1,1283.55,144.374,308.06,829.75,0.999144,-1,-1,-1
144,-1,947.65,232.221,411.86,790.339,0.998028,-1,-1,-1
144,-1,13.7156,286.141,215.518,683.344,0.997833,-1,-1,-1
144,-1,446.704,393.107,108.851,361.938,0.989898,-1,-1,-1
144,-1,317.143,413.5,113.194,350.36,0.979019,-1,-1,-1
144,-1,138.007,386.315,88.65,284.183,0.595022,-1,-1,-1
145,-1,1283.98,132.327,301.55,878.783,0.999456,-1,-1,-1
145,-1,965.325,199.32,337.005,804.1,0.997835,-1,-1,-1
145,-1,29.165,317.565,179.63,599.524,0.996555,-1,-1,-1
145,-1,463.595,400.463,99.1,370.572,0.990376,-1,-1,-1
145,-1,314.75,401.018,113.418,353.435,0.982837,-1,-1,-1
145,-1,155.211,412.832,90.905,309.418,0.737583,-1,-1,-1
146,-1,1282.19,116.476,292.07,878.98,0.999238,-1,-1,-1
146,-1,935.339,235.838,389.761,802.072,0.998234,-1,-1,-1
146,-1,60.3594,306.401,173.912,638.465,0.996991,-1,-1,-1
146,-1,462.635,405.192,101.389,355.045,0.990348,-1,-1,-1
146,-1,324.239,386.807,109.777,372.845,0.986059,-1,-1,-1
146,-1,0,421.154,89.327,442.303,0.802781,-1,-1,-1
147,-1,1274.04,149.309,298.79,860.691,0.998779,-1,-1,-1
147,-1,85.247,303.484,167.19,633.31,0.996632,-1,-1,-1
147,-1,965.011,212.194,330.349,813.986,0.996043,-1,-1,-1
147,-1,463.214,393.945,111.313,355.023,0.994085,-1,-1,-1
147,-1,323.141,425.553,108.554,337.759,0.989658,-1,-1,-1
147,-1,0,432.036,131.407,488.493,0.898559,-1,-1,-1
148,-1,1238.56,114.743,352.5,928.997,0.998733,-1,-1,-1
148,-1,937.893,183.64,374.397,875.41,0.998088,-1,-1,-1
148,-1,452.196,397.641,104.896,364.054,0.994807,-1,-1,-1
148,-1,52.9167,304.159,212.853,614.231,0.991062,-1,-1,-1
148,-1,324.167,414.929,98.78,333.697,0.983718,-1,-1,-1
148,-1,231.712,410.431,84.842,228.916,0.834224,-1,-1,-1
148,-1,191.842,404.587,115.938,494.371,0.825841,-1,-1,-1
149,-1,1248.48,131.375,316.4,897.995,0.998635,-1,-1,-1
149,-1,921.558,223.296,379.922,831.074,0.997786,-1,-1,-1
149,-1,80.0182,291.047,194.94,622.146,0.996727,-1,-1,-1
149,-1,452.915,367.821,99.954,394.64,0.996237,-1,-1,-1
149,-1,328.591,413.194,90.613,342.581,0.980127,-1,-1,-1
149,-1,247.559,428.302,70.131,177.46,0.727589,-1,-1,-1
149,-1,18.7679,391.715,108.676,484.053,0.678968,-1,-1,-1
150,-1,1240.89,130.559,332.14,902.201,0.999321,-1,-1,-1
150,-1,895.993,236.35,371.267,817.65,0.996761,-1,-1,-1
150,-1,427.373,390.021,147.376,373.179,0.994784,-1,-1,-1
150,-1,20.5152,389.333,342.733,509.429,0.99221,-1,-1,-1
150,-1,328.083,404.112,86.813,354.204,0.969772,-1,-1,-1
150,-1,240.396,392.083,83.705,461.182,0.777285,-1,-1,-1
151,-1,1197.26,86.2979,364.94,956.722,0.999227,-1,-1,-1
151,-1,886.077,205.66,386.813,852.85,0.99823,-1,-1,-1
151,-1,443.594,369.348,124.687,395.097,0.996955,-1,-1,-1
151,-1,41.8755,359.182,373.793,547.037,0.990092,-1,-1,-1
151,-1,332.096,372.215,81.343,447.522,0.947391,-1,-1,-1
151,-1,1475.69,385.783,73.23,312.447,0.84973,-1,-1,-1
151,-1,299.614,421.817,70.253,303.327,0.643805,-1,-1,-1
152,-1,1215.35,129.896,329.8,901.954,0.999179,-1,-1,-1
152,-1,419.624,381.212,158.498,383.316,0.997487,-1,-1,-1
152,-1,870.989,242.074,405.991,791.056,0.997016,-1,-1,-1
152,-1,28.9924,362.431,402.303,553.569,0.99694,-1,-1,-1
152,-1,297.696,401.816,127.977,476.884,0.945566,-1,-1,-1
152,-1,1487.01,380.437,63.99,305.489,0.593725,-1,-1,-1
153,-1,1214.39,128.275,342.83,894.725,0.998694,-1,-1,-1
153,-1,872.738,197.1,368.892,861.58,0.998108,-1,-1,-1
153,-1,442.542,373.59,117.703,392.058,0.996494,-1,-1,-1
153,-1,81.8229,363.793,365.633,548.419,0.990357,-1,-1,-1
153,-1,315.451,381.998,111.41,450.76,0.929971,-1,-1,-1
153,-1,104.272,425.703,122.04,494.906,0.86803,-1,-1,-1
154,-1,1198.99,109.75,323.82,898.76,0.998596,-1,-1,-1
154,-1,835.447,184.172,378.443,885.688,0.997882,-1,-1,-1
154,-1,426.405,385.651,162.689,364.647,0.997398,-1,-1,-1
154,-1,104.07,359.177,352.878,544.561,0.985611,-1,-1,-1
154,-1,328.086,422.136,113.269,433.772,0.946802,-1,-1,-1
154,-1,110.448,401.439,112.539,508.262,0.77492,-1,-1,-1
154,-1,27.3448,471.782,89.4532,290.54,0.557288,-1,-1,-1
155,-1,824.709,199.728,369.531,853.382,0.999038,-1,-1,-1
155,-1,1176.19,98.5408,360.4,912.879,0.998673,-1,-1,-1
155,-1,421.82,387.595,167.185,379.894,0.996443,-1,-1,-1
155,-1,174.826,346.197,268.705,566.234,0.977241,-1,-1,-1
155,-1,130.507,407.479,138.706,512.922,0.761958,-1,-1,-1
155,-1,339.137,412.201,77.43,322.165,0.607005,-1,-1,-1
155,-1,1492.03,193.621,72.16,516.346,0.557375,-1,-1,-1
156,-1,1131.62,67.1812,409.23,1011.82,0.998097,-1,-1,-1
156,-1,821.153,200.343,369.387,864.027,0.997111,-1,-1,-1
156,-1,448.342,396.097,146.317,353.807,0.992705,-1,-1,-1
156,-1,178.292,379.674,266.324,556.381,0.98105,-1,-1,-1
157,-1,1160.54,37.4784,367.55,993.292,0.999049,-1,-1,-1
157,-1,805.308,233.253,365.792,837.457,0.996289,-1,-1,-1
157,-1,456.347,372.188,140.507,404.14,0.995301,-1,-1,-1
157,-1,249.107,327.054,155.326,589.561,0.961011,-1,-1,-1
157,-1,1466.48,307.701,117.94,362.505,0.900908,-1,-1,-1
157,-1,363.703,375.011,86.986,527,0.581967,-1,-1,-1
157,-1,121.157,412.284,222.738,480.316,0.54473,-1,-1,-1
158,-1,1166.55,87.6122,346.23,977.018,0.998932,-1,-1,-1
158,-1,471.727,380.595,125.07,402.77,0.994904,-1,-1,-1
158,-1,778.681,207.238,390.349,855.232,0.994727,-1,-1,-1
158,-1,276.905,322.117,136.64,615.456,0.970596,-1,-1,-1
158,-1,1493.37,363.49,96.19,319.941,0.968035,-1,-1,-1
158,-1,166.131,423.283,177.948,469.134,0.827749,-1,-1,-1
159,-1,803.652,193.39,356.668,870.49,0.998504,-1,-1,-1
159,-1,1140.88,62.7029,376.72,1004.23,0.998465,-1,-1,-1
159,-1,437.444,401.268,171.714,361.098,0.995002,-1,-1,-1
159,-1,298.185,329.427,135.73,556.45,0.9768,-1,-1,-1
159,-1,1501.08,350.068,91.74,323.7,0.973231,-1,-1,-1
159,-1,195.492,382.733,164.623,514.176,0.920718,-1,-1,-1
159,-1,92.89,493.607,99.603,330.385,0.581505,-1,-1,-1
160,-1,1116.18,60.5477,383.21,1006.72,0.999009,-1,-1,-1
160,-1,807.319,190.485,335.191,860.265,0.99896,-1,-1,-1
160,-1,299.955,307.052,165.368,593.278,0.997147,-1,-1,-1
160,-1,466.675,381.187,131.305,376.134,0.992388,-1,-1,-1
160,-1,1492.32,358.898,100.56,331.292,0.989786,-1,-1,-1
160,-1,217.274,375.79,131.76,522.899,0.867375,-1,-1,-1
160,-1,88.6449,457.667,106.544,423.416,0.742864,-1,-1,-1
161,-1,1129.29,35.3367,377.92,1040.22,0.999358,-1,-1,-1
161,-1,797.202,208.675,337.728,859.555,0.998802,-1,-1,-1
161,-1,330.676,299.371,146.963,610.106,0.995947,-1,-1,-1
161,-1,1505.93,365.731,82.53,309.587,0.990391,-1,-1,-1
161,-1,465.328,371.01,125.004,390.491,0.984048,-1,-1,-1
161,-1,223.383,394.256,148.757,520.536,0.965753,-1,-1,-1
161,-1,104.718,462.695,101.872,357.194,0.850417,-1,-1,-1
162,-1,1111.03,32.7078,398.59,1044.59,0.999379,-1,-1,-1
162,-1,791.037,202.674,324.643,876.326,0.998725,-1,-1,-1
162,-1,351.551,300.209,155.983,593.707,0.996211,-1,-1,-1
162,-1,1506.01,364.504,95.71,329.802,0.991025,-1,-1,-1
162,-1,483.83,365.578,109.423,408.762,0.958031,-1,-1,-1
162,-1,237.602,427.249,149.023,485.929,0.90106,-1,-1,-1
162,-1,103.616,505.725,92.341,268.26,0.653761,-1,-1,-1
163,-1,1088.21,46.5207,419.88,1032.48,0.999014,-1,-1,-1
163,-1,757.59,179.889,369.18,899.111,0.998305,-1,-1,-1
163,-1,1503.48,359.215,112.25,344.341,0.992041,-1,-1,-1
163,-1,365.444,290.194,148.399,619.148,0.991223,-1,-1,-1
163,-1,502.961,393.489,116.691,414.765,0.982257,-1,-1,-1
163,-1,249.811,412.505,160.491,469.134,0.976107,-1,-1,-1
163,-1,20.0818,532.082,84.3562,218.914,0.685361,-1,-1,-1
163,-1,111.459,502.479,93.318,241.906,0.623957,-1,-1,-1
164,-1,1090.29,17.2777,407.01,1057.1,0.999484,-1,-1,-1
164,-1,723.183,194.858,378.047,884.142,0.998489,-1,-1,-1
164,-1,372.624,326.358,227.498,561.611,0.988303,-1,-1,-1
164,-1,1489.26,377.977,112.6,289.278,0.987986,-1,-1,-1
164,-1,282.691,399.405,141.415,500.495,0.978587,-1,-1,-1
164,-1,505.319,380.41,123.715,411.652,0.939294,-1,-1,-1
164,-1,20.8767,519.098,82.8433,236.823,0.809804,-1,-1,-1
164,-1,109.589,502.89,91.222,244.046,0.61564,-1,-1,-1
165,-1,1061.74,62.2685,435.62,1003.74,0.999194,-1,-1,-1
165,-1,726.531,150.975,357.969,928.025,0.998545,-1,-1,-1
165,-1,384.855,313.887,248.573,561.382,0.991468,-1,-1,-1
165,-1,1494.1,355.605,125.84,330.912,0.986627,-1,-1,-1
165,-1,307.509,390.502,123.082,505.539,0.965466,-1,-1,-1
165,-1,24.0661,521.108,78.8389,229.479,0.866926,-1,-1,-1
165,-1,110.784,498.518,99.172,231.049,0.826276,-1,-1,-1
165,-1,534.347,388.274,95.643,401.106,0.642151,-1,-1,-1
166,-1,1044.91,21.5712,439.25,1056.45,0.998887,-1,-1,-1
166,-1,734.513,153.856,323.077,913.064,0.996482,-1,-1,-1
166,-1,390.917,317.891,269.809,557.646,0.994491,-1,-1,-1
166,-1,1516.43,353.135,98.15,326.419,0.984313,-1,-1,-1
166,-1,322.383,392.385,132.29,500.582,0.937477,-1,-1,-1
166,-1,26.2024,510.874,80.9336,233.11,0.904668,-1,-1,-1
166,-1,1402.92,463.103,54.52,229.589,0.840815,-1,-1,-1
166,-1,117.38,481.346,83.424,265.682,0.737493,-1,-1,-1
167,-1,1020.57,26.7654,439.43,1040.96,0.999076,-1,-1,-1
167,-1,699.201,188.818,387.589,863.772,0.998669,-1,-1,-1
167,-1,421.512,327.324,235.197,540.245,0.994869,-1,-1,-1
167,-1,1516.73,356.476,106.59,310.565,0.985906,-1,-1,-1
167,-1,329.13,396.086,132.032,449.95,0.875343,-1,-1,-1
167,-1,1400.58,472.317,57.85,208.902,0.86017,-1,-1,-1
167,-1,28.1393,514.97,78.7687,241.985,0.507409,-1,-1,-1
168,-1,993.42,30.333,471.67,1048.67,0.998116,-1,-1,-1
168,-1,680.102,183.107,376.978,891.553,0.997815,-1,-1,-1
168,-1,440.151,317.13,192.875,556.771,0.993941,-1,-1,-1
168,-1,1506.31,374.202,109.74,290.828,0.988041,-1,-1,-1
168,-1,1388.3,431.139,76.75,253.298,0.97377,-1,-1,-1
168,-1,360.682,386.572,130.146,517.842,0.947701,-1,-1,-1
169,-1,1006.39,48.0618,425.59,1030.94,0.998628,-1,-1,-1
169,-1,669.072,159.047,375.908,919.953,0.997261,-1,-1,-1
169,-1,434.022,273.564,239.65,621.817,0.995314,-1,-1,-1
169,-1,1514,385.469,100.87,277.068,0.990365,-1,-1,-1
169,-1,1383.5,447.651,79.76,251.055,0.978928,-1,-1,-1
169,-1,358.131,398.482,164.538,472.264,0.971179,-1,-1,-1
170,-1,1017.07,11.8984,416.79,1062.69,0.999235,-1,-1,-1
170,-1,451.076,297.371,222.347,570.128,0.996989,-1,-1,-1
170,-1,649.313,155.659,349.543,884.361,0.996987,-1,-1,-1
170,-1,1522.39,370.397,96.59,298.449,0.990849,-1,-1,-1
170,-1,362.359,426.636,162.576,427.241,0.985074,-1,-1,-1
170,-1,1382.75,434.082,81.11,253.013,0.984214,-1,-1,-1
170,-1,18.4937,513.136,90.8543,240.434,0.594631,-1,-1,-1
170,-1,1434,460.682,48.39,186.172,0.524369,-1,-1,-1
171,-1,973.926,10.5453,444.264,1066.63,0.999003,-1,-1,-1
171,-1,624.079,128.709,353.251,931.581,0.997456,-1,-1,-1
171,-1,379.726,406.592,163.632,451.514,0.986792,-1,-1,-1
171,-1,1523.15,351.211,99.5,314.532,0.986028,-1,-1,-1
171,-1,1384.59,429.344,77.3,257.452,0.982465,-1,-1,-1
171,-1,521.17,309.821,136.68,583.306,0.977364,-1,-1,-1
171,-1,24.0114,522.773,84.1496,249.176,0.740621,-1,-1,-1
171,-1,347.224,435.989,85.86,212.51,0.578123,-1,-1,-1
172,-1,990.663,52.0708,415.617,1013.38,0.998686,-1,-1,-1
172,-1,606.98,127.02,367.845,904.3,0.995791,-1,-1,-1
172,-1,1381.13,430.345,98.87,258.61,0.984161,-1,-1,-1
172,-1,1540.6,370.815,94.01,303.44,0.984041,-1,-1,-1
172,-1,387.418,419.503,172.49,441.284,0.9813,-1,-1,-1
172,-1,530.008,316.423,119.777,308.993,0.790148,-1,-1,-1
172,-1,1335.74,533.018,60.53,136.771,0.771787,-1,-1,-1
172,-1,25.9583,524.983,82.7907,244.705,0.741355,-1,-1,-1
172,-1,554.353,389.449,131.292,470.607,0.62281,-1,-1,-1
172,-1,352.314,413.132,101.406,319.942,0.621477,-1,-1,-1
173,-1,960.331,18.972,384.419,1043.6,0.999423,-1,-1,-1
173,-1,582.931,145.37,384.507,881.88,0.996818,-1,-1,-1
173,-1,1537.83,369.23,106.95,316.317,0.993081,-1,-1,-1
173,-1,367.448,417.763,126.475,424.999,0.986661,-1,-1,-1
173,-1,1382.97,425.666,79.26,255.596,0.983991,-1,-1,-1
173,-1,26.676,536.465,74.4,239.731,0.875098,-1,-1,-1
173,-1,1334.99,501.873,54.64,172.104,0.871161,-1,-1,-1
173,-1,437.797,438.183,134.594,393.141,0.829441,-1,-1,-1
173,-1,562.749,303.866,128.834,400.363,0.608869,-1,-1,-1
173,-1,484.238,429.744,77.209,185.312,0.525222,-1,-1,-1
174,-1,982.888,14.6244,390.852,1038.81,0.999373,-1,-1,-1
174,-1,562.396,135.931,396.882,904.949,0.994771,-1,-1,-1
174,-1,1537.52,365.08,104.11,316.277,0.988666,-1,-1,-1
174,-1,1384.77,419.541,81.05,266.372,0.981055,-1,-1,-1
174,-1,367.088,405.572,120.811,435.086,0.978017,-1,-1,-1
174,-1,452.244,387.492,140.97,477.544,0.957236,-1,-1,-1
174,-1,1325.42,490.885,68.24,228.167,0.915934,-1,-1,-1
174,-1,6.58146,464.253,92.0388,309.009,0.77077,-1,-1,-1
174,-1,511.337,377.646,97.892,204.578,0.726246,-1,-1,-1
175,-1,962.189,25.8885,375.971,1036.27,0.998775,-1,-1,-1
175,-1,521.362,141.258,410.203,909.572,0.994353,-1,-1,-1
175,-1,1538.55,379.415,109.71,314.368,0.990224,-1,-1,-1
175,-1,1385.06,424.147,83.91,258.944,0.983926,-1,-1,-1
175,-1,361.595,395.16,151.755,466.64,0.976899,-1,-1,-1
175,-1,1336.27,522.159,66.02,161.883,0.889128,-1,-1,-1
175,-1,506.902,392.011,113.896,307.8,0.801206,-1,-1,-1
175,-1,1.1014,470.425,92.5568,277.543,0.788117,-1,-1,-1
176,-1,936.749,3.28833,376.581,1040.47,0.999513,-1,-1,-1
176,-1,536.56,138.575,351.029,916.835,0.992829,-1,-1,-1
176,-1,364.37,403.535,148.547,391.562,0.989452,-1,-1,-1
176,-1,1373.56,425.779,112.61,261.234,0.986115,-1,-1,-1
176,-1,7.98691,473.024,97.3021,263.778,0.981857,-1,-1,-1
176,-1,1556.47,371.963,98,317.496,0.971175,-1,-1,-1
176,-1,1339.23,516.349,57.27,189.571,0.870563,-1,-1,-1
177,-1,933.291,6.68866,376.509,1054.59,0.99952,-1,-1,-1
177,-1,515.478,127.784,374.895,934.466,0.996809,-1,-1,-1
177,-1,366.372,429.582,140.777,385.624,0.989551,-1,-1,-1
177,-1,1561.34,381.253,91.17,301.682,0.987903,-1,-1,-1
177,-1,15.5657,495.19,83.8017,257.023,0.987248,-1,-1,-1
177,-1,1372.68,427.635,121.23,263.141,0.986439,-1,-1,-1
177,-1,1321.89,527.23,65.95,160.192,0.879227,-1,-1,-1
178,-1,933.533,10.4448,357.427,1058.6,0.999329,-1,-1,-1
178,-1,499.54,128.41,375.031,928.43,0.997009,-1,-1,-1
178,-1,1546.79,360.668,111.53,321.949,0.993358,-1,-1,-1
178,-1,379.562,423.98,119.162,386.225,0.98988,-1,-1,-1
178,-1,1390.7,419.953,88.82,264.958,0.984571,-1,-1,-1
178,-1,18.7162,492.097,97.0428,271.634,0.981471,-1,-1,-1
178,-1,1328.17,511.97,70.61,172.612,0.910679,-1,-1,-1
178,-1,1252.09,338.683,103.66,157.656,0.617602,-1,-1,-1
179,-1,898.52,0,402.81,1069.64,0.998152,-1,-1,-1
179,-1,467.439,163.543,410.003,889.597,0.997427,-1,-1,-1
179,-1,1548.78,381.917,123.37,298.621,0.994963,-1,-1,-1
179,-1,375.107,401.644,111.978,391.616,0.991164,-1,-1,-1
179,-1,0,495.975,113.208,268.494,0.987308,-1,-1,-1
179,-1,1397.68,420.239,84.42,275.943,0.980295,-1,-1,-1
179,-1,1336.33,511.43,58.87,190.816,0.830763,-1,-1,-1
180,-1,870.957,0.824158,400.123,1064.64,0.998722,-1,-1,-1
180,-1,1558.49,372.129,116.54,300.474,0.994559,-1,-1,-1
180,-1,431.267,123.089,395.079,935.731,0.99389,-1,-1,-1
180,-1,1411.73,417.921,68.31,257.628,0.982154,-1,-1,-1
180,-1,1.89697,496.653,72.3326,353.451,0.971058,-1,-1,-1
180,-1,390.332,407.87,103.849,408.994,0.940412,-1,-1,-1
180,-1,1337.95,517.912,57.73,174.424,0.813154,-1,-1,-1
180,-1,44.4706,485.829,73.3224,331.708,0.61157,-1,-1,-1
181,-1,869.852,0,382.138,1035.46,0.998989,-1,-1,-1
181,-1,347.737,147.607,503.02,904.123,0.995678,-1,-1,-1
181,-1,1549.59,375.296,120.78,301.581,0.995583,-1,-1,-1
181,-1,1399.54,433.665,77.12,268.514,0.991198,-1,-1,-1
181,-1,0.677288,399.185,97.8648,593.617,0.949411,-1,-1,-1
181,-1,698.685,299.004,133.861,497.433,0.921204,-1,-1,-1
181,-1,1330.78,498.449,68.36,192.351,0.919081,-1,-1,-1
182,-1,874.716,0,379.114,1039.55,0.997837,-1,-1,-1
182,-1,1576.91,391.965,97.64,270.065,0.994905,-1,-1,-1
182,-1,357.501,127.792,469.145,920.348,0.994471,-1,-1,-1
182,-1,1397.9,418.804,83.07,281.832,0.982359,-1,-1,-1
182,-1,723.199,314.385,103.972,530.468,0.959305,-1,-1,-1
182,-1,0,183.157,118.216,879.553,0.936938,-1,-1,-1
182,-1,1330.82,504.107,68.57,183.195,0.900502,-1,-1,-1
183,-1,853.225,0,386.075,1048.02,0.998269,-1,-1,-1
183,-1,339.058,136.263,464.818,925.127,0.997309,-1,-1,-1
183,-1,1584.11,403.142,89.41,262.576,0.996099,-1,-1,-1
183,-1,0,109.591,155.61,927.929,0.988185,-1,-1,-1
183,-1,1417.56,430.255,52.64,245.455,0.983402,-1,-1,-1
183,-1,1339.37,508.597,64.26,187.201,0.853775,-1,-1,-1
183,-1,754.585,356.347,97.197,492.273,0.707705,-1,-1,-1
183,-1,1364.1,446.64,84.78,249.519,0.659632,-1,-1,-1
184,-1,281.017,111.189,470.772,963.141,0.997557,-1,-1,-1
184,-1,830.842,0,384.348,1042.93,0.997226,-1,-1,-1
184,-1,0,139.523,164.727,916.137,0.994356,-1,-1,-1
184,-1,1573.95,385.48,102.09,287.665,0.988077,-1,-1,-1
184,-1,722.824,317.594,132.909,538.383,0.985765,-1,-1,-1
184,-1,1399.64,420.618,84.51,284.615,0.979769,-1,-1,-1
184,-1,1348.49,495.63,77.52,190.334,0.893949,-1,-1,-1
184,-1,871.676,22.09,209.704,134.252,0.507145,-1,-1,-1
185,-1,0,173.782,176.43,856.918,0.997126,-1,-1,-1
185,-1,1584.28,393.071,105.18,281.746,0.99629,-1,-1,-1
185,-1,791.722,0,476.068,945.395,0.995166,-1,-1,-1
185,-1,247.337,135.715,564.296,943.285,0.995059,-1,-1,-1
185,-1,718.683,289.491,151.811,547.019,0.993753,-1,-1,-1
185,-1,1400.77,421.135,84.73,284.724,0.976761,-1,-1,-1
185,-1,1344.14,498.415,61.98,178.947,0.922523,-1,-1,-1
186,-1,785.151,0,441.679,1052.2,0.997177,-1,-1,-1
186,-1,258.877,106.064,441.139,972.936,0.996847,-1,-1,-1
186,-1,1580.74,380.408,113.42,299.055,0.996584,-1,-1,-1
186,-1,11.9302,177.867,190.042,831.083,0.993843,-1,-1,-1
186,-1,629.901,413.252,140.632,437.589,0.989739,-1,-1,-1
186,-1,746.975,270.541,111.668,565.67,0.986782,-1,-1,-1
186,-1,1401.23,436.188,91.85,269.666,0.975858,-1,-1,-1
186,-1,1344.87,497.665,62.44,198.526,0.956781,-1,-1,-1
186,-1,1386.62,489.345,52.11,187.679,0.517355,-1,-1,-1
187,-1,1583.36,379.546,111.3,297.538,0.996088,-1,-1,-1
187,-1,747.919,0,478.351,967.119,0.993723,-1,-1,-1
187,-1,224.468,105.104,415.473,973.896,0.99361,-1,-1,-1
187,-1,15.586,179.601,227.932,842.839,0.992593,-1,-1,-1
187,-1,663.342,425.54,122.525,421.7,0.989116,-1,-1,-1
187,-1,1396.23,432.643,91.38,257.632,0.967388,-1,-1,-1
187,-1,1355.4,489.465,47.56,192.402,0.946539,-1,-1,-1
187,-1,1467.82,450.471,46.05,210.7,0.885635,-1,-1,-1
187,-1,769.565,328.376,134.425,517.675,0.523564,-1,-1,-1
188,-1,748.334,0,451.786,972.022,0.995839,-1,-1,-1
188,-1,1606.75,377.063,102.12,310.424,0.995785,-1,-1,-1
188,-1,37.473,155.108,182.301,813.221,0.989544,-1,-1,-1
188,-1,208.121,124.526,398.094,911.154,0.989395,-1,-1,-1
188,-1,671.015,409.862,125.761,413.569,0.984353,-1,-1,-1
188,-1,1396.71,431.686,96.28,265.564,0.965467,-1,-1,-1
188,-1,550.401,364.81,109.769,411.125,0.956018,-1,-1,-1
188,-1,1371.48,488.465,47.96,198.006,0.914941,-1,-1,-1
188,-1,1472.17,442.093,45.03,228.698,0.596852,-1,-1,-1
189,-1,1578.87,379.37,136.65,308.58,0.994991,-1,-1,-1
189,-1,772.585,0,408.575,1029.03,0.993503,-1,-1,-1
189,-1,692.501,429.643,121.539,409.901,0.990745,-1,-1,-1
189,-1,179.208,113.937,393.138,917.043,0.989313,-1,-1,-1
189,-1,525.502,362.068,149.501,448.73,0.988519,-1,-1,-1
189,-1,56.704,205.987,146.309,708.382,0.975093,-1,-1,-1
189,-1,1398.99,436.218,93.59,263.083,0.964414,-1,-1,-1
189,-1,1365.26,482.312,61.76,215.926,0.901825,-1,-1,-1
189,-1,2.7077,184.549,89.6292,543.305,0.896916,-1,-1,-1
189,-1,1474.16,434.703,47.48,232.726,0.539982,-1,-1,-1
190,-1,1597.23,384.134,120.98,263.183,0.995953,-1,-1,-1
190,-1,741.656,0,398.314,1069.65,0.994769,-1,-1,-1
190,-1,128.548,90.0086,420.067,934.651,0.991811,-1,-1,-1
190,-1,522.195,358.402,164.956,452.559,0.991633,-1,-1,-1
190,-1,703.587,376.832,107.098,457.237,0.988327,-1,-1,-1
190,-1,1398.17,425.402,94.27,269.517,0.973048,-1,-1,-1
190,-1,1365.2,482.419,70.15,221.134,0.904737,-1,-1,-1
190,-1,83.4666,215.198,145.201,555.829,0.888742,-1,-1,-1
190,-1,0,254.239,107.747,392.244,0.834428,-1,-1,-1
191,-1,719.923,0,439.847,1079,0.995391,-1,-1,-1
191,-1,1604.72,397.84,109.14,265.16,0.994954,-1,-1,-1
191,-1,7.86493,111.519,532.186,938.691,0.992778,-1,-1,-1
191,-1,3.31175,222.695,136.498,776.238,0.992275,-1,-1,-1
191,-1,519.465,375.51,193.591,421.912,0.991764,-1,-1,-1
191,-1,1379.44,447.287,135.73,240.187,0.977885,-1,-1,-1
191,-1,494.046,374.798,91.365,438.81,0.889588,-1,-1,-1
191,-1,701.677,323.108,91.076,523.118,0.703937,-1,-1,-1
191,-1,1349.18,469.935,48.78,230.592,0.571336,-1,-1,-1
192,-1,708.092,0,415.318,1076.19,0.997558,-1,-1,-1
192,-1,21.1977,122.198,440.568,944.002,0.993349,-1,-1,-1
192,-1,527.738,387.335,173.75,417.78,0.989225,-1,-1,-1
192,-1,0,241.22,149.809,772.52,0.98743,-1,-1,-1
192,-1,1599.22,395.584,114.87,282.858,0.985498,-1,-1,-1
192,-1,1382.18,444.416,131.8,245.155,0.976997,-1,-1,-1
192,-1,1477.74,434.259,41.07,242.719,0.543224,-1,-1,-1
193,-1,700.271,0,385.739,1063,0.995475,-1,-1,-1
193,-1,11.0729,80.6729,451.041,954.307,0.993982,-1,-1,-1
193,-1,1614.55,386.111,84.92,269.362,0.988447,-1,-1,-1
193,-1,487.885,379.207,183.461,442.035,0.988267,-1,-1,-1
193,-1,1372.74,454.02,145.05,248.793,0.976767,-1,-1,-1
193,-1,1493.04,428.716,57.54,240.686,0.828952,-1,-1,-1
193,-1,33.2527,251.106,125.151,511.714,0.818546,-1,-1,-1
194,-1,0,39.0582,433.823,1010.74,0.995317,-1,-1,-1
194,-1,659.313,20.2949,393.597,1038,0.995108,-1,-1,-1
194,-1,1614.37,383.863,91.83,283.912,0.989655,-1,-1,-1
194,-1,504.249,379.027,174.098,429.241,0.987832,-1,-1,-1
194,-1,1397.59,421.161,91.33,276.526,0.97095,-1,-1,-1
194,-1,1492.54,431.272,56.3,233.672,0.82225,-1,-1,-1
194,-1,1379.84,456.191,50.48,259.624,0.759343,-1,-1,-1
195,-1,0.490021,94.8754,423.962,947.265,0.998013,-1,-1,-1
195,-1,622.65,0,455.93,1065.5,0.996388,-1,-1,-1
195,-1,1618.7,389.719,89.18,286.077,0.989199,-1,-1,-1
195,-1,507.374,380.786,143.392,447.796,0.983833,-1,-1,-1
195,-1,1396.82,423.279,92.25,272.679,0.975606,-1,-1,-1
195,-1,1494.56,433.262,54.03,228.627,0.812025,-1,-1,-1
195,-1,587.476,360.163,104.343,406.11,0.638754,-1,-1,-1
195,-1,1373.82,446.907,60.99,235.644,0.617143,-1,-1,-1
196,-1,12.8883,114.205,398.227,963.535,0.995006,-1,-1,-1
196,-1,604.833,26.059,432.787,1034.31,0.993304,-1,-1,-1
196,-1,1623.48,409.775,77.78,247.868,0.991962,-1,-1,-1
196,-1,496.58,374.804,146.649,432.601,0.987946,-1,-1,-1
196,-1,1399.58,437.156,115.67,270.398,0.981159,-1,-1,-1
196,-1,243.929,199.377,208.505,621.113,0.940546,-1,-1,-1
196,-1,1519.98,428.316,48.38,235.529,0.850527,-1,-1,-1
196,-1,1372.45,419.681,70.26,271.245,0.833459,-1,-1,-1
196,-1,1490.3,417.762,49.26,261.202,0.742119,-1,-1,-1
196,-1,861.38,337.044,210.85,478.383,0.667815,-1,-1,-1
196,-1,586.811,361.295,88.739,392.504,0.652583,-1,-1,-1
197,-1,553.571,0,513.179,1054.28,0.997378,-1,-1,-1
197,-1,276.798,202.841,226.083,784.576,0.992333,-1,-1,-1
197,-1,1620.54,399.034,92.37,260.983,0.984294,-1,-1,-1
197,-1,0,59.1583,370.633,985.362,0.982289,-1,-1,-1
197,-1,1399.61,415.987,93.58,290.412,0.979695,-1,-1,-1
197,-1,488.216,384.832,160.31,456.417,0.969954,-1,-1,-1
197,-1,1507.84,426.216,48.6,237.893,0.914147,-1,-1,-1
197,-1,893.551,326.872,165.939,487.012,0.762205,-1,-1,-1
197,-1,1452.31,453.234,71.17,218.441,0.714231,-1,-1,-1
198,-1,482.048,0,559.142,1072.81,0.995667,-1,-1,-1
198,-1,246.988,178.721,325.348,854.729,0.991132,-1,-1,-1
198,-1,1394.88,428.008,129.59,263.298,0.991095,-1,-1,-1
198,-1,1622.35,379.269,91.12,269.486,0.989948,-1,-1,-1
198,-1,0,65.9593,322.253,993.241,0.989231,-1,-1,-1
198,-1,896.633,280.587,160.657,548.125,0.966228,-1,-1,-1
198,-1,1511.46,418.526,51.67,251.193,0.912651,-1,-1,-1
198,-1,494.804,343.823,126.149,520.426,0.523132,-1,-1,-1
199,-1,447.448,0,614.562,1079,0.99702,-1,-1,-1
199,-1,1405.58,429.44,97.92,291.021,0.990532,-1,-1,-1
199,-1,1641.49,400.815,69.99,256.648,0.989251,-1,-1,-1
199,-1,266.754,189.86,280.022,821.01,0.987119,-1,-1,-1
199,-1,8.53476,107.6,265.516,944.09,0.977772,-1,-1,-1
199,-1,1498.75,404.446,81.93,266.63,0.943677,-1,-1,-1
199,-1,853.432,266.359,235.928,532.04,0.887809,-1,-1,-1
199,-1,163.764,280.992,134.097,463.375,0.842579,-1,-1,-1
200,-1,469.196,0,595.984,1076.84,0.995258,-1,-1,-1
200,-1,300.209,167.053,245.36,848.127,0.993258,-1,-1,-1
200,-1,170.961,271.125,163.506,685.57,0.992952,-1,-1,-1
200,-1,1638.54,383.134,82.12,290.78,0.991217,-1,-1,-1
200,-1,1408.95,429.541,98.66,277.565,0.988195,-1,-1,-1
200,-1,0,103.67,188.243,919.14,0.972326,-1,-1,-1
200,-1,1513.15,419.515,67.13,253.761,0.948906,-1,-1,-1
200,-1,866.581,299.38,202.079,512.185,0.705622,-1,-1,-1
200,-1,1009.32,439.939,87.25,355.242,0.70527,-1,-1,-1
200,-1,1469.3,425.377,60.23,248.511,0.559449,-1,-1,-1
201,-1,379.142,8.70581,650.338,1070.29,0.996492,-1,-1,-1
201,-1,206.377,248.33,172.561,721.257,0.993396,-1,-1,-1
201,-1,1633.63,383.01,100.96,289.039,0.991226,-1,-1,-1
201,-1,321.951,215.401,213.229,795.319,0.990864,-1,-1,-1
201,-1,1401.25,454.273,125.58,254.079,0.973356,-1,-1,-1
201,-1,1507.68,405.692,84.06,255.218,0.960308,-1,-1,-1
201,-1,0,88.7909,177.346,883.372,0.916547,-1,-1,-1
201,-1,929.929,336.934,165.571,458.949,0.850112,-1,-1,-1
201,-1,1400.23,422.77,38.86,267.681,0.848733,-1,-1,-1
202,-1,364.859,180.035,160.845,883.195,0.995454,-1,-1,-1
202,-1,222.454,236.396,155.273,748.81,0.994092,-1,-1,-1
202,-1,1647.56,401.067,94.02,251.438,0.990976,-1,-1,-1
202,-1,398.818,0,611.422,1079,0.989962,-1,-1,-1
202,-1,1399.15,417.844,111.61,305.75,0.984239,-1,-1,-1
202,-1,1502.82,413.496,95.98,258.234,0.976818,-1,-1,-1
202,-1,954.814,338.694,151.366,474.002,0.967029,-1,-1,-1
202,-1,2.15528,126.768,162.243,883.182,0.955548,-1,-1,-1
202,-1,775.11,298.793,248.75,520.388,0.686549,-1,-1,-1
202,-1,1470.31,422.58,64.54,256.157,0.650631,-1,-1,-1
203,-1,222.791,218.891,167.378,725.853,0.991426,-1,-1,-1
203,-1,392.097,0,587.478,1079,0.989271,-1,-1,-1
203,-1,1633.64,388.397,102.19,260.881,0.988318,-1,-1,-1
203,-1,962.218,335.363,153.082,473.687,0.986328,-1,-1,-1
203,-1,1394.09,427.007,111.44,280.323,0.985328,-1,-1,-1
203,-1,1504.16,410.181,103.7,271.415,0.965874,-1,-1,-1
203,-1,359.662,203.429,181.409,807.801,0.950563,-1,-1,-1
203,-1,0,165.515,148.901,762.052,0.661128,-1,-1,-1
203,-1,754.339,255.482,270.871,597.182,0.549351,-1,-1,-1
204,-1,237.895,219.176,198.307,720.284,0.99659,-1,-1,-1
204,-1,334.906,0,621.917,1079,0.994135,-1,-1,-1
204,-1,1640.99,391.823,91.92,250.408,0.992638,-1,-1,-1
204,-1,1414.92,418.324,96.82,303.572,0.991147,-1,-1,-1
204,-1,977.953,368.538,150.287,411.959,0.969384,-1,-1,-1
204,-1,1527.57,428.895,63.37,227.714,0.937809,-1,-1,-1
204,-1,792.51,330.271,206.893,459.017,0.811536,-1,-1,-1
205,-1,237.691,233.281,169.15,709.241,0.997477,-1,-1,-1
205,-1,1647.14,400.879,91.49,247.803,0.995191,-1,-1,-1
205,-1,306.25,0,665.828,1063.92,0.993632,-1,-1,-1
205,-1,1409.97,434.394,90.85,257.694,0.991549,-1,-1,-1
205,-1,1004.87,353.466,132.2,439.712,0.978402,-1,-1,-1
205,-1,1549.44,428.473,59.21,243.487,0.935017,-1,-1,-1
205,-1,806.756,445.868,214.284,343.639,0.915355,-1,-1,-1
206,-1,334.267,0,593.02,1068.09,0.996188,-1,-1,-1
206,-1,1647.54,394.768,93.17,266.242,0.994331,-1,-1,-1
206,-1,855.974,472.076,150.846,338.066,0.991313,-1,-1,-1
206,-1,1422.13,437.689,97.67,277.681,0.991274,-1,-1,-1
206,-1,1028.66,355.815,123.14,443.831,0.985869,-1,-1,-1
206,-1,1547.35,440.499,71.99,207.247,0.954208,-1,-1,-1
206,-1,254.721,137.698,189.066,919.032,0.736846,-1,-1,-1
207,-1,266.375,0,603.995,1078.59,0.996257,-1,-1,-1
207,-1,1423.94,438.101,96.24,281.708,0.990234,-1,-1,-1
207,-1,879.379,438.157,150.541,373.752,0.987082,-1,-1,-1
207,-1,1650.97,404.359,92.27,249.42,0.986882,-1,-1,-1
207,-1,1034.56,318.534,120.79,482.891,0.982321,-1,-1,-1
207,-1,1537.95,410.83,76.68,243.719,0.969869,-1,-1,-1
207,-1,0,297.447,105.134,757.513,0.933429,-1,-1,-1
207,-1,637.465,255.469,189.187,584.601,0.50622,-1,-1,-1
208,-1,206.24,0,630.366,1057.13,0.998939,-1,-1,-1
208,-1,1653.4,403.567,94.48,260.04,0.996649,-1,-1,-1
208,-1,1403.21,448.39,139.26,256.722,0.992238,-1,-1,-1
208,-1,1032.36,314.903,133.88,488.877,0.990454,-1,-1,-1
208,-1,1522.73,428.92,110.65,239.499,0.9745,-1,-1,-1
208,-1,0,291.867,145.194,753.463,0.97269,-1,-1,-1
208,-1,891.177,431.056,136.583,383.227,0.960837,-1,-1,-1
208,-1,602.723,291.196,228.289,554.67,0.857261,-1,-1,-1
209,-1,153.646,0,634.399,1079,0.997179,-1,-1,-1
209,-1,1041.66,347.939,145.83,461.183,0.996581,-1,-1,-1
209,-1,1663.57,401.782,96.51,251.482,0.993861,-1,-1,-1
209,-1,1426.6,439.784,102.2,255.721,0.991605,-1,-1,-1
209,-1,0,256.398,189.399,783.142,0.991158,-1,-1,-1
209,-1,653.482,395.13,157.57,413.788,0.988516,-1,-1,-1
209,-1,1528.89,421.64,116.37,233.78,0.981792,-1,-1,-1
209,-1,911.424,432.572,121.686,359.104,0.979715,-1,-1,-1
209,-1,550.9,309.266,194.935,553.267,0.742698,-1,-1,-1
210,-1,1052.04,326.896,144.47,476.987,0.99722,-1,-1,-1
210,-1,107.793,23.7146,630.233,1055.29,0.996493,-1,-1,-1
210,-1,922.015,451.476,116.815,347.622,0.993713,-1,-1,-1
210,-1,8.25205,260.533,170.943,772.567,0.993495,-1,-1,-1
210,-1,1426.96,430.066,118.98,279.297,0.992306,-1,-1,-1
210,-1,1669.73,393.412,90.49,262.603,0.992017,-1,-1,-1
210,-1,675.063,385.789,160.852,435.926,0.988096,-1,-1,-1
210,-1,1534.41,412.42,113.34,253.323,0.965581,-1,-1,-1
210,-1,452.673,307.561,263.279,610.188,0.911612,-1,-1,-1
211,-1,1064.37,338.436,152.08,436.629,0.998666,-1,-1,-1
211,-1,1424.18,433.221,121.4,282.273,0.993742,-1,-1,-1
211,-1,1682.1,412.281,76.41,242.695,0.992144,-1,-1,-1
211,-1,935.8,413.814,112.42,397.325,0.989142,-1,-1,-1
211,-1,32.795,0,605.874,1079,0.988167,-1,-1,-1
211,-1,0,216.157,162.792,813.693,0.986532,-1,-1,-1
211,-1,683.831,376.122,153.499,469.901,0.986363,-1,-1,-1
211,-1,446.221,219.942,278.96,736.936,0.985408,-1,-1,-1
211,-1,1558.21,416.139,82.76,240.951,0.981381,-1,-1,-1
212,-1,1067.62,316.13,149.5,486.543,0.998032,-1,-1,-1
212,-1,10.6537,35.7407,610.992,1043.26,0.997573,-1,-1,-1
212,-1,946.465,401.82,114.425,389.472,0.995537,-1,-1,-1
212,-1,1425.36,450.807,112.91,260.371,0.994102,-1,-1,-1
212,-1,1679.04,397.797,81.38,252.924,0.992002,-1,-1,-1
212,-1,681.86,344.724,158.548,527.061,0.990552,-1,-1,-1
212,-1,1564.56,408.245,79.76,259.425,0.980475,-1,-1,-1
212,-1,514.106,258.543,202.256,646.532,0.971531,-1,-1,-1
212,-1,8.28672,303.446,104.025,400.577,0.672818,-1,-1,-1
213,-1,1085.72,342.506,134.94,448.157,0.998417,-1,-1,-1
213,-1,1.62927,9.1817,640.681,1063.89,0.993963,-1,-1,-1
213,-1,1427.52,451.732,115.78,250.356,0.992977,-1,-1,-1
213,-1,1679.62,391.451,83.59,252.198,0.991945,-1,-1,-1
213,-1,964.557,407.485,94.393,364.051,0.989762,-1,-1,-1
213,-1,714.525,369.346,125.345,480.584,0.987435,-1,-1,-1
213,-1,558.592,266.949,148.426,664.159,0.977076,-1,-1,-1
213,-1,1569.88,420.364,69.51,231.956,0.972889,-1,-1,-1
213,-1,7.05175,317.844,63.9553,213.847,0.597084,-1,-1,-1
213,-1,358.51,352.173,233.55,525.539,0.515548,-1,-1,-1
214,-1,1068.45,338.675,207.37,448.912,0.998325,-1,-1,-1
214,-1,23.5535,0.261719,526.822,1039.78,0.997381,-1,-1,-1
214,-1,1682.29,386.507,82.77,278.123,0.996224,-1,-1,-1
214,-1,720.911,346.005,109.1,519.931,0.987435,-1,-1,-1
214,-1,1428.93,423.252,125.33,282.765,0.986627,-1,-1,-1
214,-1,567.729,265.901,163.415,632.337,0.985831,-1,-1,-1
214,-1,974.893,406.809,99.317,410.044,0.980335,-1,-1,-1
214,-1,1578.88,429.794,82.51,203.131,0.963277,-1,-1,-1
214,-1,312.76,305.543,275.405,584.694,0.925337,-1,-1,-1
214,-1,1412.21,438.838,52.65,260.641,0.53753,-1,-1,-1
215,-1,28.5269,113.374,606.563,859.191,0.997533,-1,-1,-1
215,-1,1104.42,347.745,164.13,417.116,0.997159,-1,-1,-1
215,-1,1685.04,386.272,83.06,274.065,0.99571,-1,-1,-1
215,-1,1434.07,433.273,122.68,272.384,0.990488,-1,-1,-1
215,-1,726.832,356.394,125.743,520.846,0.98978,-1,-1,-1
215,-1,1579.97,424.614,77.42,231.578,0.984767,-1,-1,-1
215,-1,962.226,397.697,125.474,401.646,0.981033,-1,-1,-1
215,-1,575.86,236.764,208.338,663.827,0.976612,-1,-1,-1
215,-1,359.709,307.028,249.819,601.199,0.958503,-1,-1,-1
215,-1,1412.91,439.183,50.22,247.424,0.668513,-1,-1,-1
215,-1,1239.85,344.361,119.63,215.418,0.527922,-1,-1,-1
216,-1,0.918091,60.981,519.717,984.429,0.99888,-1,-1,-1
216,-1,1103.37,349.087,176.27,408.764,0.998112,-1,-1,-1
216,-1,978.101,407.386,115.819,370.746,0.99754,-1,-1,-1
216,-1,1689.45,395.725,78.08,264.105,0.991341,-1,-1,-1
216,-1,1421.62,436.676,135.55,253.076,0.989646,-1,-1,-1
216,-1,729.734,341.881,127.773,490.856,0.98833,-1,-1,-1
216,-1,447.611,238.329,164.499,655.032,0.981615,-1,-1,-1
216,-1,1595.83,433.724,76.44,215.814,0.979429,-1,-1,-1
216,-1,615.105,293.536,190.238,593.54,0.972241,-1,-1,-1
217,-1,0,68.0065,566.344,1010.99,0.997628,-1,-1,-1
217,-1,1107.6,333.496,174,437.869,0.997559,-1,-1,-1
217,-1,998.89,413.55,106.9,339.583,0.997437,-1,-1,-1
217,-1,1432.69,423.622,123.98,269.775,0.994507,-1,-1,-1
217,-1,440.966,281.754,178.253,606.852,0.993685,-1,-1,-1
217,-1,1683.55,404.92,97.79,252.281,0.991404,-1,-1,-1
217,-1,766.099,371.763,95.968,424.04,0.988207,-1,-1,-1
217,-1,591.115,234.851,218.035,680.136,0.983954,-1,-1,-1
217,-1,1589.7,420.88,82.65,240.501,0.981959,-1,-1,-1
218,-1,5.18373,0,462.044,1079,0.997956,-1,-1,-1
218,-1,984.137,405.057,130.863,359.943,0.995549,-1,-1,-1
218,-1,1115.52,350.292,140.31,425.058,0.994367,-1,-1,-1
218,-1,1439.47,435.202,117.6,270.036,0.993819,-1,-1,-1
218,-1,1695.45,398.132,82.89,252.221,0.992575,-1,-1,-1
218,-1,470.138,282.447,166.82,632.182,0.988114,-1,-1,-1
218,-1,639.594,248.014,166.376,641.243,0.984422,-1,-1,-1
218,-1,1602.07,430.299,79.28,223.945,0.984295,-1,-1,-1
218,-1,770.302,363.232,103.897,420.233,0.975194,-1,-1,-1
219,-1,4.46127,0,472.183,1079,0.999529,-1,-1,-1
219,-1,1127.48,325.296,153.68,455.673,0.997064,-1,-1,-1
219,-1,687.132,253.328,151.572,640.427,0.995385,-1,-1,-1
219,-1,1694.57,401.633,92.51,259.551,0.99447,-1,-1,-1
219,-1,987.62,409.842,137.33,354.736,0.99436,-1,-1,-1
219,-1,489.497,279.944,146.374,587.443,0.992378,-1,-1,-1
219,-1,1442.26,439.477,129.85,267.16,0.991511,-1,-1,-1
219,-1,1613.42,441.096,63.8,221.052,0.985628,-1,-1,-1
219,-1,771.274,336.644,117.411,485.126,0.947459,-1,-1,-1
219,-1,1239.62,356.314,111.93,284.3,0.721454,-1,-1,-1
220,-1,11.9289,46.1854,459.236,1014.18,0.999151,-1,-1,-1
220,-1,505.114,265.921,159.611,616.171,0.996776,-1,-1,-1
220,-1,1005.75,397.268,141.12,378.369,0.996505,-1,-1,-1
220,-1,675.751,246.686,160.449,638.314,0.996016,-1,-1,-1
220,-1,1140.83,337.275,138.32,437.532,0.995595,-1,-1,-1
220,-1,1447.8,431.345,124.75,278.226,0.991816,-1,-1,-1
220,-1,1699.58,399.977,76.12,251.149,0.991724,-1,-1,-1
220,-1,1609.37,422.688,65.19,231.842,0.975314,-1,-1,-1
220,-1,791.914,336.136,98.359,474.386,0.887133,-1,-1,-1
220,-1,1240.03,348.798,106.92,311.067,0.778744,-1,-1,-1
221,-1,25.9037,122.949,502.817,917.601,0.998315,-1,-1,-1
221,-1,1027.89,401.937,116.05,334.915,0.996586,-1,-1,-1
221,-1,533.378,312.945,152.613,550.417,0.99475,-1,-1,-1
221,-1,693.443,270.793,181.633,595.834,0.994103,-1,-1,-1
221,-1,1150.05,338.906,147.31,427.777,0.99239,-1,-1,-1
221,-1,1456.98,431.303,114.93,289.183,0.990224,-1,-1,-1
221,-1,1697.16,406.331,92.51,241.318,0.989013,-1,-1,-1
221,-1,1615.43,452.163,64.82,185.865,0.982424,-1,-1,-1
221,-1,805.755,391.606,107.463,427.88,0.936931,-1,-1,-1
221,-1,283.437,273.567,103.199,140.214,0.928201,-1,-1,-1
221,-1,1248.37,349.315,93.59,330.729,0.688866,-1,-1,-1
221,-1,1426.5,449.524,69.9,250.484,0.629812,-1,-1,-1
222,-1,712.65,226.519,195.926,654.382,0.997983,-1,-1,-1
222,-1,498.792,288.882,195.177,576.822,0.995738,-1,-1,-1
222,-1,1025.85,373.312,117.42,388.503,0.995414,-1,-1,-1
222,-1,1158.06,334.753,134.22,468.067,0.994799,-1,-1,-1
222,-1,1440.53,428.671,121.25,298.695,0.993603,-1,-1,-1
222,-1,108.239,267.183,428.018,725.679,0.992953,-1,-1,-1
222,-1,1617.2,451.872,62.56,192.197,0.984843,-1,-1,-1
222,-1,1696.62,396.087,84.58,233.786,0.983416,-1,-1,-1
222,-1,814.845,370.269,124.775,440.295,0.769116,-1,-1,-1
222,-1,1275.28,348.729,76.22,302.376,0.642093,-1,-1,-1
223,-1,718.341,246.741,181.504,636.705,0.997346,-1,-1,-1
223,-1,1161.35,345.094,143.06,435.841,0.99673,-1,-1,-1
223,-1,101.259,310.105,414.542,651.382,0.994272,-1,-1,-1
223,-1,1458.02,436.186,120.52,292.337,0.994219,-1,-1,-1
223,-1,1031.49,385.953,120.33,383.942,0.99084,-1,-1,-1
223,-1,536.722,315.705,160.7,572.539,0.986225,-1,-1,-1
223,-1,1618.89,447.439,78.67,209.906,0.982468,-1,-1,-1
223,-1,1704.02,394.381,76.82,251.111,0.972694,-1,-1,-1
223,-1,187.232,304.57,126.25,177.295,0.856459,-1,-1,-1
223,-1,827.233,388.352,114.874,418.017,0.630571,-1,-1,-1
223,-1,1432.73,437.885,62.85,241.397,0.621648,-1,-1,-1
224,-1,713.953,232.834,237.273,644.349,0.997542,-1,-1,-1
224,-1,1170.77,348.788,142.87,440.848,0.996035,-1,-1,-1
224,-1,564.219,302.93,152.551,546.574,0.994473,-1,-1,-1
224,-1,1463.45,432.869,112.57,274.622,0.990891,-1,-1,-1
224,-1,119.412,308.136,427.794,656.51,0.983337,-1,-1,-1
224,-1,1048.37,391.775,105.98,390.312,0.982206,-1,-1,-1
224,-1,1635.55,430.209,80.85,216.615,0.981838,-1,-1,-1
224,-1,1706.39,381.216,80.72,277,0.967908,-1,-1,-1
224,-1,1441.15,439.829,44.88,239.784,0.561591,-1,-1,-1
225,-1,744.076,281.817,261.844,572.039,0.996325,-1,-1,-1
225,-1,1063.03,394.469,109.13,351.21,0.994228,-1,-1,-1
225,-1,551.088,306.878,177.982,551.599,0.993172,-1,-1,-1
225,-1,1187.24,356.047,118.25,417.058,0.991391,-1,-1,-1
225,-1,142.612,328.693,412.479,640.699,0.990131,-1,-1,-1
225,-1,1459.21,445.054,118.23,257.801,0.98496,-1,-1,-1
225,-1,1640.95,445.267,86.86,190.949,0.982472,-1,-1,-1
225,-1,1726.62,398.536,63.43,244.914,0.968435,-1,-1,-1
225,-1,1267.7,360.12,68.93,390.148,0.85713,-1,-1,-1
226,-1,738.289,272.674,252.082,579.874,0.995898,-1,-1,-1
226,-1,1071.55,410.886,100.68,339.026,0.995853,-1,-1,-1
226,-1,170.993,322.295,428.882,657.364,0.995663,-1,-1,-1
226,-1,591.045,310.599,165.429,564.697,0.994385,-1,-1,-1
226,-1,1185.54,360.476,134.86,414.346,0.993314,-1,-1,-1
226,-1,1471.2,426.939,120.29,266.753,0.985126,-1,-1,-1
226,-1,1656.94,444.701,76.16,188.702,0.978993,-1,-1,-1
226,-1,1722.46,405.723,63.49,253.147,0.917018,-1,-1,-1
226,-1,14.8579,500.078,103.539,274.431,0.595434,-1,-1,-1
227,-1,761.549,257.486,218.412,636.084,0.997792,-1,-1,-1
227,-1,1057.48,392.393,129.43,361.74,0.996337,-1,-1,-1
227,-1,599.542,322.525,153.215,542.093,0.99284,-1,-1,-1
227,-1,185.591,309.912,414.145,674.416,0.992017,-1,-1,-1
227,-1,1181.7,339.759,144.62,454.409,0.99201,-1,-1,-1
227,-1,1480.71,443.112,106.84,272.485,0.985762,-1,-1,-1
227,-1,1716.04,395.748,80.26,267.741,0.972254,-1,-1,-1
227,-1,1667.18,427.865,78.32,227.204,0.970722,-1,-1,-1
228,-1,774.953,284.363,232.707,568.521,0.997352,-1,-1,-1
228,-1,1070,396.704,127.08,374.742,0.995614,-1,-1,-1
228,-1,221.078,304.857,393.64,672.197,0.994994,-1,-1,-1
228,-1,1194.25,342.171,141.01,420.175,0.994273,-1,-1,-1
228,-1,607.92,317.703,170.969,564.199,0.988831,-1,-1,-1
228,-1,1492.52,434.291,110.79,289.22,0.972852,-1,-1,-1
228,-1,1708.33,402.363,92.27,249.215,0.969806,-1,-1,-1
228,-1,1659.6,453.643,77.96,177.346,0.963304,-1,-1,-1
228,-1,14.1953,506.131,106.295,264.662,0.912152,-1,-1,-1
229,-1,806.617,280.708,211.343,571.233,0.998403,-1,-1,-1
229,-1,349.457,287.63,274.473,673.197,0.995779,-1,-1,-1
229,-1,617.205,308.081,187.953,530.69,0.99534,-1,-1,-1
229,-1,1206.7,333.432,136.52,438.125,0.995152,-1,-1,-1
229,-1,1089.09,413.931,123.32,335.539,0.994018,-1,-1,-1
229,-1,1479.63,442.834,130.63,266.541,0.968919,-1,-1,-1
229,-1,1679.2,427.531,78.42,213.716,0.965204,-1,-1,-1
229,-1,1745.03,439.95,57.79,192.488,0.895693,-1,-1,-1
229,-1,13.7247,490.42,100.6,283.203,0.787995,-1,-1,-1
229,-1,1177.4,350.464,71.09,406.038,0.655576,-1,-1,-1
229,-1,295.109,307.88,151.43,452.584,0.59843,-1,-1,-1
230,-1,787.877,247.543,208.194,618.327,0.996476,-1,-1,-1
230,-1,653.789,292.623,170.826,565.546,0.992817,-1,-1,-1
230,-1,389.899,285.665,238.667,697.995,0.99251,-1,-1,-1
230,-1,304.955,288.424,169.674,668.745,0.98853,-1,-1,-1
230,-1,1223.77,330.113,126.53,445.876,0.988401,-1,-1,-1
230,-1,1699.67,424.764,82.02,232.855,0.980535,-1,-1,-1
230,-1,1099.89,403.23,121.61,337.441,0.980472,-1,-1,-1
230,-1,1511.48,437.839,92.86,286.978,0.969384,-1,-1,-1
230,-1,9.72394,507.619,101.541,244.836,0.910061,-1,-1,-1
230,-1,1746.23,435.541,59.41,195.032,0.868011,-1,-1,-1
231,-1,817.694,254.93,200.726,624.177,0.99849,-1,-1,-1
231,-1,437.102,277.116,214.991,707.212,0.995604,-1,-1,-1
231,-1,330.323,286.056,152.729,653.024,0.989698,-1,-1,-1
231,-1,659.911,318.81,172.316,519.91,0.989037,-1,-1,-1
231,-1,1495.55,433.709,95.11,264.979,0.987458,-1,-1,-1
231,-1,1231.32,362.133,112.17,390.216,0.986142,-1,-1,-1
231,-1,1689.32,415.543,75.65,229.793,0.979251,-1,-1,-1
231,-1,1118.66,424.299,105.64,345.594,0.971596,-1,-1,-1
231,-1,1740.99,415.346,57.03,236.187,0.927365,-1,-1,-1
232,-1,846.425,281.01,180.735,579.82,0.997031,-1,-1,-1
232,-1,1242.06,351.518,122.32,410.267,0.994602,-1,-1,-1
232,-1,421.32,259.971,235.351,713.349,0.992569,-1,-1,-1
232,-1,660.309,323.329,162.089,524.318,0.989261,-1,-1,-1
232,-1,349.709,335.67,168.867,580.179,0.981057,-1,-1,-1
232,-1,1694.56,423.038,74.26,235.292,0.980802,-1,-1,-1
232,-1,1518.84,428.845,93.95,300.806,0.977093,-1,-1,-1
232,-1,1740.33,414.035,70.94,242.249,0.969628,-1,-1,-1
232,-1,1114.16,432.917,112.58,312.712,0.917565,-1,-1,-1
232,-1,1478.77,469.252,80.65,236.134,0.870613,-1,-1,-1
233,-1,858.37,246.165,153.01,603.132,0.997914,-1,-1,-1
233,-1,1243.59,332.242,124.25,458.449,0.995431,-1,-1,-1
233,-1,450.576,297.448,251.801,660.371,0.994843,-1,-1,-1
233,-1,378.577,280.992,160.899,674.833,0.990454,-1,-1,-1
233,-1,676.04,281.868,158.205,583.332,0.989667,-1,-1,-1
233,-1,1138.23,416.547,102.87,329.059,0.986218,-1,-1,-1
233,-1,1702.1,411.395,79.02,247.467,0.972251,-1,-1,-1
233,-1,1763.08,416.841,67.37,214.405,0.960266,-1,-1,-1
233,-1,1516.5,430.403,93.81,274.102,0.959778,-1,-1,-1
233,-1,100.892,498.873,92.233,249.159,0.830444,-1,-1,-1
233,-1,1472.18,489.04,83.96,213.54,0.683954,-1,-1,-1
234,-1,896.666,282.787,127.974,525.758,0.99713,-1,-1,-1
234,-1,1241.16,356.483,111.2,408.602,0.994655,-1,-1,-1
234,-1,694.164,293.71,164.234,555.349,0.994479,-1,-1,-1
234,-1,396.382,316.316,132.164,622.479,0.993968,-1,-1,-1
234,-1,485.042,324.727,226.12,605.808,0.993367,-1,-1,-1
234,-1,1138.97,417.623,109.95,324.07,0.981545,-1,-1,-1
234,-1,1739.53,411.144,72.66,236.168,0.972323,-1,-1,-1
234,-1,1506.9,429.492,104.81,273.604,0.969835,-1,-1,-1
234,-1,83.5821,460.565,106.648,296.208,0.963059,-1,-1,-1
234,-1,1699.73,413.273,73.84,246.963,0.947686,-1,-1,-1
234,-1,18.1043,477.013,98.8107,271.765,0.90725,-1,-1,-1
235,-1,1255.33,334.559,121.28,445.518,0.996387,-1,-1,-1
235,-1,884.602,300.777,151.348,553.412,0.995689,-1,-1,-1
235,-1,387.129,290.59,174.402,659.19,0.993657,-1,-1,-1
235,-1,498.27,303.509,231.421,671.74,0.993461,-1,-1,-1
235,-1,704.976,316.806,152.472,537.321,0.985703,-1,-1,-1
235,-1,1147.91,389.647,104.55,356.174,0.984851,-1,-1,-1
235,-1,1709.35,419.264,135.6,218.141,0.972329,-1,-1,-1
235,-1,1510.9,444.643,101.33,258.289,0.927971,-1,-1,-1
235,-1,74.3642,475.718,118.928,288.134,0.803301,-1,-1,-1
235,-1,19.5674,497.346,94.6406,269.483,0.701274,-1,-1,-1
236,-1,1267.12,346.535,120.1,404.668,0.996054,-1,-1,-1
236,-1,889.941,266.252,157.249,597.551,0.993512,-1,-1,-1
236,-1,417.646,309.368,196.414,668.364,0.992949,-1,-1,-1
236,-1,524.894,281.224,199.415,689.7,0.992645,-1,-1,-1
236,-1,706.386,364.108,191.529,475.763,0.991524,-1,-1,-1
236,-1,105.91,461.116,92.433,286.889,0.986282,-1,-1,-1
236,-1,1699.46,415.148,113.54,234.534,0.985241,-1,-1,-1
236,-1,1174.65,402.812,92.28,350.042,0.971634,-1,-1,-1
236,-1,1496.87,440.068,112.23,274.582,0.962829,-1,-1,-1
236,-1,23.7133,505.637,85.6967,245.592,0.93461,-1,-1,-1
237,-1,1272.1,361.398,128.12,380.76,0.996473,-1,-1,-1
237,-1,903.41,276.857,145.1,581.943,0.993654,-1,-1,-1
237,-1,1174.11,411.18,99.24,313.409,0.993585,-1,-1,-1
237,-1,696.44,360.193,205.823,467.96,0.993551,-1,-1,-1
237,-1,547.457,304.902,204.975,651.662,0.986655,-1,-1,-1
237,-1,427.921,308.675,165.97,654.492,0.98399,-1,-1,-1
237,-1,1703.34,415.174,114.62,237.829,0.983988,-1,-1,-1
237,-1,105.193,501.695,82.177,250.462,0.972161,-1,-1,-1
237,-1,23.6334,528.025,79.8446,223.998,0.970763,-1,-1,-1
237,-1,1502.84,449.869,126.92,275.336,0.968854,-1,-1,-1
237,-1,1783.21,404.166,69.62,192.998,0.906647,-1,-1,-1
237,-1,1585.89,461.353,51.43,215.898,0.592207,-1,-1,-1
238,-1,914.734,290.363,157.696,543.501,0.997191,-1,-1,-1
238,-1,1171.73,415.974,110.74,304.35,0.995381,-1,-1,-1
238,-1,1265.11,377.009,132.05,368.691,0.994653,-1,-1,-1
238,-1,415.148,315.057,232.681,633.488,0.99423,-1,-1,-1
238,-1,718.793,304.498,173.603,549.406,0.99375,-1,-1,-1
238,-1,555.805,310.865,222.923,621.986,0.990466,-1,-1,-1
238,-1,1730.31,408.126,104.42,254.075,0.987964,-1,-1,-1
238,-1,111.15,502.796,85.227,245.669,0.984543,-1,-1,-1
238,-1,1508.7,425.749,104.54,297.877,0.973449,-1,-1,-1
238,-1,22.1715,535.743,77.611,223.583,0.936896,-1,-1,-1
239,-1,1281.86,345.539,114.25,408.642,0.995929,-1,-1,-1
239,-1,919.761,351.064,172.539,500.033,0.991334,-1,-1,-1
239,-1,589.447,295.469,183.328,659.622,0.991081,-1,-1,-1
239,-1,1744.35,421.77,98.39,232.878,0.991002,-1,-1,-1
239,-1,1176.61,412.144,105.66,321.992,0.988735,-1,-1,-1
239,-1,457.845,329.268,198.44,613.583,0.988233,-1,-1,-1
239,-1,754.11,315.199,148.82,521.577,0.987163,-1,-1,-1
239,-1,1514.38,429.603,115.31,292.506,0.976512,-1,-1,-1
239,-1,115.056,490.194,79.817,286.211,0.971589,-1,-1,-1
239,-1,25.3,501.462,90.364,242.586,0.932726,-1,-1,-1
240,-1,1290.84,355.134,115.37,394.225,0.993965,-1,-1,-1
240,-1,1187.08,421.943,94.09,317.026,0.9918,-1,-1,-1
240,-1,1515.39,428.167,121.13,288.183,0.99061,-1,-1,-1
240,-1,1750.98,401.366,102.47,255.227,0.990384,-1,-1,-1
240,-1,565.161,295.093,239.098,650.772,0.988833,-1,-1,-1
240,-1,938.702,278.645,142.538,538.397,0.987594,-1,-1,-1
240,-1,743.202,313.453,171.558,534.723,0.977884,-1,-1,-1
240,-1,20.0507,522.178,87.8683,234.379,0.944106,-1,-1,-1
240,-1,101.62,489.103,99.742,282.332,0.930045,-1,-1,-1
240,-1,494.417,315.778,134.693,633.212,0.716209,-1,-1,-1
241,-1,1295.84,359.282,118.3,383.629,0.995882,-1,-1,-1
241,-1,1187.95,418.652,112.01,307.584,0.995171,-1,-1,-1
241,-1,1751.3,414.504,84.94,214.611,0.994476,-1,-1,-1
241,-1,614.06,314.481,230.777,610.099,0.994199,-1,-1,-1
241,-1,1523.37,437.357,103.99,294.669,0.993169,-1,-1,-1
241,-1,944.379,289.468,135.371,539.782,0.991973,-1,-1,-1
241,-1,753.524,310.08,173.838,525.042,0.976255,-1,-1,-1
241,-1,22.8137,524.887,82.8403,229.17,0.957147,-1,-1,-1
241,-1,510.785,307.178,178.356,614.765,0.951777,-1,-1,-1
241,-1,113.098,453.646,92.248,326.022,0.908773,-1,-1,-1
241,-1,915.765,357.455,52.957,340.925,0.634826,-1,-1,-1
242,-1,611.988,283.694,198.702,638.752,0.995632,-1,-1,-1
242,-1,1524.87,438.933,110.26,291.647,0.993349,-1,-1,-1
242,-1,530.686,319.116,149.773,594.665,0.990703,-1,-1,-1
242,-1,1294.16,373.168,116.48,382.216,0.98956,-1,-1,-1
242,-1,1766.64,413.147,82.82,234.161,0.989557,-1,-1,-1
242,-1,984.804,306.477,127.036,488.241,0.989118,-1,-1,-1
242,-1,796.145,352.577,126.349,503.874,0.980578,-1,-1,-1
242,-1,1190.07,410.508,121.08,337.106,0.970975,-1,-1,-1
242,-1,117.601,484.773,87.601,285.747,0.963494,-1,-1,-1
242,-1,20.3408,513.488,79.9232,248.881,0.951651,-1,-1,-1
242,-1,928.581,312.429,60.269,493.86,0.868999,-1,-1,-1
242,-1,958.067,326.67,70.753,443.647,0.506027,-1,-1,-1
243,-1,1293.33,345.85,116.63,410.85,0.995486,-1,-1,-1
243,-1,978.411,305.161,161.739,539.526,0.992533,-1,-1,-1
243,-1,625.62,308.836,215.993,601.693,0.989827,-1,-1,-1
243,-1,1528.35,424.212,112.87,312.118,0.98612,-1,-1,-1
243,-1,1758.84,395.606,88.63,248.706,0.985899,-1,-1,-1
243,-1,822.382,294.103,97.931,532.206,0.983289,-1,-1,-1
243,-1,539.144,318.84,149.279,608.498,0.973923,-1,-1,-1
243,-1,1191.93,400.204,136.3,332.623,0.965423,-1,-1,-1
243,-1,109.671,478.868,99.259,276.933,0.931917,-1,-1,-1
243,-1,27.3259,540.845,77.4971,220.362,0.930063,-1,-1,-1
243,-1,929.01,343.562,54.696,358.321,0.766704,-1,-1,-1
244,-1,1015.68,279.848,127.33,587.143,0.991905,-1,-1,-1
244,-1,662.499,314.463,199.107,585.483,0.989253,-1,-1,-1
244,-1,1766.53,405.522,91.22,259.703,0.985592,-1,-1,-1
244,-1,1300.88,385.746,124.87,363.73,0.984938,-1,-1,-1
244,-1,1205.11,398.941,112.53,360.329,0.978335,-1,-1,-1
244,-1,831.718,309.108,120.887,532.675,0.976232,-1,-1,-1
244,-1,557.424,307.405,152.349,599.548,0.975424,-1,-1,-1
244,-1,1552.8,429.149,91.86,298.622,0.965931,-1,-1,-1
244,-1,110.448,503.4,101.559,242.85,0.945576,-1,-1,-1
244,-1,920.587,361.176,104.693,446.454,0.943206,-1,-1,-1
244,-1,31.1786,526.419,77.5884,242.304,0.906429,-1,-1,-1
245,-1,1306.58,356.237,121.93,393.714,0.996728,-1,-1,-1
245,-1,982.032,288.031,190.418,552.197,0.993003,-1,-1,-1
245,-1,664.845,327.201,220.474,593.373,0.989617,-1,-1,-1
245,-1,1769.46,397.988,90.67,260.031,0.980099,-1,-1,-1
245,-1,574.65,304.787,141.271,590.708,0.979128,-1,-1,-1
245,-1,1206.16,388.829,107.71,349.557,0.977045,-1,-1,-1
245,-1,1556.39,446.764,79.94,285.08,0.971963,-1,-1,-1
245,-1,849.637,317.891,118.836,520.856,0.96453,-1,-1,-1
245,-1,102.905,516.066,91.45,241.728,0.954966,-1,-1,-1
245,-1,945.962,342.794,65.518,392.101,0.903467,-1,-1,-1
245,-1,30.5587,521.035,80.1633,244.761,0.888091,-1,-1,-1
246,-1,1012.77,287.154,178,531.216,0.996319,-1,-1,-1
246,-1,1319.36,387.664,94.53,363.554,0.995564,-1,-1,-1
246,-1,589.34,289.325,140.149,622.479,0.991888,-1,-1,-1
246,-1,686.408,307.346,213.914,605.91,0.987457,-1,-1,-1
246,-1,1193.37,398.194,113.36,324.91,0.985327,-1,-1,-1
246,-1,1750.93,409.459,123.69,228.488,0.982727,-1,-1,-1
246,-1,1554.4,427.843,97.15,308.478,0.978,-1,-1,-1
246,-1,855.665,321.652,111.623,489.856,0.962565,-1,-1,-1
246,-1,31.3822,525.807,78.2098,251.698,0.944331,-1,-1,-1
246,-1,958.755,341.275,66.615,434.909,0.925831,-1,-1,-1
246,-1,107.045,481.099,104.535,280.743,0.847454,-1,-1,-1
247,-1,1007.35,292.838,201.58,554.16,0.996689,-1,-1,-1
247,-1,1328.31,370.054,117.49,368.161,0.996167,-1,-1,-1
247,-1,717.198,330.491,200.744,588.6,0.990174,-1,-1,-1
247,-1,1216.17,406.82,95.95,315.494,0.987985,-1,-1,-1
247,-1,594.284,314.432,145.274,587.665,0.987646,-1,-1,-1
247,-1,1754.12,407.511,126.44,244.523,0.985661,-1,-1,-1
247,-1,1551.27,425.793,108.43,305.736,0.968514,-1,-1,-1
247,-1,872.751,307.907,122.677,529.17,0.961491,-1,-1,-1
247,-1,21.942,518.285,87.14,248.362,0.960267,-1,-1,-1
247,-1,947.358,334.054,90.292,448.153,0.926435,-1,-1,-1
247,-1,112.413,484.222,107.966,260.938,0.769821,-1,-1,-1
248,-1,1333.66,373.974,113.36,366.464,0.995347,-1,-1,-1
248,-1,1035.36,290.479,157.53,499.997,0.995303,-1,-1,-1
248,-1,1219.68,401.052,113.06,330.214,0.993288,-1,-1,-1
248,-1,598.383,323.602,162.315,589.219,0.990262,-1,-1,-1
248,-1,1769.61,393.134,92.27,272.541,0.99006,-1,-1,-1
248,-1,744.236,320.888,159.628,605.974,0.98541,-1,-1,-1
248,-1,22.0826,522.281,89.3674,244.867,0.974931,-1,-1,-1
248,-1,1543.58,414.938,80.07,282.912,0.961125,-1,-1,-1
248,-1,880.246,333.219,111.601,494.519,0.910865,-1,-1,-1
248,-1,963.64,350.944,83.67,414.63,0.881653,-1,-1,-1
248,-1,112.772,482.091,89.678,272.369,0.541236,-1,-1,-1
249,-1,1028.03,293.747,219.28,491.598,0.993753,-1,-1,-1
249,-1,1338.77,359.497,100.34,379.028,0.993058,-1,-1,-1
249,-1,1768.87,394.579,99.7,272.163,0.990791,-1,-1,-1
249,-1,764.032,307.718,170.005,613.747,0.988906,-1,-1,-1
249,-1,615.802,339.769,183.935,566.556,0.983641,-1,-1,-1
249,-1,1232.5,405.625,104.71,313.41,0.978043,-1,-1,-1
249,-1,23.9935,527.84,86.5755,241.804,0.977196,-1,-1,-1
249,-1,1523.08,437.404,94.44,263.09,0.948652,-1,-1,-1
249,-1,977.474,345.495,83.196,419.133,0.92472,-1,-1,-1
249,-1,883.311,330.807,113.196,493.696,0.845062,-1,-1,-1
249,-1,1611.47,464.895,58.26,237.595,0.606517,-1,-1,-1
250,-1,1055.82,271.806,171,514.076,0.993754,-1,-1,-1
250,-1,1770.79,401.433,103.96,261.546,0.991386,-1,-1,-1
250,-1,642.831,341.071,121.951,560.622,0.990908,-1,-1,-1
250,-1,1336.35,369.565,103.06,358.643,0.990094,-1,-1,-1
250,-1,772.663,323.453,170.899,609.295,0.989237,-1,-1,-1
250,-1,26.7363,531.392,84.2757,238.738,0.980198,-1,-1,-1
250,-1,997.062,333.944,86.608,441.009,0.973692,-1,-1,-1
250,-1,1545.96,446.034,76.51,246.253,0.970718,-1,-1,-1
250,-1,1227.99,352.204,106.05,387.302,0.962807,-1,-1,-1
250,-1,922.147,333.855,108.653,482.979,0.916948,-1,-1,-1
250,-1,1592.04,467.208,56.32,227.353,0.622382,-1,-1,-1
251,-1,655.262,327.835,148.749,555.416,0.994162,-1,-1,-1
251,-1,1058.59,273.949,198.51,508.416,0.993562,-1,-1,-1
251,-1,1772.6,387.523,105.71,277.778,0.991038,-1,-1,-1
251,-1,786.801,331.263,193.538,578.3,0.988747,-1,-1,-1
251,-1,1339.81,365.284,108.27,367.178,0.988169,-1,-1,-1
251,-1,978.909,327.555,104.501,463.682,0.976383,-1,-1,-1
251,-1,29.7405,516.353,81.0325,265.094,0.968701,-1,-1,-1
251,-1,1234.52,363.314,103.52,376.298,0.954824,-1,-1,-1
251,-1,1528.54,438.903,82.5,264.622,0.952645,-1,-1,-1
251,-1,1594.16,461.949,80.1,270.403,0.90136,-1,-1,-1
251,-1,908.068,334.931,104.682,499.807,0.887484,-1,-1,-1
252,-1,1062.46,298.784,186,505.429,0.995593,-1,-1,-1
252,-1,670.786,337.58,146.169,543.282,0.993593,-1,-1,-1
252,-1,1325.97,386.86,109.48,348.32,0.992327,-1,-1,-1
252,-1,819.124,311.232,149.041,599.167,0.990721,-1,-1,-1
252,-1,1779.69,392.893,102.23,273.315,0.989524,-1,-1,-1
252,-1,955.48,382.542,118.37,413.149,0.979426,-1,-1,-1
252,-1,1220.12,352.119,112.67,392.015,0.956762,-1,-1,-1
252,-1,1530.16,432.098,78.78,272.179,0.953629,-1,-1,-1
252,-1,32.145,532.258,81.053,247.098,0.948471,-1,-1,-1
252,-1,1597.81,493.004,71.59,243.076,0.90313,-1,-1,-1
253,-1,686.017,330.893,161.084,557.517,0.99106,-1,-1,-1
253,-1,1097.56,290.033,157.54,515.992,0.990893,-1,-1,-1
253,-1,838.142,343.434,146.348,537.906,0.989707,-1,-1,-1
253,-1,1793.34,415.642,96.9,241.768,0.989481,-1,-1,-1
253,-1,1349.05,362.531,108.77,380.41,0.987734,-1,-1,-1
253,-1,979.278,346.91,114.122,440.35,0.978857,-1,-1,-1
253,-1,1543.44,438.679,81.36,271.726,0.978657,-1,-1,-1
253,-1,31.9802,529.081,79.8298,250.804,0.946714,-1,-1,-1
253,-1,1210.57,338.941,125.03,388.715,0.931769,-1,-1,-1
253,-1,1618.86,489.491,75.58,236.269,0.92732,-1,-1,-1
254,-1,1093.25,298.766,141.89,534.268,0.994014,-1,-1,-1
254,-1,691.107,319.628,173.05,548.786,0.992485,-1,-1,-1
254,-1,854.638,328.196,167.692,547.524,0.990736,-1,-1,-1
254,-1,1617.36,523.068,85.97,208.102,0.98945,-1,-1,-1
254,-1,1364.74,378.317,101.3,354.055,0.986233,-1,-1,-1
254,-1,1521.4,428.842,90.05,268.248,0.984766,-1,-1,-1
254,-1,1784.06,399.999,122.06,265.24,0.983935,-1,-1,-1
254,-1,1229.12,362.447,117.36,360.04,0.976435,-1,-1,-1
254,-1,981.147,365.876,119.423,423.926,0.974954,-1,-1,-1
254,-1,21.0206,521.725,77.4385,239.803,0.963738,-1,-1,-1
255,-1,724.393,329.96,137.995,518.965,0.997908,-1,-1,-1
255,-1,1095.91,314.512,154.91,493.696,0.99615,-1,-1,-1
255,-1,873.698,348.233,158.522,516.027,0.99461,-1,-1,-1
255,-1,1524.22,425.17,88.81,278.406,0.988015,-1,-1,-1
255,-1,1794.52,398.335,120.93,257.72,0.987039,-1,-1,-1
255,-1,1626.86,520.616,82.53,201.045,0.969545,-1,-1,-1
255,-1,1003.35,357.835,102.26,438.951,0.969102,-1,-1,-1
255,-1,1237.46,350.832,123.7,395.175,0.964218,-1,-1,-1
255,-1,1346.75,372.315,135.94,343.025,0.957867,-1,-1,-1
255,-1,34.7819,524.59,74.8611,238.411,0.936212,-1,-1,-1
255,-1,950.265,345.73,63.145,93.002,0.539205,-1,-1,-1
256,-1,1118.27,318.998,149.26,496.109,0.997748,-1,-1,-1
256,-1,730.163,322.288,136.735,541.407,0.997411,-1,-1,-1
256,-1,878.479,323.037,193.631,549.203,0.992432,-1,-1,-1
256,-1,1536.87,435.384,96.78,270.063,0.990128,-1,-1,-1
256,-1,1630.09,528.904,79.21,196.085,0.988582,-1,-1,-1
256,-1,1798.35,398.203,92.09,248.102,0.988179,-1,-1,-1
256,-1,1356.62,390.59,136.11,326.391,0.985319,-1,-1,-1
256,-1,35.4324,524.141,73.5246,264.99,0.956749,-1,-1,-1
256,-1,1264.95,353.76,99.27,359.67,0.9559,-1,-1,-1
256,-1,1002.27,366.603,101.37,403.702,0.924649,-1,-1,-1
256,-1,1860.43,416.837,52.03,191.868,0.656109,-1,-1,-1
257,-1,1117.88,316.433,159.17,490.178,0.993755,-1,-1,-1
257,-1,758.167,345.204,129.442,536.17,0.992273,-1,-1,-1
257,-1,1539.86,422.648,89.88,272.521,0.991118,-1,-1,-1
257,-1,886.297,352.18,214.403,539.29,0.990905,-1,-1,-1
257,-1,1801.8,408.536,90.64,234.204,0.990772,-1,-1,-1
257,-1,1376.9,361.927,87.38,389.387,0.988955,-1,-1,-1
257,-1,1636.7,528.559,85.34,188.648,0.971306,-1,-1,-1
257,-1,26.5127,534.349,80.2343,236.931,0.933045,-1,-1,-1
257,-1,1006.07,375.215,108.04,371.713,0.920851,-1,-1,-1
257,-1,1248.2,359.416,112.89,368.278,0.918837,-1,-1,-1
257,-1,1857.97,423.686,55.61,196.276,0.574041,-1,-1,-1
258,-1,763.374,332.044,141.862,504.712,0.996711,-1,-1,-1
258,-1,890.502,320.439,225.818,557.28,0.99462,-1,-1,-1
258,-1,1120.68,306.16,159.28,508.784,0.994259,-1,-1,-1
258,-1,1397.54,374.958,93.34,350.629,0.993533,-1,-1,-1
258,-1,1804.77,399.632,90.26,237.919,0.989566,-1,-1,-1
258,-1,1535.88,452.594,97.99,247.186,0.986771,-1,-1,-1
258,-1,1647.94,526.301,88.66,202.008,0.973865,-1,-1,-1
258,-1,26.7143,532.931,77.6447,234.156,0.963837,-1,-1,-1
258,-1,1258.67,369.695,113.23,352.72,0.952233,-1,-1,-1
259,-1,784.606,320.656,128.728,558.022,0.996524,-1,-1,-1
259,-1,1394.22,367.871,97.7,367.542,0.996195,-1,-1,-1
259,-1,910.073,292.659,193.447,596.025,0.991788,-1,-1,-1
259,-1,1130.8,313.424,156.14,488.254,0.991429,-1,-1,-1
259,-1,1540,420.381,92.12,296.322,0.990008,-1,-1,-1
259,-1,1811.04,392.447,88.29,247.402,0.98583,-1,-1,-1
259,-1,1649.65,556.097,70.36,161.939,0.983916,-1,-1,-1
259,-1,1289.68,385.634,83.49,352.851,0.974035,-1,-1,-1
259,-1,34.1319,523.097,76.4941,262.436,0.960211,-1,-1,-1
259,-1,1053,338.969,91.71,456.051,0.521371,-1,-1,-1
260,-1,786.968,334.205,150.366,511.202,0.997334,-1,-1,-1
260,-1,1132.74,311.672,167.55,482.983,0.996545,-1,-1,-1
260,-1,1400.25,375.49,102.05,344.301,0.993218,-1,-1,-1
260,-1,1541.41,413.166,94.74,302.885,0.990532,-1,-1,-1
260,-1,898.392,307.407,205.338,575.803,0.988982,-1,-1,-1
260,-1,1818.42,404.122,80.34,240.667,0.987977,-1,-1,-1
260,-1,1297.79,383.411,90.39,351.529,0.985019,-1,-1,-1
260,-1,38.4194,508.596,84.0546,270.555,0.974294,-1,-1,-1
260,-1,1655.16,526.823,66.15,182.834,0.959927,-1,-1,-1
260,-1,1048.95,348.354,101.08,439.291,0.693146,-1,-1,-1
260,-1,1796.24,427.78,53.94,186.773,0.617559,-1,-1,-1
261,-1,1400.92,374.216,99.09,372.341,0.995781,-1,-1,-1
261,-1,801.16,339.606,135.16,541.959,0.994789,-1,-1,-1
261,-1,927.17,327.759,217.87,535.899,0.994178,-1,-1,-1
261,-1,1153.87,313.393,143.16,473.962,0.993935,-1,-1,-1
261,-1,1540.6,409.183,93.6,300.612,0.990232,-1,-1,-1
261,-1,1666.83,527.556,67.65,213.293,0.987186,-1,-1,-1
261,-1,1303.85,391.5,92.42,336.191,0.986243,-1,-1,-1
261,-1,1802.11,405.372,116.89,245.143,0.981253,-1,-1,-1
261,-1,18.4798,506.401,89.9862,281.04,0.97467,-1,-1,-1
261,-1,1056.39,374.405,88.78,373.663,0.844424,-1,-1,-1
261,-1,109.224,509.273,82.383,274.342,0.668418,-1,-1,-1
262,-1,1168.08,305.035,118.05,473.326,0.995721,-1,-1,-1
262,-1,1394.72,372.008,116.16,367.655,0.995235,-1,-1,-1
262,-1,823.997,334.869,122.497,518.543,0.99516,-1,-1,-1
262,-1,964.321,359.11,175.759,450.419,0.992839,-1,-1,-1
262,-1,1537.59,422.643,91.76,269.252,0.989709,-1,-1,-1
262,-1,1664.71,509.742,88.94,238.359,0.9835,-1,-1,-1
262,-1,1812.92,407.439,89.19,222.859,0.981438,-1,-1,-1
262,-1,34.8661,504.429,92.8999,278.273,0.979181,-1,-1,-1
262,-1,1307.94,412.939,83.62,321.043,0.960817,-1,-1,-1
262,-1,107.546,490.468,83.3,292.809,0.738139,-1,-1,-1
263,-1,1396.63,369.412,118.74,376.897,0.997091,-1,-1,-1
263,-1,964.993,341.431,179.267,521.498,0.996897,-1,-1,-1
263,-1,809.331,342.961,180.645,493.643,0.996391,-1,-1,-1
263,-1,1154.45,319.543,183.15,484.279,0.994622,-1,-1,-1
263,-1,1824.03,384.85,89.51,257.788,0.984344,-1,-1,-1
263,-1,1538.08,416.042,89.8,290.473,0.983889,-1,-1,-1
263,-1,1658.4,518.977,90.71,193.255,0.982649,-1,-1,-1
263,-1,35.683,517.659,86.556,257.628,0.976629,-1,-1,-1
263,-1,1310.69,393.727,82.06,324.765,0.965022,-1,-1,-1
263,-1,1100.48,361.126,62.93,393.935,0.582712,-1,-1,-1
263,-1,104.769,492.5,69.917,289.931,0.531503,-1,-1,-1
264,-1,981.331,374.261,172.549,501.429,0.99772,-1,-1,-1
264,-1,1405.22,363.95,119.36,373.197,0.996538,-1,-1,-1
264,-1,1155.95,357.222,176.48,439.321,0.995216,-1,-1,-1
264,-1,832.698,335.468,140.642,496.102,0.995102,-1,-1,-1
264,-1,42.2714,512.583,84.1046,259.984,0.986352,-1,-1,-1
264,-1,1685.06,523.063,83.24,205.37,0.984582,-1,-1,-1
264,-1,1830.62,404.875,84.72,250.833,0.984543,-1,-1,-1
264,-1,1542.83,417.309,80.13,282.205,0.983453,-1,-1,-1
264,-1,1329.34,407.161,75.22,295.848,0.971643,-1,-1,-1
264,-1,117.588,515.963,75.161,233.716,0.773512,-1,-1,-1
265,-1,999.962,344.307,171.738,525.936,0.997568,-1,-1,-1
265,-1,1407.44,372.931,115.94,368.655,0.997142,-1,-1,-1
265,-1,863,338.38,141.51,511.912,0.995492,-1,-1,-1
265,-1,1158.72,342.113,182.86,464.359,0.995052,-1,-1,-1
265,-1,1523.07,438.637,119.43,267.681,0.988937,-1,-1,-1
265,-1,1829.91,409.193,79.61,246.234,0.983631,-1,-1,-1
265,-1,1680.89,521.565,80.19,216.2,0.98216,-1,-1,-1
265,-1,18.287,511.997,85.618,264.761,0.967359,-1,-1,-1
265,-1,1328.5,406.109,73.76,328.435,0.942412,-1,-1,-1
265,-1,103.851,506.502,67.136,269.28,0.59123,-1,-1,-1
266,-1,1003.02,314.852,179.55,563.545,0.997604,-1,-1,-1
266,-1,1164.41,355.884,200.28,434.768,0.995716,-1,-1,-1
266,-1,1421.1,362.153,104.74,379.729,0.995452,-1,-1,-1
266,-1,852.811,332.606,154.649,523.327,0.992941,-1,-1,-1
266,-1,1542.08,416.918,81.53,278.615,0.990244,-1,-1,-1
266,-1,1833.31,404.206,79.71,251.527,0.983934,-1,-1,-1
266,-1,1698.93,517.343,64.03,219.327,0.976862,-1,-1,-1
266,-1,19.0391,514.694,87.1709,250.452,0.969092,-1,-1,-1
266,-1,1333.92,424.448,80.31,294.172,0.960586,-1,-1,-1
266,-1,99.4554,486.826,72.3476,289.751,0.532317,-1,-1,-1
267,-1,1000.23,345.897,192.1,511.316,0.996817,-1,-1,-1
267,-1,872.548,349.328,165.242,508.428,0.995911,-1,-1,-1
267,-1,1187.63,308.393,131.97,493.722,0.995207,-1,-1,-1
267,-1,1413.39,367.295,89.66,365.486,0.992384,-1,-1,-1
267,-1,1543.83,413.325,81.56,288.439,0.991553,-1,-1,-1
267,-1,1703.44,519.218,72.8,212.778,0.989621,-1,-1,-1
267,-1,1834.26,389.732,79.47,271.57,0.983585,-1,-1,-1
267,-1,1336.64,395.471,88.66,329.703,0.969465,-1,-1,-1
267,-1,19.8276,528.017,86.8084,233.272,0.962269,-1,-1,-1
267,-1,102.94,505.707,70.517,264.28,0.743285,-1,-1,-1
268,-1,891.047,344.56,122.813,491.34,0.99678,-1,-1,-1
268,-1,1029.29,332.933,179.85,558.292,0.994287,-1,-1,-1
268,-1,1204.93,351.703,150.28,435.929,0.993176,-1,-1,-1
268,-1,1547.88,409.945,79.82,301.916,0.991894,-1,-1,-1
268,-1,1404.13,402.114,131.94,310.016,0.991782,-1,-1,-1
268,-1,1695.33,523.158,82.74,214.124,0.991299,-1,-1,-1
268,-1,23.2712,531.45,88.9168,250.208,0.983426,-1,-1,-1
268,-1,1833.59,401.636,85.41,256.252,0.978756,-1,-1,-1
268,-1,1337.12,393.851,79.58,332.013,0.963449,-1,-1,-1
268,-1,113.49,482.14,75.996,303.182,0.73777,-1,-1,-1
269,-1,1051.81,324.686,164.12,540.84,0.997301,-1,-1,-1
269,-1,1410.36,390.011,128.38,330.2,0.992606,-1,-1,-1
269,-1,904.42,336.042,131.55,484.416,0.992319,-1,-1,-1
269,-1,1551.41,421.947,85.99,301.967,0.990664,-1,-1,-1
269,-1,1232.52,328.131,142.68,453.927,0.990252,-1,-1,-1
269,-1,28.0784,525.499,84.0066,248.908,0.98681,-1,-1,-1
269,-1,1699.75,525.799,87.8,226.893,0.984613,-1,-1,-1
269,-1,1840.24,414.688,75.42,213.983,0.977785,-1,-1,-1
269,-1,1352.08,399.325,72.84,334.036,0.934125,-1,-1,-1
269,-1,110.435,510.509,71.718,266.576,0.796564,-1,-1,-1
270,-1,908.046,332.066,146.004,480.53,0.996011,-1,-1,-1
270,-1,1077.4,315.734,148.07,535.467,0.993341,-1,-1,-1
270,-1,1431.03,370.576,95.84,364.016,0.992707,-1,-1,-1
270,-1,1235.46,305.974,140.61,495.059,0.992553,-1,-1,-1
270,-1,1548.82,412.206,87.96,311.314,0.992148,-1,-1,-1
270,-1,27.1188,527.301,84.8992,245.82,0.98593,-1,-1,-1
270,-1,1851.71,418.971,63.3,202.232,0.978205,-1,-1,-1
270,-1,1715.41,501.95,62.25,260.707,0.90647,-1,-1,-1
270,-1,110.559,507.725,71.494,271.77,0.803219,-1,-1,-1
270,-1,1348.77,382.207,64.54,348.443,0.706646,-1,-1,-1
271,-1,1061.21,339.842,173.35,509.842,0.996075,-1,-1,-1
271,-1,1218.94,319.467,155.57,492.379,0.992999,-1,-1,-1
271,-1,1542.44,427.054,90.61,288.492,0.992943,-1,-1,-1
271,-1,1432.66,374.368,101.98,356.914,0.992382,-1,-1,-1
271,-1,1713.48,511.65,80.81,223.182,0.989676,-1,-1,-1
271,-1,918.92,345.651,116.21,500.232,0.988831,-1,-1,-1
271,-1,26.3408,528.396,86.8022,240.169,0.987707,-1,-1,-1
271,-1,1845.79,427.479,65.45,198.371,0.981027,-1,-1,-1
271,-1,113.231,516.762,69.645,255.999,0.852511,-1,-1,-1
271,-1,1347.51,339.907,75.54,369.876,0.577744,-1,-1,-1
272,-1,1088.14,329.917,160.79,513.545,0.997377,-1,-1,-1
272,-1,913.639,326.073,163.081,486.972,0.996507,-1,-1,-1
272,-1,1430.7,393.589,105.37,333.796,0.993378,-1,-1,-1
272,-1,1549.99,426.569,94.67,285.286,0.990609,-1,-1,-1
272,-1,1241.27,327.664,134.36,393.421,0.990009,-1,-1,-1
272,-1,27.3927,533.141,85.5103,237.665,0.988055,-1,-1,-1
272,-1,1728.96,523.299,74.13,187.346,0.987923,-1,-1,-1
272,-1,1830.46,427.633,62.74,178.678,0.977268,-1,-1,-1
272,-1,110.573,508.671,72.199,270.219,0.671175,-1,-1,-1
272,-1,1332.74,325.057,70.79,395.099,0.657351,-1,-1,-1
273,-1,1092.21,342.615,169.94,515.227,0.997677,-1,-1,-1
273,-1,937.316,323.998,123.074,506.394,0.994742,-1,-1,-1
273,-1,1434.21,379.688,107.34,341.129,0.993524,-1,-1,-1
273,-1,1246.8,345.897,145.13,417.876,0.991444,-1,-1,-1
273,-1,1554.42,425.508,94.67,292.61,0.988492,-1,-1,-1
273,-1,31.0669,538.806,81.5761,236.155,0.98628,-1,-1,-1
273,-1,1718.95,510.551,69.88,222.442,0.976858,-1,-1,-1
273,-1,1860.2,435.531,58.27,192.12,0.972053,-1,-1,-1
274,-1,1434.26,371.854,92.96,357.936,0.994068,-1,-1,-1
274,-1,1103.79,323.252,160.43,544.194,0.99397,-1,-1,-1
274,-1,1718.24,517.263,83.55,216.7,0.992589,-1,-1,-1
274,-1,945.944,357.133,132.516,480.871,0.992293,-1,-1,-1
274,-1,1259.91,313.937,137.45,439.192,0.990773,-1,-1,-1
274,-1,1545.59,419.409,91.62,285.113,0.9848,-1,-1,-1
274,-1,1856.92,428.465,59.78,199.751,0.972634,-1,-1,-1
274,-1,30.752,521.424,79.34,250.67,0.967389,-1,-1,-1
275,-1,943.948,351.623,128.502,440.158,0.994526,-1,-1,-1
275,-1,1107.45,328.159,162.07,530.013,0.993957,-1,-1,-1
275,-1,1740.79,529.77,67.51,199.107,0.99058,-1,-1,-1
275,-1,1270.67,319.349,134.37,442.197,0.99015,-1,-1,-1
275,-1,1453.44,384.045,96.68,323.327,0.989368,-1,-1,-1
275,-1,1539.69,408.802,107.47,315.991,0.987752,-1,-1,-1
275,-1,1857.94,429.742,57.17,185.818,0.974428,-1,-1,-1
275,-1,29.3106,518.428,80.5864,254.155,0.971067,-1,-1,-1
275,-1,105.909,510.001,74.934,274.668,0.507056,-1,-1,-1
276,-1,952.911,373.768,133.989,434.474,0.995833,-1,-1,-1
276,-1,1120.58,314.975,159.23,519.76,0.993617,-1,-1,-1
276,-1,1443.8,394.298,85.22,311.636,0.99165,-1,-1,-1
276,-1,1743.7,525.549,71.95,207.716,0.989144,-1,-1,-1
276,-1,1274.12,320.156,172.62,416.078,0.989011,-1,-1,-1
276,-1,1548.52,425.96,93.38,287.93,0.986847,-1,-1,-1
276,-1,29.3206,511.802,81.9514,263.894,0.953329,-1,-1,-1
276,-1,1854.81,436.207,64.19,191.266,0.951785,-1,-1,-1
276,-1,1389.59,388.982,67.78,321.471,0.548652,-1,-1,-1
277,-1,1134.53,335.363,153.43,502.612,0.992878,-1,-1,-1
277,-1,1558.95,419.602,84.72,300.191,0.990341,-1,-1,-1
277,-1,1469.2,381.028,69.04,333.729,0.987952,-1,-1,-1
277,-1,1290.9,368.727,116.58,405.403,0.984283,-1,-1,-1
277,-1,1861.4,416.628,57.6,208.781,0.966244,-1,-1,-1
277,-1,967.672,355.204,136.288,416.885,0.966076,-1,-1,-1
277,-1,25.4625,509.25,83.9115,271.695,0.961175,-1,-1,-1
277,-1,1748.89,521.461,66.17,203.312,0.951152,-1,-1,-1
278,-1,1561.23,416.175,87.57,302.438,0.99308,-1,-1,-1
278,-1,994.584,338.847,126.046,481.273,0.991845,-1,-1,-1
278,-1,1149.41,338.607,151.96,493.445,0.991528,-1,-1,-1
278,-1,1456.86,382.798,84.21,334.936,0.989054,-1,-1,-1
278,-1,1294.14,316.214,133.04,456.984,0.987802,-1,-1,-1
278,-1,23.5725,532.38,85.8925,232.184,0.982193,-1,-1,-1
278,-1,1751.04,505.614,73.14,223.148,0.979744,-1,-1,-1
278,-1,1853.48,417.415,65.52,215.119,0.945056,-1,-1,-1
278,-1,107.165,527.536,71.524,250.373,0.584246,-1,-1,-1
279,-1,1155.79,313.899,152.6,512.375,0.992971,-1,-1,-1
279,-1,987.382,366.702,114.628,459.764,0.992749,-1,-1,-1
279,-1,1302.21,350.415,124.3,421.506,0.988843,-1,-1,-1
279,-1,1571.07,401.598,93.55,309.127,0.986952,-1,-1,-1
279,-1,1744.18,530.653,63.96,182.25,0.983339,-1,-1,-1
279,-1,23.8201,524.376,89.3799,238.859,0.981539,-1,-1,-1
279,-1,1469.71,386.403,92.28,321.541,0.980809,-1,-1,-1
279,-1,1859.05,407.355,59.95,247.965,0.956208,-1,-1,-1
280,-1,1006.07,351.094,125.31,454.52,0.994737,-1,-1,-1
280,-1,1163.64,338.205,155.4,491.587,0.99422,-1,-1,-1
280,-1,1574.6,397.83,85.58,306.548,0.991013,-1,-1,-1
280,-1,1304.55,350.645,138.05,395.459,0.986114,-1,-1,-1
280,-1,1467.42,379.12,90.2,323.711,0.98479,-1,-1,-1
280,-1,23.614,522.246,91.668,241.806,0.982691,-1,-1,-1
280,-1,1858.41,403.47,60.59,255.63,0.947549,-1,-1,-1
280,-1,1733.83,522.184,85.25,189.805,0.927442,-1,-1,-1
281,-1,1174.73,381.244,176.19,454.245,0.994467,-1,-1,-1
281,-1,1021.77,357.603,99.2,454.149,0.993635,-1,-1,-1
281,-1,1735.74,525.836,75.66,212.052,0.990659,-1,-1,-1
281,-1,1483.77,401.227,93.21,303.968,0.978686,-1,-1,-1
281,-1,1572.75,420.672,89.72,298.437,0.978661,-1,-1,-1
281,-1,23.4216,520.485,93.1294,240.799,0.975885,-1,-1,-1
281,-1,1857.34,409.128,61.66,242.478,0.953311,-1,-1,-1
281,-1,1313.45,360.874,126.82,394.572,0.914716,-1,-1,-1
282,-1,1021.64,336.927,120.2,489.04,0.997948,-1,-1,-1
282,-1,1725.33,505.599,80.72,228.969,0.990676,-1,-1,-1
282,-1,1179.49,340.874,189.68,475.704,0.990241,-1,-1,-1
282,-1,1483.58,391.265,85.54,305.126,0.987154,-1,-1,-1
282,-1,1561.14,440.607,125.27,280.91,0.976402,-1,-1,-1
282,-1,21.2688,508.9,90.8522,250.762,0.963341,-1,-1,-1
282,-1,1856.76,420.042,62.24,220.867,0.950249,-1,-1,-1
282,-1,1314.09,347.369,133.49,401.689,0.840315,-1,-1,-1
282,-1,1418.67,361.295,57.26,337.681,0.512842,-1,-1,-1
283,-1,1027.98,347.529,125.07,478.234,0.996588,-1,-1,-1
283,-1,1720.7,514.141,82.56,223.612,0.994137,-1,-1,-1
283,-1,1482.61,387.888,83.61,316.543,0.987208,-1,-1,-1
283,-1,1592.42,458.464,78.61,253.435,0.982812,-1,-1,-1
283,-1,1187.09,337.255,183.79,503.822,0.978425,-1,-1,-1
283,-1,19.7788,511.991,90.0572,233.092,0.971758,-1,-1,-1
283,-1,1854.67,412.998,64.33,210.257,0.956989,-1,-1,-1
283,-1,1290.68,349.706,136.86,432.708,0.85256,-1,-1,-1
283,-1,1421.9,406.029,82.7,293.85,0.759824,-1,-1,-1
283,-1,1146.36,320.315,89.87,508.701,0.663603,-1,-1,-1
284,-1,1044.27,349.841,138.13,451.256,0.997386,-1,-1,-1
284,-1,1729.71,502.758,92.15,233.059,0.991508,-1,-1,-1
284,-1,1490.65,391.356,81.38,313.14,0.983382,-1,-1,-1
284,-1,1587.26,456.388,83.43,265.597,0.981835,-1,-1,-1
284,-1,1211.9,341.084,225.78,457.761,0.970961,-1,-1,-1
284,-1,16.4773,514.527,93.2117,235.427,0.970358,-1,-1,-1
284,-1,1853.05,435.253,65.95,176.754,0.923408,-1,-1,-1
284,-1,1174.86,345.62,108.71,489.53,0.87705,-1,-1,-1
284,-1,1415.42,389.323,82.57,313.446,0.685309,-1,-1,-1
285,-1,1055.15,343.267,121.5,477.896,0.995303,-1,-1,-1
285,-1,1717.53,502.956,106.47,261.135,0.98984,-1,-1,-1
285,-1,1580.39,452.623,97.22,267.338,0.984403,-1,-1,-1
285,-1,1214.22,343.384,222.95,458.587,0.982845,-1,-1,-1
285,-1,1492.19,385.378,82.25,318.159,0.9775,-1,-1,-1
285,-1,16.8187,509.369,94.8743,246.042,0.967062,-1,-1,-1
285,-1,1868.36,413.127,50.64,203.783,0.879439,-1,-1,-1
285,-1,1171.42,343.262,100.97,490.59,0.834955,-1,-1,-1
285,-1,1391.53,330.025,90.67,375.495,0.706405,-1,-1,-1
286,-1,1052.72,344.755,135.24,472.513,0.995434,-1,-1,-1
286,-1,1711.8,521.359,102.09,212.142,0.988065,-1,-1,-1
286,-1,1597.26,450.958,78.52,251.529,0.984839,-1,-1,-1
286,-1,1249.77,351.51,158.64,436.37,0.976258,-1,-1,-1
286,-1,1496.1,375.985,89.76,309.729,0.970425,-1,-1,-1
286,-1,21.422,516.232,89.401,230.405,0.923474,-1,-1,-1
286,-1,1168.88,334.684,102.1,474.76,0.88811,-1,-1,-1
286,-1,1355.61,336.346,124.2,397.304,0.805416,-1,-1,-1
286,-1,1869.37,422.649,49.63,193.089,0.790519,-1,-1,-1
286,-1,1455.5,402.334,78.76,296.34,0.672831,-1,-1,-1
287,-1,1070.44,349.235,128.6,462.044,0.9955,-1,-1,-1
287,-1,1600.82,487.661,75.49,206.583,0.989742,-1,-1,-1
287,-1,1702.6,525.917,114.53,220.983,0.988016,-1,-1,-1
287,-1,1505.31,376.137,92.12,336.538,0.979801,-1,-1,-1
287,-1,1258.74,356.859,153.36,434.481,0.977901,-1,-1,-1
287,-1,23.6155,518.505,89.5125,243.881,0.859504,-1,-1,-1
287,-1,1369.85,337.745,106.19,372.253,0.801742,-1,-1,-1
287,-1,1165.51,364.686,95.35,415.847,0.776514,-1,-1,-1
287,-1,1438.64,398.027,70.33,292.423,0.709955,-1,-1,-1
287,-1,1883.28,410.413,35.72,204.135,0.64243,-1,-1,-1
288,-1,1082.83,360.75,113.72,436.155,0.995621,-1,-1,-1
288,-1,1697.03,514.242,108.96,236.075,0.992145,-1,-1,-1
288,-1,1608.61,484.041,72.82,201.402,0.988787,-1,-1,-1
288,-1,1502.34,388.387,97.49,301.464,0.985537,-1,-1,-1
288,-1,1284.92,356.888,152.55,432.589,0.983398,-1,-1,-1
288,-1,1168.92,332.76,89.29,435.46,0.925027,-1,-1,-1
288,-1,29.055,533.665,78.815,229.508,0.772513,-1,-1,-1
288,-1,1235.88,363.961,104.88,421.499,0.728932,-1,-1,-1
288,-1,1885.34,420.16,33.66,181.846,0.671152,-1,-1,-1
288,-1,1403.37,386.295,104.97,322.439,0.648305,-1,-1,-1
289,-1,1070.64,340.744,150.77,467.463,0.995434,-1,-1,-1
289,-1,1707.82,518.288,104.26,218.52,0.989951,-1,-1,-1
289,-1,1283.41,338.603,159.98,456.689,0.988721,-1,-1,-1
289,-1,1496.78,366.39,111.54,337.65,0.988145,-1,-1,-1
289,-1,1595.38,476.995,83.33,216.277,0.965661,-1,-1,-1
289,-1,1188.64,332.809,105.77,445.538,0.948537,-1,-1,-1
289,-1,1388.06,334.962,103.67,391.535,0.774478,-1,-1,-1
289,-1,26.108,528.801,82.44,227.436,0.762607,-1,-1,-1
289,-1,1880.46,433.599,38.54,166.282,0.687426,-1,-1,-1
290,-1,1077,358.764,149.83,423.87,0.996646,-1,-1,-1
290,-1,1700.72,534.885,101.9,202.877,0.991675,-1,-1,-1
290,-1,1257.61,358.283,237.15,437.861,0.983106,-1,-1,-1
290,-1,1510.23,394.167,103.69,290.545,0.981286,-1,-1,-1
290,-1,1597.48,461.836,86,233.169,0.969945,-1,-1,-1
290,-1,1191.94,339.554,109.92,452.706,0.961009,-1,-1,-1
290,-1,27.3768,524.115,80.0422,234.577,0.834027,-1,-1,-1
290,-1,1423.78,364.453,80.5,357.937,0.735182,-1,-1,-1
290,-1,1878.29,433.685,40.71,162.648,0.655096,-1,-1,-1
291,-1,1091.9,335.416,103.51,456.927,0.99728,-1,-1,-1
291,-1,1701.14,517.923,101.35,223.72,0.986028,-1,-1,-1
291,-1,1510.44,386.278,117.09,291.204,0.984313,-1,-1,-1
291,-1,1196.81,360.441,110.86,400.135,0.971731,-1,-1,-1
291,-1,1278.57,344.539,202.26,459.203,0.96296,-1,-1,-1
291,-1,1599.46,476.402,83.93,216.921,0.950225,-1,-1,-1
291,-1,25.0255,527.443,80.9895,229.381,0.879915,-1,-1,-1
291,-1,1412.85,361.191,81.27,385.937,0.815313,-1,-1,-1
291,-1,1890.6,421.36,28.4,175.3,0.66202,-1,-1,-1
292,-1,1100.38,345.478,125.18,449.06,0.996632,-1,-1,-1
292,-1,1501.83,387.231,148.52,302.457,0.989795,-1,-1,-1
292,-1,1285.41,333.621,205.78,476.089,0.985016,-1,-1,-1
292,-1,1715.42,530.781,74.72,209.892,0.971712,-1,-1,-1
292,-1,1198.89,350.002,108.26,441.489,0.969928,-1,-1,-1
292,-1,1608.42,466.51,67.67,209.032,0.899108,-1,-1,-1
292,-1,23.7295,524.614,83.5575,229.562,0.887916,-1,-1,-1
292,-1,1891.85,421.511,27.15,167.933,0.620753,-1,-1,-1
293,-1,1097.85,355.857,111.52,439.095,0.995065,-1,-1,-1
293,-1,1300.6,344.494,150.03,456.649,0.985209,-1,-1,-1
293,-1,1496.02,383.46,157.1,316.012,0.984632,-1,-1,-1
293,-1,1708.52,531.541,101.88,199.118,0.976306,-1,-1,-1
293,-1,1202.52,326.564,107.3,492.466,0.959651,-1,-1,-1
293,-1,22.7886,525.413,90.3814,233.193,0.881083,-1,-1,-1
293,-1,1889.93,411.912,29.07,181.089,0.85409,-1,-1,-1
293,-1,1599.83,452.513,81.98,246.339,0.838936,-1,-1,-1
293,-1,1423.7,323.798,81.61,444.906,0.768793,-1,-1,-1
294,-1,1100.27,361.887,140.54,427.524,0.993783,-1,-1,-1
294,-1,1300.47,353.405,180.41,454.168,0.987657,-1,-1,-1
294,-1,1702.64,533.954,93.02,206.459,0.985134,-1,-1,-1
294,-1,1508.81,411.913,170.71,282.964,0.982681,-1,-1,-1
294,-1,1227.15,354.964,119.76,444.538,0.970881,-1,-1,-1
294,-1,25.6859,538.376,83.7551,225.166,0.764902,-1,-1,-1
295,-1,1104.07,358.857,128.97,417.854,0.994435,-1,-1,-1
295,-1,1509.58,397.712,169.47,298.922,0.992831,-1,-1,-1
295,-1,1302.97,366.436,217.15,409.482,0.991133,-1,-1,-1
295,-1,1706.78,539.419,92.47,211.441,0.99004,-1,-1,-1
295,-1,1225.06,361.646,112.84,432.432,0.982373,-1,-1,-1
295,-1,25.7458,535.846,84.5872,228.787,0.756723,-1,-1,-1
295,-1,1890.32,410.678,27.42,180.472,0.504174,-1,-1,-1
296,-1,1108.65,351.548,127.12,445.897,0.99574,-1,-1,-1
296,-1,1534.45,387.405,129.61,331.399,0.992593,-1,-1,-1
296,-1,1686.91,546.938,108.81,198.833,0.991366,-1,-1,-1
296,-1,1327.22,349.992,173.39,452.706,0.988041,-1,-1,-1
296,-1,1229.71,327.419,99.36,486.643,0.980687,-1,-1,-1
296,-1,16.3675,517.457,99.7815,221.246,0.837674,-1,-1,-1
297,-1,1122.14,351.578,105.06,439.692,0.994648,-1,-1,-1
297,-1,1700.93,543.702,90.48,189.304,0.994161,-1,-1,-1
297,-1,1337.56,353.815,157.77,450.794,0.994095,-1,-1,-1
297,-1,1228.78,356.476,114.03,421.324,0.987671,-1,-1,-1
297,-1,1534.04,393.921,156.55,321.179,0.985678,-1,-1,-1
297,-1,16.4071,523.328,95.9209,221.613,0.885238,-1,-1,-1
298,-1,1126.35,353.923,94.13,417.319,0.995411,-1,-1,-1
298,-1,1361.89,325.416,145.93,504.977,0.995236,-1,-1,-1
298,-1,1702.02,543.975,86.06,178.535,0.995028,-1,-1,-1
298,-1,1558.35,398.672,119.4,299.407,0.991686,-1,-1,-1
298,-1,1231.47,329.101,110.83,443.775,0.989608,-1,-1,-1
298,-1,22.2036,523.649,90.7574,229.566,0.936214,-1,-1,-1
298,-1,112.117,527.844,74.751,243.014,0.574301,-1,-1,-1
299,-1,1345.48,350.193,193.63,447.367,0.995772,-1,-1,-1
299,-1,1704.75,545.344,79.23,175.814,0.994989,-1,-1,-1
299,-1,1570.56,400.121,109.5,319.423,0.991754,-1,-1,-1
299,-1,1117.38,373.494,130.02,405.399,0.990688,-1,-1,-1
299,-1,1241.05,341.263,107.83,436.478,0.98761,-1,-1,-1
299,-1,26.9513,525.679,82.2857,222.138,0.918686,-1,-1,-1
300,-1,1361.55,346.88,149.97,463.699,0.995517,-1,-1,-1
300,-1,1132.75,353.724,112.25,439.076,0.992601,-1,-1,-1
300,-1,1697.58,559.912,94.27,178.998,0.991775,-1,-1,-1
300,-1,1218.82,336.974,149,451.062,0.988636,-1,-1,-1
300,-1,1581.18,380.487,96.36,329.99,0.986546,-1,-1,-1
300,-1,26.862,523.673,85.414,228.983,0.945881,-1,-1,-1
301,-1,1370.9,337.462,144.26,471.136,0.996869,-1,-1,-1
301,-1,1119.41,363.131,127.06,420.228,0.993693,-1,-1,-1
301,-1,1691.16,561.803,88.52,161.074,0.993629,-1,-1,-1
301,-1,1573.32,389.116,99.6,327.886,0.98755,-1,-1,-1
301,-1,1248.38,352.519,118.47,413.05,0.975552,-1,-1,-1
301,-1,24.1913,519.227,94.4417,234.848,0.916176,-1,-1,-1
302,-1,1377.42,357.991,168.01,387.572,0.997677,-1,-1,-1
302,-1,1123.66,351.507,133.49,426.714,0.99202,-1,-1,-1
302,-1,1700.39,545.756,90.84,180.605,0.99143,-1,-1,-1
302,-1,1582.89,401.305,97.5,332.36,0.98216,-1,-1,-1
302,-1,1227.86,331.062,165.93,443.192,0.969088,-1,-1,-1
302,-1,23.0474,518.679,97.4456,234.566,0.880163,-1,-1,-1
303,-1,1376.66,358.206,170.48,397.751,0.997541,-1,-1,-1
303,-1,1129.81,361.803,141.43,411.625,0.994229,-1,-1,-1
303,-1,1706.9,524.714,69.47,200.931,0.987617,-1,-1,-1
303,-1,1267.2,340.475,101.41,447.213,0.98463,-1,-1,-1
303,-1,1583.51,390.103,98.46,326.125,0.982837,-1,-1,-1
303,-1,25.8439,518.228,87.3301,255.47,0.918723,-1,-1,-1
304,-1,1396.31,357.092,127.66,420.207,0.994868,-1,-1,-1
304,-1,1703.12,530.379,86.32,210.209,0.990322,-1,-1,-1
304,-1,1270.58,345.29,112.04,424.622,0.985874,-1,-1,-1
304,-1,1583.27,503.971,116.48,217.288,0.985193,-1,-1,-1
304,-1,1142.78,382.432,114.53,388.763,0.983907,-1,-1,-1
304,-1,29.3224,515.317,82.6546,255.4,0.932018,-1,-1,-1
305,-1,1395.94,371.497,132.93,390.229,0.993872,-1,-1,-1
305,-1,1155.35,355.057,122.43,415.462,0.993584,-1,-1,-1
305,-1,1706.96,530.901,76.15,204.162,0.990024,-1,-1,-1
305,-1,1577.44,441.207,96.84,264.944,0.98693,-1,-1,-1
305,-1,1280.22,370.809,116.91,386.342,0.981098,-1,-1,-1
305,-1,29.0669,513.734,83.4951,252.474,0.913524,-1,-1,-1
305,-1,1486.47,375.689,69.1,376.677,0.575581,-1,-1,-1
306,-1,1398.38,371.235,137.47,404.317,0.993441,-1,-1,-1
306,-1,1162.05,381.327,133.27,382.054,0.989961,-1,-1,-1
306,-1,1706.68,531.264,72.78,193.319,0.989588,-1,-1,-1
306,-1,1585.29,500.514,108.46,214.27,0.988321,-1,-1,-1
306,-1,1282.28,347.092,106.83,392.009,0.982645,-1,-1,-1
306,-1,28.8753,515.499,82.4947,253.458,0.900233,-1,-1,-1
306,-1,1498.03,376.651,68.82,356.112,0.545752,-1,-1,-1
307,-1,1400.5,361.905,144.7,441.073,0.995648,-1,-1,-1
307,-1,1168.33,344.121,124.66,443.427,0.992409,-1,-1,-1
307,-1,1600.51,419.249,88.68,297.804,0.989933,-1,-1,-1
307,-1,1711.13,535.604,86.55,211.147,0.98271,-1,-1,-1
307,-1,1292.16,354.531,108.03,404.056,0.980614,-1,-1,-1
307,-1,19.8492,519.241,89.8278,242.934,0.921433,-1,-1,-1
308,-1,1393.6,354.248,177.25,411.344,0.996456,-1,-1,-1
308,-1,1173.21,355.264,113.02,418.166,0.995726,-1,-1,-1
308,-1,1712.32,535.724,86.46,194.788,0.990472,-1,-1,-1
308,-1,1602.57,440.459,88.49,252.141,0.987161,-1,-1,-1
308,-1,1304.51,362.799,97.5,379.017,0.981393,-1,-1,-1
308,-1,14.8009,527.321,97.4691,227.723,0.929855,-1,-1,-1
309,-1,1433.66,348.875,132.66,435.772,0.996596,-1,-1,-1
309,-1,1179.56,384.665,122.2,370.365,0.995028,-1,-1,-1
309,-1,1697.97,532.431,80.72,194.935,0.985953,-1,-1,-1
309,-1,1610.37,390.687,80.57,311.295,0.976934,-1,-1,-1
309,-1,1306.86,351.829,93.36,395.238,0.966851,-1,-1,-1
309,-1,15.8558,518.145,93.3102,234.812,0.913185,-1,-1,-1
310,-1,1180.81,386.612,127.14,391.93,0.995722,-1,-1,-1
310,-1,1432.46,348.377,137.42,450.673,0.995154,-1,-1,-1
310,-1,1693.05,546.709,100.02,186.548,0.990923,-1,-1,-1
310,-1,1599.35,404.21,99.47,299.908,0.986923,-1,-1,-1
310,-1,1313.55,352.072,93.97,404.455,0.984515,-1,-1,-1
310,-1,43.9254,529.775,80.2286,253.063,0.937105,-1,-1,-1
311,-1,1427,353.961,146.57,426.139,0.997117,-1,-1,-1
311,-1,1709.71,533.562,89.53,206.018,0.993423,-1,-1,-1
311,-1,1182.62,394.374,124.14,388.082,0.993039,-1,-1,-1
311,-1,1597.2,427.783,93.58,273.164,0.985177,-1,-1,-1
311,-1,1325.69,347.161,89.14,404.818,0.981487,-1,-1,-1
311,-1,20.1076,547.009,81.7524,212.546,0.975295,-1,-1,-1
312,-1,1445.26,368.888,134.36,417.2,0.99526,-1,-1,-1
312,-1,1184.57,357.251,123.33,403.01,0.994892,-1,-1,-1
312,-1,1711.02,559.224,71.19,174.245,0.988586,-1,-1,-1
312,-1,1597.72,429.576,97.86,287.261,0.982036,-1,-1,-1
312,-1,1311.91,348.005,101.65,401.581,0.977195,-1,-1,-1
312,-1,20.0321,513.12,99.1059,242.375,0.944034,-1,-1,-1
313,-1,1434.42,377.855,136.02,410.138,0.997773,-1,-1,-1
313,-1,1187.63,369.205,137.01,407.4,0.992384,-1,-1,-1
313,-1,1711.38,548.317,71.31,187.48,0.991828,-1,-1,-1
313,-1,1322.64,358.932,91.51,408.252,0.982473,-1,-1,-1
313,-1,1593.53,430.694,97.93,279.4,0.981692,-1,-1,-1
313,-1,23.1786,535.881,87.4404,230.041,0.943557,-1,-1,-1
313,-1,1660.23,389.644,71.1,323.088,0.617012,-1,-1,-1
314,-1,1435.26,355.194,135.79,434.875,0.996434,-1,-1,-1
314,-1,1199.24,365.943,135.04,390.377,0.995772,-1,-1,-1
314,-1,1710.07,528.815,78.33,213.834,0.988102,-1,-1,-1
314,-1,1588.7,436.067,92.66,293.417,0.98491,-1,-1,-1
314,-1,1328.54,355.814,89.65,393.582,0.979843,-1,-1,-1
314,-1,15.0643,518.391,102.735,252.907,0.957392,-1,-1,-1
314,-1,1672.7,391.829,80.71,283.824,0.53468,-1,-1,-1
315,-1,1433.01,366.707,149.11,409.461,0.997821,-1,-1,-1
315,-1,1208.17,397.273,127.69,372.541,0.994085,-1,-1,-1
315,-1,1590.4,442.744,92.56,289.884,0.981534,-1,-1,-1
315,-1,1696.12,526.47,85.11,210.93,0.979661,-1,-1,-1
315,-1,1326.05,362.957,94.79,380.025,0.975038,-1,-1,-1
315,-1,14.9521,507.731,101.886,246.176,0.942437,-1,-1,-1
315,-1,1652.26,382.243,89.13,304.123,0.749632,-1,-1,-1
316,-1,1437.18,388.087,128.2,390.007,0.995873,-1,-1,-1
316,-1,1212.75,385.872,124.59,368.702,0.994716,-1,-1,-1
316,-1,1588.97,447.556,90.84,279.54,0.98291,-1,-1,-1
316,-1,1694.19,542.232,83.42,186.695,0.979306,-1,-1,-1
316,-1,1325.43,359.881,96.73,387.413,0.968093,-1,-1,-1
316,-1,42.0161,519.317,83.2149,232.56,0.966111,-1,-1,-1
316,-1,1651.02,399.015,90.24,293.414,0.767843,-1,-1,-1
317,-1,1403.6,385.744,202.39,382.519,0.995604,-1,-1,-1
317,-1,1219.24,374.916,113,383.448,0.9894,-1,-1,-1
317,-1,26.2115,523.974,84.8645,229.869,0.977626,-1,-1,-1
317,-1,1702.02,544.93,71.08,186.665,0.956267,-1,-1,-1
317,-1,1594.77,455.114,79.43,261.39,0.952432,-1,-1,-1
317,-1,1339.84,352.894,87.2,414.994,0.937017,-1,-1,-1
317,-1,1673.18,401.333,69.78,328.49,0.877186,-1,-1,-1
318,-1,1420.34,367.272,185.38,414.288,0.997059,-1,-1,-1
318,-1,1220.34,400.756,122.21,375.247,0.985582,-1,-1,-1
318,-1,1704.36,530.555,64.66,185.308,0.984851,-1,-1,-1
318,-1,25.4619,526.076,75.1911,245.332,0.975582,-1,-1,-1
318,-1,1595.81,449.468,71.57,260.221,0.964605,-1,-1,-1
318,-1,1339.91,330.017,81.19,426.429,0.91044,-1,-1,-1
318,-1,1655.16,389.459,106.55,268.931,0.726377,-1,-1,-1
319,-1,1415.47,388.238,205,378.754,0.996383,-1,-1,-1
319,-1,1211.48,394.686,132.62,379.624,0.989875,-1,-1,-1
319,-1,34.4138,534.616,76.0992,233.695,0.984347,-1,-1,-1
319,-1,1709.57,507.145,62.13,226.594,0.976515,-1,-1,-1
319,-1,1594.54,444.477,72.45,260.999,0.973143,-1,-1,-1
319,-1,1333.57,355.203,83.51,380.825,0.933157,-1,-1,-1
319,-1,1680.87,424.196,62.85,317.302,0.692373,-1,-1,-1
319,-1,1179.74,429.231,77.93,267.239,0.550501,-1,-1,-1
320,-1,1416.03,401.557,212.83,359.349,0.996113,-1,-1,-1
320,-1,1593.58,465.593,83.28,239.932,0.98152,-1,-1,-1
320,-1,1706.78,509.092,65.84,231.681,0.979438,-1,-1,-1
320,-1,1216.48,401.709,122.79,361.778,0.975279,-1,-1,-1
320,-1,36.7053,530.123,72.3677,241.98,0.972462,-1,-1,-1
320,-1,1330.9,367.358,92.43,389.231,0.962406,-1,-1,-1
320,-1,1156.27,415.049,81.84,286.188,0.716029,-1,-1,-1
320,-1,1669.31,398.911,87.14,286.771,0.601598,-1,-1,-1
321,-1,1455.7,376.867,135.73,399.948,0.996668,-1,-1,-1
321,-1,1196.86,408.773,189.47,332.873,0.97851,-1,-1,-1
321,-1,35.7279,524.769,77.7641,252.044,0.975352,-1,-1,-1
321,-1,1595.99,453.138,77.45,259.834,0.972536,-1,-1,-1
321,-1,1344.16,354.334,78.54,380.195,0.969977,-1,-1,-1
321,-1,1687.35,429.335,84.45,310.244,0.951961,-1,-1,-1
321,-1,1162.72,434.379,64.68,219.53,0.710051,-1,-1,-1
321,-1,108.005,517.556,72.481,269.444,0.508061,-1,-1,-1
322,-1,1458.57,381.938,151.82,389.964,0.993557,-1,-1,-1
322,-1,1681.18,517.678,107.35,206.391,0.981214,-1,-1,-1
322,-1,26.0455,518.361,89.4855,239.558,0.978441,-1,-1,-1
322,-1,1604.65,425.87,65.24,304.234,0.973171,-1,-1,-1
322,-1,1341.06,343.593,81.84,414.878,0.966579,-1,-1,-1
322,-1,1184.82,391.382,99.56,331.223,0.957218,-1,-1,-1
322,-1,1264.79,380.706,110.09,353.335,0.902569,-1,-1,-1
322,-1,1157.72,428.802,64.89,223.574,0.706677,-1,-1,-1
322,-1,1690.39,385.602,68.74,251.557,0.690728,-1,-1,-1
322,-1,112.276,512.947,71.165,263.382,0.667951,-1,-1,-1
323,-1,1431.71,389.928,181.03,350.292,0.993268,-1,-1,-1
323,-1,1681.45,442.645,82.2,322.101,0.979583,-1,-1,-1
323,-1,1611.3,436.457,61.64,296.135,0.975022,-1,-1,-1
323,-1,25.1291,517.396,89.3429,239.235,0.965179,-1,-1,-1
323,-1,1348.08,357.734,72.86,395.712,0.965109,-1,-1,-1
323,-1,1246.59,380.083,111.15,370.068,0.95499,-1,-1,-1
323,-1,1177.37,401.604,96.39,320.86,0.953311,-1,-1,-1
323,-1,111.501,523.934,74.597,253.574,0.737734,-1,-1,-1
324,-1,1457.8,367.259,139.14,408.549,0.994863,-1,-1,-1
324,-1,1176.27,399.68,95.07,339.234,0.975625,-1,-1,-1
324,-1,1602.8,442.145,63.16,273.166,0.961957,-1,-1,-1
324,-1,1261.97,377.059,113.86,371.247,0.958921,-1,-1,-1
324,-1,1677.16,417.687,87.38,331.91,0.957872,-1,-1,-1
324,-1,1344.68,358.418,68.59,385.787,0.949331,-1,-1,-1
324,-1,46.0791,515.688,82.1509,238.938,0.924992,-1,-1,-1
324,-1,1892.82,432.618,25.46,175.527,0.802216,-1,-1,-1
324,-1,1152.03,422.882,69.23,251.324,0.638438,-1,-1,-1
324,-1,115.222,526.214,72.015,247.429,0.585145,-1,-1,-1
325,-1,1441.04,386.62,159.17,376.565,0.996856,-1,-1,-1
325,-1,1270.85,390.156,112.01,349.223,0.974241,-1,-1,-1
325,-1,1341.95,354.328,72,400.602,0.964583,-1,-1,-1
325,-1,20.7187,500.631,100.52,243.272,0.960452,-1,-1,-1
325,-1,1606.23,388.313,59.09,327.348,0.950032,-1,-1,-1
325,-1,1678.13,501.518,87.66,216.429,0.93771,-1,-1,-1
325,-1,1189.86,403.889,79.72,316.447,0.926384,-1,-1,-1
325,-1,1680.99,408.338,87.63,172.787,0.721748,-1,-1,-1
325,-1,113.01,513.673,73.337,266.431,0.629619,-1,-1,-1
326,-1,1454.43,386.393,139.93,373.875,0.995053,-1,-1,-1
326,-1,1183.62,390.833,89.27,335.914,0.985227,-1,-1,-1
326,-1,1264.99,373.581,118.3,377.227,0.972954,-1,-1,-1
326,-1,1675.48,392.71,90.35,336.983,0.963729,-1,-1,-1
326,-1,1605.6,387.495,60.02,332.243,0.953986,-1,-1,-1
326,-1,1357.15,343.81,68.72,398.596,0.950924,-1,-1,-1
326,-1,30.2657,499.622,81.6613,263.523,0.897356,-1,-1,-1
326,-1,115.6,525.371,75.711,252.75,0.703864,-1,-1,-1
327,-1,1453.8,391.652,149.46,381.365,0.997144,-1,-1,-1
327,-1,1175.59,397.345,103.86,335.552,0.988972,-1,-1,-1
327,-1,1345.16,372.362,75.44,386.077,0.972134,-1,-1,-1
327,-1,1276.56,393.588,107.47,360.516,0.969773,-1,-1,-1
327,-1,1677.63,401.827,90.68,326.861,0.965129,-1,-1,-1
327,-1,1601.6,397.633,69.67,330.134,0.952558,-1,-1,-1
327,-1,13.9669,514.289,97.9761,238.655,0.951994,-1,-1,-1
327,-1,121.946,519.385,71.781,257.185,0.85679,-1,-1,-1
328,-1,1460.31,368.895,148.41,385.724,0.99773,-1,-1,-1
328,-1,1174.03,387.355,107.37,347.437,0.988611,-1,-1,-1
328,-1,11.8983,514.332,100.842,245.979,0.964853,-1,-1,-1
328,-1,1352.59,373.942,68.23,362.078,0.959128,-1,-1,-1
328,-1,1613.24,417.973,62.84,288.281,0.953562,-1,-1,-1
328,-1,1703.83,409.492,76.79,259.82,0.942447,-1,-1,-1
328,-1,1278.33,376.849,103.08,366.643,0.937643,-1,-1,-1
328,-1,121.125,525.038,72.593,263.452,0.853841,-1,-1,-1
328,-1,1891.76,433.236,26.28,161.744,0.775063,-1,-1,-1
329,-1,1465.61,365.022,136.56,411.524,0.996905,-1,-1,-1
329,-1,1150.64,414.11,114.25,309.328,0.984375,-1,-1,-1
329,-1,1679.92,378.995,95.44,342.755,0.97823,-1,-1,-1
329,-1,42.2319,518.945,87.0641,239.603,0.967093,-1,-1,-1
329,-1,1353.99,371.89,86,399.398,0.961132,-1,-1,-1
329,-1,1281.92,384.667,100.19,364.228,0.944598,-1,-1,-1
329,-1,1616.64,400.19,55.27,325.205,0.932324,-1,-1,-1
329,-1,123.188,514.664,71.611,262.283,0.83528,-1,-1,-1
330,-1,1466.03,406.347,132.53,355.955,0.996412,-1,-1,-1
330,-1,1152.52,408.247,128.39,320.945,0.988228,-1,-1,-1
330,-1,27.3434,535.487,79.9756,242.314,0.967819,-1,-1,-1
330,-1,1692.84,398.78,105.25,292.711,0.966791,-1,-1,-1
330,-1,1351.25,377.975,92.59,373.437,0.965629,-1,-1,-1
330,-1,1286.98,387.005,83.01,358.242,0.963253,-1,-1,-1
330,-1,1610.41,398.859,60.36,311.289,0.948328,-1,-1,-1
330,-1,124.594,520.478,61.921,235.718,0.900804,-1,-1,-1
331,-1,1441.57,404.926,190.39,341.512,0.99491,-1,-1,-1
331,-1,1170.95,383.12,101.98,354.371,0.978737,-1,-1,-1
331,-1,119.7,528.34,72.777,230.381,0.976245,-1,-1,-1
331,-1,12.9135,519.123,94.6325,237.609,0.965574,-1,-1,-1
331,-1,1699.66,401.507,97.65,275.46,0.964234,-1,-1,-1
331,-1,1349.69,386.409,86.62,349.731,0.962477,-1,-1,-1
331,-1,1607.58,396.935,63.21,301.969,0.955301,-1,-1,-1
331,-1,1289.36,403.022,104.65,352.208,0.930569,-1,-1,-1
332,-1,1443.64,416.329,177.99,320.675,0.995433,-1,-1,-1
332,-1,1168.03,388.505,110.12,351.999,0.983322,-1,-1,-1
332,-1,1283.3,382.104,98.06,367.797,0.975795,-1,-1,-1
332,-1,1609.4,415.968,79.2,304.652,0.97,-1,-1,-1
332,-1,1361.78,373.987,76.5,353.799,0.967453,-1,-1,-1
332,-1,16.0581,538.649,87.7369,224.801,0.962055,-1,-1,-1
332,-1,1698.49,403.02,98.15,290.423,0.961856,-1,-1,-1
332,-1,120.946,537.902,74.487,216.839,0.960348,-1,-1,-1
332,-1,1777.3,427.144,42.87,218.225,0.840267,-1,-1,-1
332,-1,1143.56,459.341,55.86,214.766,0.618945,-1,-1,-1
333,-1,1438.63,417.064,189.34,336.055,0.994556,-1,-1,-1
333,-1,1288.57,390.152,106.09,356.997,0.979213,-1,-1,-1
333,-1,1146.91,393.58,127.13,345.131,0.97643,-1,-1,-1
333,-1,1613.52,419.343,73.72,298.311,0.96606,-1,-1,-1
333,-1,120.788,529.234,77.242,232.199,0.948813,-1,-1,-1
333,-1,1358.77,389.006,74.8,346.093,0.941692,-1,-1,-1
333,-1,20.7767,512.047,81.8763,261.215,0.940026,-1,-1,-1
333,-1,1692.66,405.882,99.13,287.419,0.938972,-1,-1,-1
333,-1,1778.06,439.892,41.24,209.265,0.696071,-1,-1,-1
333,-1,1120.54,448.885,69.63,235.576,0.669632,-1,-1,-1
334,-1,1439.12,413.08,186.41,332.656,0.993112,-1,-1,-1
334,-1,1604.29,414.454,85.4,301.895,0.980349,-1,-1,-1
334,-1,1303.1,395.01,97.23,358.403,0.974273,-1,-1,-1
334,-1,1172.92,372.255,112.84,389.428,0.963603,-1,-1,-1
334,-1,17.4827,510.242,92.9033,250.9,0.962982,-1,-1,-1
334,-1,1725.09,404.535,87.5,274.857,0.955126,-1,-1,-1
334,-1,118.416,516.626,84.499,253.458,0.916171,-1,-1,-1
334,-1,1385.42,363.443,85.67,357.124,0.900005,-1,-1,-1
334,-1,1659.19,399.913,59.43,294.488,0.591611,-1,-1,-1
335,-1,1471.31,406.577,118.64,345.309,0.993048,-1,-1,-1
335,-1,1294.77,420.1,171.17,303.013,0.97253,-1,-1,-1
335,-1,1167.33,370.703,120.42,400.667,0.97157,-1,-1,-1
335,-1,31.3361,524.828,81.3879,239.478,0.969422,-1,-1,-1
335,-1,1601.12,422.44,89.84,306.719,0.964739,-1,-1,-1
335,-1,1722.73,385.626,81.92,282.26,0.941704,-1,-1,-1
335,-1,115.629,516.012,77.517,257.018,0.941552,-1,-1,-1
335,-1,1778.73,411.368,43.81,242.696,0.810049,-1,-1,-1
335,-1,1661.19,408.157,61.33,307.347,0.612813,-1,-1,-1
336,-1,1440.5,389.474,156.44,332.921,0.995176,-1,-1,-1
336,-1,1162.96,382.895,124.13,373.187,0.978031,-1,-1,-1
336,-1,1601.49,419.004,90.95,283.918,0.977911,-1,-1,-1
336,-1,1286.88,387.651,101.45,364.571,0.965474,-1,-1,-1
336,-1,1714.56,393.855,81.16,294.248,0.962062,-1,-1,-1
336,-1,21.2484,514.239,91.3996,230.435,0.952957,-1,-1,-1
336,-1,116.825,512.941,77.996,254.293,0.929864,-1,-1,-1
336,-1,1759.37,423.493,56.88,217.511,0.899664,-1,-1,-1
336,-1,1366.36,356.735,70.9,411.024,0.760813,-1,-1,-1
336,-1,1656.41,411.026,66.28,306.534,0.701606,-1,-1,-1
336,-1,1124.04,461.985,79.31,237.44,0.562491,-1,-1,-1
337,-1,1469.98,388.815,112.67,385.684,0.988765,-1,-1,-1
337,-1,1144.29,424.429,109.68,295.611,0.984963,-1,-1,-1
337,-1,1599,417.654,93.08,296.32,0.980882,-1,-1,-1
337,-1,1302.99,392.446,122.32,335.187,0.973205,-1,-1,-1
337,-1,1730.11,387.416,96.47,291.571,0.968756,-1,-1,-1
337,-1,116.338,515.936,87.448,239.136,0.906345,-1,-1,-1
337,-1,16.4328,507.218,98.7012,239.488,0.812942,-1,-1,-1
338,-1,1469.8,384.826,113.61,378.535,0.989219,-1,-1,-1
338,-1,1321.53,383.325,119.83,370.549,0.984358,-1,-1,-1
338,-1,1151.05,390.484,124.26,355.19,0.983516,-1,-1,-1
338,-1,1716.21,401.129,113.3,253.87,0.962855,-1,-1,-1
338,-1,1605.34,420.212,93.29,307.379,0.947544,-1,-1,-1
338,-1,14.8647,498.598,97.8873,237.753,0.920363,-1,-1,-1
338,-1,1677.53,542.878,64.34,179.119,0.73799,-1,-1,-1
339,-1,1477.86,373.992,95.88,399.008,0.995574,-1,-1,-1
339,-1,1328.73,386.023,117.14,360.393,0.989226,-1,-1,-1
339,-1,1158.51,400.822,116.4,331.626,0.980633,-1,-1,-1
339,-1,1740.03,388.754,86.65,288.476,0.978016,-1,-1,-1
339,-1,1608.21,394.122,93.66,335.812,0.969872,-1,-1,-1
339,-1,15.1187,496.661,95.7263,254.242,0.780795,-1,-1,-1
339,-1,119.455,537.391,83.377,213.608,0.666819,-1,-1,-1
340,-1,1475.58,410.461,99.13,328.638,0.996235,-1,-1,-1
340,-1,1331.37,385.709,119.57,370.952,0.993211,-1,-1,-1
340,-1,1142.55,423.814,114.07,312.724,0.98919,-1,-1,-1
340,-1,1748.45,413.184,80.7,248.256,0.981687,-1,-1,-1
340,-1,1608,408.173,97.32,315.583,0.968656,-1,-1,-1
340,-1,17.2708,488.27,89.8422,279.702,0.923134,-1,-1,-1
340,-1,113.404,512.695,86.633,251.652,0.847968,-1,-1,-1
341,-1,1332.34,379.05,136.91,369.718,0.996254,-1,-1,-1
341,-1,1474.32,399.339,103.96,349.885,0.996229,-1,-1,-1
341,-1,1740.82,400.205,84.98,289.36,0.983546,-1,-1,-1
341,-1,1165.4,377.379,117.09,391.25,0.979225,-1,-1,-1
341,-1,1612.48,413.061,99.16,310.661,0.96238,-1,-1,-1
341,-1,13.7303,504.94,99.2017,253.095,0.75253,-1,-1,-1
341,-1,1110.71,442.521,93.95,258.52,0.652032,-1,-1,-1
341,-1,108.332,528.346,89.011,224.115,0.57367,-1,-1,-1
342,-1,1482.86,351.453,91.93,412.708,0.996394,-1,-1,-1
342,-1,1327.77,387.83,137.92,353.377,0.987055,-1,-1,-1
342,-1,1758.28,390.023,81.82,285.608,0.982615,-1,-1,-1
342,-1,1163.4,383.823,121.88,385.352,0.974834,-1,-1,-1
342,-1,1600.62,417.124,93.43,295.119,0.965661,-1,-1,-1
342,-1,13.3408,505.753,101.727,276.14,0.923389,-1,-1,-1
342,-1,1659.77,438.523,84.39,275.168,0.772629,-1,-1,-1
342,-1,1120.17,442.355,81.28,243.465,0.69642,-1,-1,-1
342,-1,119.567,537.889,79.048,226.566,0.679333,-1,-1,-1
343,-1,1332.89,380.18,136.89,354.141,0.994241,-1,-1,-1
343,-1,1467.83,356.164,116.69,404.592,0.993551,-1,-1,-1
343,-1,1134.16,401.604,120.82,341.759,0.99205,-1,-1,-1
343,-1,1750.91,389.331,74.98,274.195,0.98503,-1,-1,-1
343,-1,1600.89,415.627,69.56,281.683,0.959931,-1,-1,-1
343,-1,22.0129,512.544,88.1371,258.045,0.927289,-1,-1,-1
343,-1,1661.55,464.686,82.73,271.551,0.832412,-1,-1,-1
343,-1,122.146,545.515,78.087,206.561,0.779719,-1,-1,-1
344,-1,1459.99,370.37,128.8,391.748,0.995337,-1,-1,-1
344,-1,1342.66,378.532,128.82,356.562,0.994951,-1,-1,-1
344,-1,1164.82,374.088,110.5,368.396,0.982806,-1,-1,-1
344,-1,1747.71,392.654,81.7,291.486,0.979587,-1,-1,-1
344,-1,1601.85,408.696,71.32,307.106,0.9535,-1,-1,-1
344,-1,18.9282,510.136,92.2968,256.546,0.949865,-1,-1,-1
344,-1,1663.86,427.916,72.22,283.243,0.835207,-1,-1,-1
344,-1,124.254,544.857,76.494,204.097,0.774119,-1,-1,-1
344,-1,1106.86,429.474,105.94,290.043,0.726227,-1,-1,-1
345,-1,1486.61,363.622,84.32,402.605,0.996519,-1,-1,-1
345,-1,1348.54,395.877,121.44,342.205,0.99539,-1,-1,-1
345,-1,1131.86,400.938,122.12,330.374,0.9862,-1,-1,-1
345,-1,1753.74,400.025,72.34,273.187,0.982568,-1,-1,-1
345,-1,20.7004,526.477,85.7626,231.952,0.96797,-1,-1,-1
345,-1,1608.22,414.381,68.18,294.445,0.897079,-1,-1,-1
345,-1,1648.75,422.859,90.02,281.485,0.864138,-1,-1,-1
345,-1,123.034,546.238,76.128,197.458,0.804874,-1,-1,-1
345,-1,1698.24,498.693,65.77,208.625,0.745666,-1,-1,-1
345,-1,1118.47,481.734,69.13,194.317,0.500793,-1,-1,-1
346,-1,1459.84,373.757,119.12,370.97,0.996625,-1,-1,-1
346,-1,1355.33,394.823,110.62,338.127,0.995549,-1,-1,-1
346,-1,1142.26,386.464,124.55,371.58,0.98843,-1,-1,-1
346,-1,1756.81,399.627,77.26,272.399,0.984199,-1,-1,-1
346,-1,21.6183,509.055,93.4037,236.787,0.963123,-1,-1,-1
346,-1,1649.59,443.753,103.67,264.897,0.924858,-1,-1,-1
346,-1,1609.08,418.233,72.61,271.269,0.888098,-1,-1,-1
346,-1,123.79,544.178,75.309,207.843,0.860924,-1,-1,-1
346,-1,1116.83,451.453,71.54,241.692,0.767524,-1,-1,-1
347,-1,1465.86,399.424,119.47,335.966,0.996765,-1,-1,-1
347,-1,1360.94,363.278,98.31,381.167,0.993919,-1,-1,-1
347,-1,1141.57,387.013,129.23,378.936,0.990054,-1,-1,-1
347,-1,1763.41,401.314,73.21,266.999,0.984514,-1,-1,-1
347,-1,19.5232,523.835,92.7758,230.612,0.96832,-1,-1,-1
347,-1,121.774,539.845,80.041,221.334,0.899962,-1,-1,-1
347,-1,1608.98,396.384,68,305.159,0.894662,-1,-1,-1
347,-1,1671.44,436.069,88.36,295.752,0.880415,-1,-1,-1
347,-1,1120.91,470.5,68.13,227.643,0.737932,-1,-1,-1
348,-1,1465.58,373.06,134.31,359.889,0.996915,-1,-1,-1
348,-1,1360.95,381.756,111,357.847,0.994452,-1,-1,-1
348,-1,1129.12,402.102,122.03,340.739,0.991757,-1,-1,-1
348,-1,1768.03,404.975,71.88,253.753,0.973988,-1,-1,-1
348,-1,20.9857,526.787,90.7063,226.055,0.969652,-1,-1,-1
348,-1,1663.18,422.237,98.23,300.756,0.936239,-1,-1,-1
348,-1,123.012,540.75,80.248,222.287,0.882524,-1,-1,-1
348,-1,1613.61,407.386,73.96,278.974,0.729154,-1,-1,-1
349,-1,1462.96,379.376,140.42,349.373,0.996433,-1,-1,-1
349,-1,1362.24,390.913,116.28,360.245,0.994944,-1,-1,-1
349,-1,1129.49,419.147,121.94,323.804,0.993468,-1,-1,-1
349,-1,1790.57,428.743,64.64,214.245,0.979172,-1,-1,-1
349,-1,20.8748,509.445,84.9482,260.002,0.963906,-1,-1,-1
349,-1,1679.16,519.68,87.61,206.483,0.926223,-1,-1,-1
349,-1,123.934,530.211,77.531,226,0.898967,-1,-1,-1
349,-1,1628.58,448.725,65.53,220.062,0.829521,-1,-1,-1
349,-1,1738.65,411.519,78.26,256.833,0.696575,-1,-1,-1
349,-1,1655.58,414.291,104.33,158.459,0.673958,-1,-1,-1
350,-1,1475.16,389.094,129.76,359.864,0.995776,-1,-1,-1
350,-1,1369.81,387.157,108.62,363.199,0.995416,-1,-1,-1
350,-1,1133.34,387.643,130.73,378.349,0.991072,-1,-1,-1
350,-1,1774.37,430.361,64.29,219.138,0.983541,-1,-1,-1
350,-1,18.9948,507.82,89.6272,253.939,0.96457,-1,-1,-1
350,-1,125.707,550.815,74.226,211.092,0.868601,-1,-1,-1
350,-1,1683.39,391.981,107.83,275.822,0.859818,-1,-1,-1
350,-1,1691.01,532.895,74.57,192.099,0.831849,-1,-1,-1
350,-1,1619.95,402.293,59.34,285.786,0.819022,-1,-1,-1
351,-1,1479.15,389.572,127.36,360.319,0.995948,-1,-1,-1
351,-1,1374.57,382.811,115.23,364.444,0.995481,-1,-1,-1
351,-1,1133.67,374.909,124.26,372.714,0.990719,-1,-1,-1
351,-1,1786.71,418.964,69.15,221.766,0.977509,-1,-1,-1
351,-1,20.2067,508.333,88.4383,243.263,0.959816,-1,-1,-1
351,-1,1663.9,403.983,106.33,289.5,0.926783,-1,-1,-1
351,-1,125.787,548.497,72.148,219.818,0.91307,-1,-1,-1
351,-1,1627.93,392.501,60.6,300.115,0.89696,-1,-1,-1
352,-1,1117.14,390.182,141.44,353.164,0.997359,-1,-1,-1
352,-1,1363.77,348.161,103.28,404.726,0.995639,-1,-1,-1
352,-1,1492.93,392.878,114.86,348.645,0.994376,-1,-1,-1
352,-1,1777.65,422.371,75.58,248.179,0.973146,-1,-1,-1
352,-1,33.276,510.698,95.798,238.02,0.968348,-1,-1,-1
352,-1,1685.07,405.513,102.8,312.814,0.910057,-1,-1,-1
352,-1,125.047,519.935,73.081,234.123,0.879429,-1,-1,-1
352,-1,1633.22,410.296,79.73,295.823,0.842531,-1,-1,-1
352,-1,1252.16,351.812,97.64,165.978,0.502474,-1,-1,-1
353,-1,1103.15,395.072,150.58,350.109,0.997572,-1,-1,-1
353,-1,1371.71,364.271,97.81,384.97,0.995271,-1,-1,-1
353,-1,1497.5,390.566,111.36,341.783,0.992738,-1,-1,-1
353,-1,1789.3,441.407,63.14,180.028,0.968596,-1,-1,-1
353,-1,19.5757,504.061,92.5293,249.966,0.96633,-1,-1,-1
353,-1,1681.06,392.948,113.19,320.701,0.937541,-1,-1,-1
353,-1,1629.25,439.785,70.44,217.945,0.882295,-1,-1,-1
353,-1,124.115,545.479,73.784,208.191,0.834439,-1,-1,-1
353,-1,1251.51,364.361,98.96,155.532,0.618848,-1,-1,-1
354,-1,1111.94,402.587,141.61,344.658,0.99707,-1,-1,-1
354,-1,1505.71,393.681,94.97,331.168,0.995817,-1,-1,-1
354,-1,1378.69,384.1,91.93,356.704,0.995186,-1,-1,-1
354,-1,1770.56,436.085,72.46,176.352,0.970432,-1,-1,-1
354,-1,19.7418,502.187,92.3532,257.67,0.964503,-1,-1,-1
354,-1,1695.21,422.704,128.88,286.135,0.95745,-1,-1,-1
354,-1,132.529,539.164,60.462,195.571,0.939082,-1,-1,-1
354,-1,1641.92,411.338,76.76,287.58,0.813265,-1,-1,-1
354,-1,1254.5,351.96,97.57,159.256,0.646057,-1,-1,-1
355,-1,1101.32,376.927,157.8,392.568,0.997076,-1,-1,-1
355,-1,1498.28,395.088,121.73,339.009,0.995761,-1,-1,-1
355,-1,1391.85,371.747,92.8,354.753,0.993461,-1,-1,-1
355,-1,1692.53,416.857,137.64,289.79,0.972364,-1,-1,-1
355,-1,1775.97,432.061,76.18,183.385,0.970905,-1,-1,-1
355,-1,18.4649,504.984,93.2401,262.041,0.958739,-1,-1,-1
355,-1,120.306,546.013,74.24,234.235,0.953967,-1,-1,-1
355,-1,1655.68,428.759,71.71,271.361,0.869691,-1,-1,-1
355,-1,1621.84,411.726,60.29,267.53,0.779368,-1,-1,-1
355,-1,1251.29,357.247,104.32,156.163,0.699286,-1,-1,-1
356,-1,1095.55,357.442,166.03,417.422,0.99741,-1,-1,-1
356,-1,1512.15,385.061,89.88,338.816,0.99495,-1,-1,-1
356,-1,1369.64,407.57,120.28,326.533,0.993372,-1,-1,-1
356,-1,1709.56,395.006,124.27,334.253,0.971729,-1,-1,-1
356,-1,18.5378,505.592,92.5582,262.748,0.964291,-1,-1,-1
356,-1,127.064,536.057,62.639,199.418,0.945266,-1,-1,-1
356,-1,1786.35,411.31,68.81,257.179,0.92738,-1,-1,-1
356,-1,1251.5,356.816,106.13,152.6,0.805642,-1,-1,-1
356,-1,1657.2,415.972,106.02,290.482,0.802032,-1,-1,-1
356,-1,1627.36,437.643,48.49,215.302,0.585513,-1,-1,-1
356,-1,1820.96,453.187,53.95,165.144,0.567721,-1,-1,-1
357,-1,1090.22,376.297,167.36,359.702,0.997529,-1,-1,-1
357,-1,1500.05,376.756,91.62,340.451,0.992029,-1,-1,-1
357,-1,1414.49,371.92,69.98,345.807,0.98869,-1,-1,-1
357,-1,19.6702,503.816,92.7928,266.459,0.960487,-1,-1,-1
357,-1,1708.93,410.664,125.51,327.517,0.950392,-1,-1,-1
357,-1,1784.82,415.048,64.21,256.022,0.936293,-1,-1,-1
357,-1,128.195,530.612,62.976,204.584,0.915522,-1,-1,-1
357,-1,1250.73,355.242,107.52,151.401,0.78336,-1,-1,-1
357,-1,1645.64,395.722,67.07,288.287,0.774773,-1,-1,-1
357,-1,1672.19,446.439,93.58,257.668,0.706904,-1,-1,-1
357,-1,1818.97,454.752,56.74,177.208,0.570393,-1,-1,-1
358,-1,1102.41,394.713,125.82,366.402,0.993629,-1,-1,-1
358,-1,1500.32,402.659,113.66,315.338,0.99275,-1,-1,-1
358,-1,1395.36,376.834,99.57,363.046,0.988245,-1,-1,-1
358,-1,18.786,504.745,93.699,260.529,0.96895,-1,-1,-1
358,-1,1760.81,408.002,100.51,288.975,0.964656,-1,-1,-1
358,-1,1687.18,381.412,128.09,363.846,0.94214,-1,-1,-1
358,-1,119.759,511.542,70.854,243.524,0.904475,-1,-1,-1
358,-1,1643.93,415.313,79.86,277.762,0.813579,-1,-1,-1
358,-1,1248.08,356.66,109.61,155.933,0.805678,-1,-1,-1
359,-1,1107.27,359.934,155.61,403.261,0.995501,-1,-1,-1
359,-1,1500.04,400.446,117.03,312.859,0.99273,-1,-1,-1
359,-1,1384.2,407.091,132.23,314.872,0.991604,-1,-1,-1
359,-1,19.7294,506.736,92.6336,258.393,0.97298,-1,-1,-1
359,-1,1764.15,398.697,99.17,305.673,0.964813,-1,-1,-1
359,-1,121.505,541.503,79.964,216.939,0.951092,-1,-1,-1
359,-1,1678.62,409.236,137.25,333.212,0.940427,-1,-1,-1
359,-1,1643.84,405.298,62.02,286.889,0.809506,-1,-1,-1
359,-1,1698.47,505.611,56.33,206.924,0.622612,-1,-1,-1
359,-1,1256.92,369.591,88.81,176.728,0.560939,-1,-1,-1
360,-1,1119.47,355.821,143.68,432.037,0.995308,-1,-1,-1
360,-1,1516.29,390.417,106.33,334.147,0.987731,-1,-1,-1
360,-1,1400.56,387.6,111.8,328.336,0.987201,-1,-1,-1
360,-1,116.623,506.675,78.717,245.73,0.982399,-1,-1,-1
360,-1,23.3007,515.924,84.6923,229.081,0.963463,-1,-1,-1
360,-1,1767.53,408.547,96.43,282.354,0.956086,-1,-1,-1
360,-1,1679.64,409.614,117.59,329.751,0.93483,-1,-1,-1
360,-1,1696.07,535.48,59.4,190.616,0.882837,-1,-1,-1
360,-1,1248.09,356.121,106.69,151.557,0.806975,-1,-1,-1
360,-1,2.15673,791.311,85.5841,157.782,0.633519,-1,-1,-1
360,-1,1670.9,469.695,43.03,220.069,0.581216,-1,-1,-1
361,-1,1118.36,358.073,142.27,406.189,0.996441,-1,-1,-1
361,-1,113.032,504.096,83.752,246.289,0.989075,-1,-1,-1
361,-1,1511.76,398.36,106.72,301.822,0.989027,-1,-1,-1
361,-1,1394.25,401.243,159.61,332.954,0.986625,-1,-1,-1
361,-1,1775.51,425.001,89.81,273.971,0.953147,-1,-1,-1
361,-1,1709.5,389.289,111.88,341.784,0.95021,-1,-1,-1
361,-1,22.3219,504.586,83.5651,280.62,0.934129,-1,-1,-1
361,-1,1705.41,533.104,56.11,190.656,0.779939,-1,-1,-1
361,-1,0,720.273,98.0915,270.95,0.749334,-1,-1,-1
361,-1,1575.27,409.937,72.19,273.575,0.692092,-1,-1,-1
361,-1,1664.08,442.979,49.82,213.162,0.558495,-1,-1,-1
362,-1,1098,372.893,155.68,379.009,0.995112,-1,-1,-1
362,-1,1421.42,386.398,126.46,325.333,0.986256,-1,-1,-1
362,-1,1523.85,415.411,115.68,315.466,0.986094,-1,-1,-1
362,-1,112.42,532.349,79.547,221.063,0.982809,-1,-1,-1
362,-1,1781.03,403.945,91.55,295.094,0.972171,-1,-1,-1
362,-1,0,560.23,128.841,419.506,0.96867,-1,-1,-1
362,-1,1710.3,534.31,62.45,186.353,0.92105,-1,-1,-1
362,-1,15.9191,506.189,86.6789,240.053,0.840864,-1,-1,-1
362,-1,1693.84,466.144,144.88,279.067,0.793655,-1,-1,-1
362,-1,1246.78,356.523,111.03,155.717,0.782275,-1,-1,-1
363,-1,1068.59,373.01,203.91,398.719,0.995117,-1,-1,-1
363,-1,1523.25,418.041,124.06,311.573,0.984505,-1,-1,-1
363,-1,1779.08,408.221,104.7,310.853,0.981207,-1,-1,-1
363,-1,1415.28,375.64,133.69,357.831,0.974495,-1,-1,-1
363,-1,110.476,529.53,83.312,247.972,0.958756,-1,-1,-1
363,-1,1705.12,490.155,96.1,263.741,0.951975,-1,-1,-1
363,-1,22.7045,497.753,89.2285,346.674,0.92995,-1,-1,-1
363,-1,1247.1,354.757,109.52,154.912,0.784078,-1,-1,-1
363,-1,22.1416,731.133,146.641,261.514,0.629698,-1,-1,-1
363,-1,0,233.005,64.9423,411.784,0.608381,-1,-1,-1
364,-1,1529.14,412.731,118.55,308.863,0.991355,-1,-1,-1
364,-1,1098.5,382.743,140.77,403.878,0.990403,-1,-1,-1
364,-1,1780.44,391.199,103.47,311.166,0.975171,-1,-1,-1
364,-1,1423.12,391.412,102.71,317.755,0.962618,-1,-1,-1
364,-1,0,211.624,93.8367,552.224,0.961028,-1,-1,-1
364,-1,31.338,485.687,97.591,273.502,0.922798,-1,-1,-1
364,-1,1709.4,494.846,85.81,207.524,0.919277,-1,-1,-1
364,-1,126.078,474.245,67.268,286.94,0.907859,-1,-1,-1
364,-1,1656.85,412.825,54.78,297.633,0.604809,-1,-1,-1
365,-1,1094.5,381.863,149.25,377.507,0.998117,-1,-1,-1
365,-1,1532.66,390.219,113.26,311.241,0.992238,-1,-1,-1
365,-1,1431.57,388.262,126.84,326.799,0.988504,-1,-1,-1
365,-1,0,218.299,110.8,552.453,0.972167,-1,-1,-1
365,-1,1786.55,402.373,93.43,310.509,0.957221,-1,-1,-1
365,-1,1714.76,488.634,96.23,237.917,0.903232,-1,-1,-1
365,-1,1659.4,396.714,66.59,295.085,0.769508,-1,-1,-1
365,-1,1257.28,342.671,101.08,188.485,0.689844,-1,-1,-1
365,-1,20.7233,595.294,151.514,355.797,0.511123,-1,-1,-1
366,-1,1101.83,375.079,127.23,396.049,0.997225,-1,-1,-1
366,-1,1443.16,390.166,111.88,339.342,0.991641,-1,-1,-1
366,-1,1551.05,399.902,115.4,305.716,0.983239,-1,-1,-1
366,-1,3.32439,225.803,140.61,706.688,0.977799,-1,-1,-1
366,-1,1740.97,392.967,116.17,328.702,0.961112,-1,-1,-1
366,-1,1675.76,413.788,66.5,287.225,0.848888,-1,-1,-1
366,-1,1723.21,510.286,58.3,183.754,0.705779,-1,-1,-1
366,-1,1257.12,342.601,100.55,186.466,0.703709,-1,-1,-1
367,-1,1090.25,367.944,143.52,392.495,0.996552,-1,-1,-1
367,-1,4.97995,233.988,192.809,734.593,0.996447,-1,-1,-1
367,-1,1552.43,393.634,94.7,343.627,0.991005,-1,-1,-1
367,-1,1440.48,401.794,106.37,308.753,0.987086,-1,-1,-1
367,-1,1805.31,394.02,75.97,342.209,0.946799,-1,-1,-1
367,-1,1728.33,492.377,107.32,242.73,0.884239,-1,-1,-1
367,-1,1674.84,420.653,78.67,242.471,0.861481,-1,-1,-1
367,-1,1250.43,346.351,106.15,182.153,0.667426,-1,-1,-1
368,-1,4.1064,223.416,198.869,669.362,0.997745,-1,-1,-1
368,-1,1093.31,355.188,137.87,408.732,0.996031,-1,-1,-1
368,-1,1558.03,397.977,100.47,335.243,0.989522,-1,-1,-1
368,-1,1439.37,395.996,106.84,341.462,0.981721,-1,-1,-1
368,-1,1803.93,401.045,95.31,317.228,0.980471,-1,-1,-1
368,-1,1740.55,400.68,109.65,342.012,0.964911,-1,-1,-1
368,-1,1684.53,430.194,71.27,224.183,0.896176,-1,-1,-1
368,-1,1248.6,346.613,107.09,183.656,0.629361,-1,-1,-1
369,-1,1099.17,352.192,158.69,421.7,0.996637,-1,-1,-1
369,-1,25.6507,245.567,190.322,704.701,0.995693,-1,-1,-1
369,-1,1573.61,422.011,100.27,290.051,0.989738,-1,-1,-1
369,-1,1447.35,401.064,103.5,311.498,0.983544,-1,-1,-1
369,-1,1801.27,397.164,105.56,337.561,0.981607,-1,-1,-1
369,-1,1739.67,395.786,102.54,325.726,0.897394,-1,-1,-1
369,-1,1689.51,403.798,69.33,263.495,0.773204,-1,-1,-1
370,-1,46.1824,216.893,191.697,739.987,0.997115,-1,-1,-1
370,-1,1062.11,330.507,179.24,468.544,0.996491,-1,-1,-1
370,-1,1568.14,410.277,91.3,305.034,0.988648,-1,-1,-1
370,-1,1443.56,392.921,119.67,321.652,0.987262,-1,-1,-1
370,-1,1781.47,402.1,116.4,320.074,0.974028,-1,-1,-1
370,-1,1696.91,410.297,66.86,269.962,0.918831,-1,-1,-1
370,-1,1760.52,528.621,80.18,199.109,0.695371,-1,-1,-1
370,-1,1254.65,337.024,115.16,195.579,0.688916,-1,-1,-1
371,-1,1078.35,348.106,172.04,427.828,0.997781,-1,-1,-1
371,-1,68.5431,246.795,192.289,677.811,0.995945,-1,-1,-1
371,-1,1560.24,416.15,116.94,310.97,0.994392,-1,-1,-1
371,-1,1443.01,389.516,121.78,335.148,0.991384,-1,-1,-1
371,-1,1798.05,392.167,108.72,340.616,0.966725,-1,-1,-1
371,-1,1685.84,432.765,64.62,231.381,0.944905,-1,-1,-1
371,-1,1250.97,338.737,116.06,194.444,0.609401,-1,-1,-1
372,-1,1065.35,349.626,174.73,446.328,0.997088,-1,-1,-1
372,-1,76.3226,241.937,240.282,680.962,0.992983,-1,-1,-1
372,-1,1557.11,397.286,150.44,321.776,0.992681,-1,-1,-1
372,-1,1447.58,399.197,122.16,332.364,0.990715,-1,-1,-1
372,-1,1827.06,397.405,88,359.348,0.950394,-1,-1,-1
372,-1,1765.05,377.744,107.35,374.888,0.940889,-1,-1,-1
372,-1,1699.39,432.219,63.65,233.763,0.926909,-1,-1,-1
372,-1,25.1416,497.434,81.2544,283.699,0.879366,-1,-1,-1
373,-1,1065.26,336.382,186.5,437.535,0.997445,-1,-1,-1
373,-1,101.694,272.316,253.3,667.833,0.994017,-1,-1,-1
373,-1,1568.38,399.985,137.18,303.617,0.990551,-1,-1,-1
373,-1,1449.64,396.697,114.54,323.11,0.990511,-1,-1,-1
373,-1,1771.57,389.293,125.78,368.911,0.978656,-1,-1,-1
373,-1,45.981,504.444,80.09,263.858,0.963851,-1,-1,-1
373,-1,1689.91,429.418,76.71,245.594,0.911518,-1,-1,-1
373,-1,1852.1,399.55,66.18,328.158,0.574694,-1,-1,-1
374,-1,1064.29,332.027,175.93,472.535,0.997067,-1,-1,-1
374,-1,114.325,268.918,253.446,673.864,0.994888,-1,-1,-1
374,-1,1577.95,385.302,117.92,341.755,0.993354,-1,-1,-1
374,-1,1453.6,398.783,113.61,309.38,0.990191,-1,-1,-1
374,-1,1773.97,401.675,132.5,343.358,0.983792,-1,-1,-1
374,-1,42.929,520.095,73.844,248.651,0.980218,-1,-1,-1
374,-1,1687.87,425.713,73.35,258.132,0.918354,-1,-1,-1
374,-1,1248.4,332.973,115.47,180.031,0.580601,-1,-1,-1
374,-1,1042.69,412.335,93.64,353.679,0.560637,-1,-1,-1
375,-1,1045.01,360.313,179.97,405.33,0.997615,-1,-1,-1
375,-1,1586.1,400.515,113.23,320.022,0.995324,-1,-1,-1
375,-1,160.832,247.366,218.107,641.14,0.994301,-1,-1,-1
375,-1,1458.97,403.182,133.12,330.097,0.989331,-1,-1,-1
375,-1,1780.03,376.993,124.66,367.736,0.973559,-1,-1,-1
375,-1,24.4679,509.746,79.6951,246.06,0.965612,-1,-1,-1
375,-1,1711.64,441.567,62.15,201.463,0.915129,-1,-1,-1
375,-1,1250.93,331.4,110.6,173.298,0.584448,-1,-1,-1
375,-1,1782.91,451.404,75.58,165.875,0.566863,-1,-1,-1
376,-1,1043.35,351.238,176.63,441.014,0.997511,-1,-1,-1
376,-1,179.987,290.705,215.805,612.785,0.996059,-1,-1,-1
376,-1,1596.48,393.276,107.15,332.784,0.992382,-1,-1,-1
376,-1,1471,411.666,118.11,300.237,0.987431,-1,-1,-1
376,-1,25.2741,505.294,83.1849,248.061,0.969778,-1,-1,-1
376,-1,1807.56,489.853,109.66,248.683,0.953332,-1,-1,-1
376,-1,1730.27,419.765,74.65,231.485,0.897159,-1,-1,-1
376,-1,304.404,598.537,133.814,304.915,0.858652,-1,-1,-1
377,-1,1042.87,361.337,187.31,433.406,0.998733,-1,-1,-1
377,-1,216.301,249.936,202.986,652.232,0.995693,-1,-1,-1
377,-1,1601.53,386.903,100.81,338.954,0.993466,-1,-1,-1
377,-1,1457.88,404.57,109.56,288.106,0.978358,-1,-1,-1
377,-1,1825.92,509.149,93.08,233.595,0.97642,-1,-1,-1
377,-1,20.9118,503.915,92.4882,266.841,0.965419,-1,-1,-1
377,-1,1724.25,441.32,87.6,194.752,0.91025,-1,-1,-1
377,-1,1782.36,365.783,133.7,273.983,0.673781,-1,-1,-1
377,-1,1409.46,408.613,81.42,257.882,0.654547,-1,-1,-1
377,-1,108.517,503.656,99.349,251.056,0.510982,-1,-1,-1
378,-1,1029.62,345.593,196.14,461.213,0.999025,-1,-1,-1
378,-1,244.494,255.291,169.999,620.238,0.994692,-1,-1,-1
378,-1,1604.02,399.164,102.39,311.859,0.992026,-1,-1,-1
378,-1,1457.25,408.831,127.54,291.701,0.983159,-1,-1,-1
378,-1,30.7497,525.269,80.5323,227.276,0.974104,-1,-1,-1
378,-1,1835.09,485.957,80.45,256.279,0.943944,-1,-1,-1
378,-1,1735.7,423.609,85,237.528,0.903193,-1,-1,-1
378,-1,103.066,515.127,91.411,226.592,0.846727,-1,-1,-1
378,-1,1423.28,416.487,82.21,253.698,0.777687,-1,-1,-1
378,-1,1785.76,371.52,119.74,282.072,0.673616,-1,-1,-1
378,-1,1698.42,406.875,68.44,263.961,0.566986,-1,-1,-1
379,-1,1032.29,331.214,171.85,444.788,0.998213,-1,-1,-1
379,-1,287.809,277.212,154.044,647.576,0.994601,-1,-1,-1
379,-1,1605.04,397.589,105.53,309.322,0.989278,-1,-1,-1
379,-1,1478.69,388.187,104.65,336.766,0.981071,-1,-1,-1
379,-1,40.7812,505.832,91.8548,260.435,0.976958,-1,-1,-1
379,-1,126.007,546.911,73.091,207.805,0.951394,-1,-1,-1
379,-1,1823.42,365.676,95.58,377.691,0.94354,-1,-1,-1
379,-1,1735.96,442.821,85.4,199.678,0.933244,-1,-1,-1
379,-1,1423.77,399.175,82.38,269.585,0.827356,-1,-1,-1
380,-1,1032.15,342.18,184.9,445.245,0.999179,-1,-1,-1
380,-1,310.437,264.388,168.661,688.217,0.993996,-1,-1,-1
380,-1,1608.24,393.45,105.74,306.591,0.988853,-1,-1,-1
380,-1,8.5761,502.133,117.513,248.779,0.981453,-1,-1,-1
380,-1,1471.77,401.613,119.88,306.758,0.979407,-1,-1,-1
380,-1,1743.31,456.75,83.37,199.227,0.955622,-1,-1,-1
380,-1,1837.83,443.072,80.8,304.524,0.870592,-1,-1,-1
380,-1,112.407,557.371,74.053,187.843,0.867987,-1,-1,-1
380,-1,1686.7,405.37,62.9,271.467,0.540379,-1,-1,-1
380,-1,1427.48,421.274,73.66,246.299,0.517262,-1,-1,-1
381,-1,1026.63,338.079,197.97,462.345,0.998869,-1,-1,-1
381,-1,318.018,288.798,153.508,585.605,0.994766,-1,-1,-1
381,-1,1614.65,391.36,100.69,306.682,0.988959,-1,-1,-1
381,-1,23.1903,504.401,108.056,247.812,0.986579,-1,-1,-1
381,-1,1500.25,374.619,76.97,324.317,0.983453,-1,-1,-1
381,-1,1837.47,369.247,81.53,363.662,0.958164,-1,-1,-1
381,-1,113.944,534.069,81.324,216.012,0.918513,-1,-1,-1
381,-1,1750.42,429.968,57.69,206.698,0.868043,-1,-1,-1
381,-1,1684.42,412.955,68.34,255.179,0.648461,-1,-1,-1
381,-1,1435.17,398.689,95.84,288.286,0.594392,-1,-1,-1
381,-1,1803.61,422.528,64.83,221.023,0.549479,-1,-1,-1
382,-1,1046.24,323.441,150.56,477.554,0.998159,-1,-1,-1
382,-1,339.581,290.67,164.914,569.502,0.996649,-1,-1,-1
382,-1,1615.44,396.667,116.41,300.354,0.98934,-1,-1,-1
382,-1,1470.85,388.157,111.63,315.288,0.985719,-1,-1,-1
382,-1,25.4438,525.577,82.8572,257.094,0.977251,-1,-1,-1
382,-1,1828.37,372.867,90.63,351.729,0.958687,-1,-1,-1
382,-1,1742.22,438.131,91.74,208.328,0.927452,-1,-1,-1
382,-1,102.85,533.979,80.438,225.03,0.848044,-1,-1,-1
382,-1,1415.37,418.974,87.03,259.509,0.759141,-1,-1,-1
382,-1,1005.49,354.977,89.74,363.459,0.726296,-1,-1,-1
382,-1,1821.75,452.324,34.15,143.074,0.713407,-1,-1,-1
382,-1,1682.28,431.295,69.85,220.251,0.705556,-1,-1,-1
382,-1,1794.59,426.667,81.65,224.382,0.653388,-1,-1,-1
383,-1,1026.13,317.518,169.45,480.029,0.995526,-1,-1,-1
383,-1,369.874,290.127,148.903,591.658,0.99176,-1,-1,-1
383,-1,1625.06,399.278,109.49,295.514,0.98987,-1,-1,-1
383,-1,23.6206,522.428,90.6944,233.786,0.986276,-1,-1,-1
383,-1,1491.36,399.47,74.54,283.505,0.98528,-1,-1,-1
383,-1,1830.51,340.317,78.57,371.425,0.969106,-1,-1,-1
383,-1,96.3278,531.407,86.6692,233.953,0.926904,-1,-1,-1
383,-1,1751.6,447.662,71.8,209.018,0.887215,-1,-1,-1
383,-1,1707.62,417.103,83.12,254.662,0.636554,-1,-1,-1
383,-1,1421.36,391.238,107.84,289.569,0.615008,-1,-1,-1
383,-1,1788.76,415.126,82.52,233.964,0.613994,-1,-1,-1
384,-1,1004.88,323.607,182.36,450.354,0.996871,-1,-1,-1
384,-1,372.229,290.467,174.83,619.471,0.993316,-1,-1,-1
384,-1,1467.65,403.974,127.6,291.332,0.987922,-1,-1,-1
384,-1,1629.76,380.712,117.8,319.051,0.982678,-1,-1,-1
384,-1,26.5682,499.097,98.2908,260.612,0.980293,-1,-1,-1
384,-1,1837.47,358.682,78.46,361.578,0.96198,-1,-1,-1
384,-1,88.9717,488.703,103.494,300.064,0.896746,-1,-1,-1
384,-1,1754.36,452.838,69.07,193.795,0.859937,-1,-1,-1
384,-1,1718.79,440.836,63.27,217.01,0.691703,-1,-1,-1
384,-1,1420.77,390.177,102.55,266.525,0.631273,-1,-1,-1
384,-1,1789.36,433.22,78.21,204.76,0.543205,-1,-1,-1
385,-1,1024.82,351.215,159.67,469.776,0.997234,-1,-1,-1
385,-1,396.256,296.355,157.763,589.875,0.994211,-1,-1,-1
385,-1,1472.72,411.793,131.36,290.647,0.989073,-1,-1,-1
385,-1,1630.36,398.469,110.51,305.024,0.988343,-1,-1,-1
385,-1,23.0298,520.019,85.1312,255.465,0.974969,-1,-1,-1
385,-1,103.475,517.871,91.211,256.656,0.931567,-1,-1,-1
385,-1,1847.48,339.837,71.52,414.453,0.927576,-1,-1,-1
385,-1,1790.65,423.349,59.43,198.228,0.880376,-1,-1,-1
385,-1,1719.61,442.126,75,196.288,0.827496,-1,-1,-1
385,-1,1765.55,463.08,48.87,161.151,0.700868,-1,-1,-1
386,-1,993.707,335.749,197.383,445.186,0.997607,-1,-1,-1
386,-1,417.89,306.942,156.904,607.301,0.992152,-1,-1,-1
386,-1,1479.58,414.712,132.97,278.094,0.990572,-1,-1,-1
386,-1,1630.12,389.852,118.17,304.226,0.988667,-1,-1,-1
386,-1,21.6062,505.424,82.9978,259.375,0.975868,-1,-1,-1
386,-1,96.0862,492.232,98.7098,281.339,0.971556,-1,-1,-1
386,-1,1781.56,426.087,70.15,237.064,0.930169,-1,-1,-1
386,-1,1862.06,378.234,56.94,336.722,0.874166,-1,-1,-1
386,-1,1713.37,429.492,84.89,224.356,0.833441,-1,-1,-1
387,-1,990.741,316.097,226.739,494.23,0.998594,-1,-1,-1
387,-1,432.147,301.84,157.439,597.99,0.995263,-1,-1,-1
387,-1,1500.7,399.535,94.66,304.906,0.993044,-1,-1,-1
387,-1,1634.3,394.143,115.37,322.207,0.990145,-1,-1,-1
387,-1,103.456,494.227,100.708,266.039,0.978679,-1,-1,-1
387,-1,16.9222,505.581,87.8958,269.126,0.970914,-1,-1,-1
387,-1,1769.71,427.188,64.98,222.162,0.934369,-1,-1,-1
387,-1,1862.95,380.528,56.05,359.25,0.897304,-1,-1,-1
387,-1,1728.95,425.896,61.55,222.904,0.593253,-1,-1,-1
387,-1,1826.57,443.275,50.1,186.028,0.530064,-1,-1,-1
388,-1,451.658,324.734,148.735,525.545,0.99629,-1,-1,-1
388,-1,978.665,333.286,231.765,486.529,0.996046,-1,-1,-1
388,-1,1511.84,409.486,83.78,270.94,0.993428,-1,-1,-1
388,-1,1641.81,392.94,115.62,306.143,0.989948,-1,-1,-1
388,-1,16.7326,519.452,87.2874,244.991,0.975344,-1,-1,-1
388,-1,102.685,491.593,107.585,274.766,0.971258,-1,-1,-1
388,-1,1774.63,455.928,74.84,183.406,0.932507,-1,-1,-1
388,-1,1860.28,369.228,58.72,291.734,0.798164,-1,-1,-1
389,-1,976.036,334.554,234.444,455.654,0.99637,-1,-1,-1
389,-1,456.336,317.602,158.072,533.699,0.996242,-1,-1,-1
389,-1,1515.05,386.283,77.05,327.558,0.993855,-1,-1,-1
389,-1,1645.86,390.479,111.84,304.717,0.98852,-1,-1,-1
389,-1,19.2417,514.753,91.2513,259.206,0.980354,-1,-1,-1
389,-1,1786.92,443.556,59.51,195.976,0.942471,-1,-1,-1
389,-1,110.319,548.619,80.779,211.445,0.827102,-1,-1,-1
389,-1,1870.61,404.455,48.39,192.313,0.821367,-1,-1,-1
389,-1,1820.34,421.18,53.44,227.178,0.687651,-1,-1,-1
390,-1,964.486,325.06,223.544,451.981,0.997086,-1,-1,-1
390,-1,471.577,306.019,163.252,557.687,0.994183,-1,-1,-1
390,-1,1517.82,400.38,78.22,296.566,0.993913,-1,-1,-1
390,-1,1635.07,396.248,134.99,308.53,0.99237,-1,-1,-1
390,-1,23.3811,500.953,86.1439,260.535,0.98081,-1,-1,-1
390,-1,1780.61,467.481,79.44,183.896,0.953917,-1,-1,-1
390,-1,118.542,563.663,71.335,180.058,0.820385,-1,-1,-1
390,-1,1828.88,456.818,46.19,164.154,0.775563,-1,-1,-1
391,-1,960.962,320.904,210.378,459.441,0.99816,-1,-1,-1
391,-1,484.658,307.298,195.784,559.499,0.995728,-1,-1,-1
391,-1,1636.87,402.846,129.06,304.648,0.993795,-1,-1,-1
391,-1,1523.98,402.86,77.44,292.722,0.989397,-1,-1,-1
391,-1,21.597,497.587,89.563,271.746,0.978486,-1,-1,-1
391,-1,1777.31,448.644,101.13,195.821,0.963887,-1,-1,-1
391,-1,118.315,576.423,73.282,183.861,0.669927,-1,-1,-1
392,-1,502.267,294.134,161.488,544.924,0.996553,-1,-1,-1
392,-1,1644.95,420.545,124.17,282.787,0.995104,-1,-1,-1
392,-1,951.319,325.713,233.181,417.349,0.993541,-1,-1,-1
392,-1,1519.78,414.752,120.05,292.167,0.988782,-1,-1,-1
392,-1,21.0454,514.767,91.3046,249.176,0.980966,-1,-1,-1
392,-1,1805.54,450.196,75.54,185.04,0.935907,-1,-1,-1
392,-1,1746.71,441.49,87.22,202.361,0.849653,-1,-1,-1
392,-1,113.077,567.797,79.995,198.404,0.658345,-1,-1,-1
392,-1,1164.3,442.044,70.15,243.257,0.557641,-1,-1,-1
393,-1,943.218,313.822,228.182,474.075,0.997807,-1,-1,-1
393,-1,529.666,304.42,162.169,501.287,0.996777,-1,-1,-1
393,-1,1653.64,419.702,121.06,288.34,0.992235,-1,-1,-1
393,-1,1524.34,401.521,95.86,284.385,0.990482,-1,-1,-1
393,-1,20.9562,497.453,91.2138,267.603,0.979785,-1,-1,-1
393,-1,1808.8,448.23,70.04,175.928,0.92443,-1,-1,-1
393,-1,1775.6,454.743,55.97,164.177,0.862207,-1,-1,-1
393,-1,112.102,565.956,81.412,197.233,0.691022,-1,-1,-1
393,-1,1165.92,447.437,68.53,226.553,0.616842,-1,-1,-1
394,-1,964.307,323.224,176.883,508.01,0.998697,-1,-1,-1
394,-1,526.394,286.491,147.861,541.046,0.995848,-1,-1,-1
394,-1,1665.32,413.998,113.82,289.301,0.992921,-1,-1,-1
394,-1,1529.39,401.102,96.26,283.984,0.992384,-1,-1,-1
394,-1,23.1741,496.796,88.7749,266.254,0.97996,-1,-1,-1
394,-1,1807.67,466.074,54.73,166.163,0.963734,-1,-1,-1
394,-1,1182.98,460.02,69.11,209.915,0.863716,-1,-1,-1
394,-1,130.286,557.476,70.561,195.949,0.711196,-1,-1,-1
394,-1,560.821,684.564,123.076,171.013,0.697689,-1,-1,-1
394,-1,1754.93,446.988,62.75,183.835,0.690414,-1,-1,-1
395,-1,971.533,338.397,192.397,456.965,0.998853,-1,-1,-1
395,-1,568.897,309.103,146.73,528.693,0.995604,-1,-1,-1
395,-1,1668.46,414.631,118.23,281.706,0.993785,-1,-1,-1
395,-1,1552.25,375.261,93.01,314.213,0.993446,-1,-1,-1
395,-1,1177.69,433.047,76.17,246.979,0.981369,-1,-1,-1
395,-1,23.155,499.23,88.748,257.008,0.981112,-1,-1,-1
395,-1,1813.75,445.974,58.72,181.569,0.974131,-1,-1,-1
395,-1,112.94,530.328,75.322,224.97,0.711148,-1,-1,-1
396,-1,937.294,297.917,222.316,520.193,0.997371,-1,-1,-1
396,-1,553.184,284.793,163.55,554.465,0.99405,-1,-1,-1
396,-1,1656.08,408.615,135.82,270.464,0.99315,-1,-1,-1
396,-1,1541.67,404.964,109.55,280.535,0.99165,-1,-1,-1
396,-1,1182.21,472.215,66.15,163.311,0.991481,-1,-1,-1
396,-1,24.1387,500.769,86.6183,259.725,0.979258,-1,-1,-1
396,-1,1808.2,464.177,60.77,158.571,0.974822,-1,-1,-1
396,-1,111.911,534.703,76.764,216.803,0.842682,-1,-1,-1
397,-1,924.719,340.207,222.001,479.872,0.998922,-1,-1,-1
397,-1,589.738,320.364,164.19,524.075,0.992312,-1,-1,-1
397,-1,1548.98,402.06,92.35,271.539,0.991343,-1,-1,-1
397,-1,1671.83,410.66,122.73,287.086,0.985527,-1,-1,-1
397,-1,1181.99,445.664,82.08,220.859,0.984713,-1,-1,-1
397,-1,23.1358,499.892,87.7932,269.871,0.979232,-1,-1,-1
397,-1,1812.36,460.93,67.01,178.977,0.979134,-1,-1,-1
397,-1,112.473,528.958,76.527,225.517,0.794291,-1,-1,-1
398,-1,922.434,347.167,206.866,485.855,0.996895,-1,-1,-1
398,-1,623.68,333.549,153.021,518.858,0.992944,-1,-1,-1
398,-1,1702.49,389.619,96.5,282.853,0.990727,-1,-1,-1
398,-1,1807.54,466.617,79.07,165.369,0.984517,-1,-1,-1
398,-1,23.5219,515.798,87.4641,253.538,0.982147,-1,-1,-1
398,-1,1543.65,389.761,100.69,310.993,0.980427,-1,-1,-1
398,-1,1174.82,441.279,92.69,211.548,0.977099,-1,-1,-1
398,-1,112.406,552.425,75.056,199.008,0.847255,-1,-1,-1
399,-1,921.579,329.89,227.531,519.636,0.997905,-1,-1,-1
399,-1,607.03,321.439,168.189,526.781,0.992578,-1,-1,-1
399,-1,1689.26,416.949,104.39,272.327,0.991033,-1,-1,-1
399,-1,1528.38,416.271,123.06,284.93,0.989952,-1,-1,-1
399,-1,1187.48,450.403,82.21,194.395,0.988969,-1,-1,-1
399,-1,1814.86,454.265,71.4,195.977,0.984339,-1,-1,-1
399,-1,23.7296,517.413,88.0854,255.26,0.982152,-1,-1,-1
399,-1,124.864,569.471,71.632,189.2,0.831059,-1,-1,-1
399,-1,1764.66,419.192,79.55,227.421,0.571399,-1,-1,-1
400,-1,905.523,327.922,219.357,498.098,0.998966,-1,-1,-1
400,-1,629.211,312.68,139.196,480.413,0.99465,-1,-1,-1
400,-1,1699.11,417.519,93.74,260.569,0.991834,-1,-1,-1
400,-1,1568.6,405.972,75.27,272.52,0.989884,-1,-1,-1
400,-1,1207.01,461.292,71.35,170.447,0.987432,-1,-1,-1
400,-1,25.9334,516.949,84.6916,255.837,0.981401,-1,-1,-1
400,-1,1827.79,461.762,42.25,168.182,0.979731,-1,-1,-1
400,-1,111.107,553.293,76.558,200.836,0.834084,-1,-1,-1
400,-1,1235.1,363.809,144.81,292.078,0.510361,-1,-1,-1
401,-1,903.58,311.479,216.53,546.717,0.997659,-1,-1,-1
401,-1,639.244,328.099,150.886,495.298,0.994614,-1,-1,-1
401,-1,1696.93,397.375,106.91,298.464,0.992405,-1,-1,-1
401,-1,1547.96,414.247,107.22,271.184,0.990974,-1,-1,-1
401,-1,1199.24,423.149,79.12,236.198,0.983384,-1,-1,-1
401,-1,24.196,517.899,87.248,252.75,0.982206,-1,-1,-1
401,-1,1828.18,450.086,55.55,188.039,0.975377,-1,-1,-1
401,-1,111.6,554.486,74.528,196.93,0.859669,-1,-1,-1
401,-1,1229.32,363.498,152.78,297.702,0.610848,-1,-1,-1
402,-1,893.353,326.107,228.087,523.955,0.999346,-1,-1,-1
402,-1,671.637,343.505,138.355,477.486,0.994547,-1,-1,-1
402,-1,1559.62,413.703,98.14,268.19,0.993039,-1,-1,-1
402,-1,1698.25,402.313,103.9,297.561,0.992352,-1,-1,-1
402,-1,23.7815,500.847,88.3855,266.218,0.981148,-1,-1,-1
402,-1,1820.6,428.378,52.34,220.961,0.965346,-1,-1,-1
402,-1,1185.58,397.65,81.9,255.623,0.938487,-1,-1,-1
402,-1,109.233,541.494,77.702,206.115,0.920437,-1,-1,-1
402,-1,1241.03,342.892,119.54,239.003,0.593128,-1,-1,-1
403,-1,881.225,314.082,223.245,524.121,0.99871,-1,-1,-1
403,-1,671.232,325.005,150.597,483.492,0.994871,-1,-1,-1
403,-1,1564,412.963,98.33,272.278,0.992822,-1,-1,-1
403,-1,1703.14,404.019,106.69,295.852,0.989656,-1,-1,-1
403,-1,35.8795,519.164,78.5295,248.289,0.980617,-1,-1,-1
403,-1,1830.86,432.585,53.39,205.128,0.975065,-1,-1,-1
403,-1,1208.69,399.274,81.12,261.829,0.968983,-1,-1,-1
403,-1,110.819,557.066,79.275,183.316,0.910072,-1,-1,-1
403,-1,1240.33,341.904,121.66,245.585,0.568571,-1,-1,-1
404,-1,888.383,323.67,212.727,513.102,0.999154,-1,-1,-1
404,-1,678.747,341.399,183.619,484.424,0.995172,-1,-1,-1
404,-1,1570.52,409.975,97.32,271.635,0.992023,-1,-1,-1
404,-1,1701.97,419.284,112.35,280.324,0.990557,-1,-1,-1
404,-1,34.7088,519.794,80.7662,246.751,0.98025,-1,-1,-1
404,-1,1188.53,410.485,94.3,269.622,0.97088,-1,-1,-1
404,-1,1831.78,457.998,41.32,194.237,0.957055,-1,-1,-1
404,-1,112.973,540.616,73.232,209.415,0.897433,-1,-1,-1
404,-1,1244.13,346.952,118.7,234.357,0.648036,-1,-1,-1
405,-1,892.105,288.21,191.875,542.858,0.99929,-1,-1,-1
405,-1,1573.95,386.597,90.58,320.793,0.991614,-1,-1,-1
405,-1,1705.37,417.607,109.22,272.559,0.990357,-1,-1,-1
405,-1,710.223,325.72,155.202,500.745,0.987772,-1,-1,-1
405,-1,23.3304,518.452,86.8396,254.646,0.98115,-1,-1,-1
405,-1,1815.82,423.558,70.13,229.666,0.917653,-1,-1,-1
405,-1,113.881,547.311,73.351,202.392,0.889105,-1,-1,-1
405,-1,1244.8,349.921,116.19,272.389,0.667532,-1,-1,-1
405,-1,1773,395.602,65.79,271.412,0.61749,-1,-1,-1
405,-1,1190.66,416.224,85.96,238.173,0.535606,-1,-1,-1
406,-1,884.882,314.929,172.958,511.169,0.995438,-1,-1,-1
406,-1,725.823,347.137,146.404,465.63,0.990524,-1,-1,-1
406,-1,1576.85,383.004,88.68,326.108,0.990291,-1,-1,-1
406,-1,23.7689,516.477,87.8161,249.688,0.982541,-1,-1,-1
406,-1,1701.04,412.198,110.58,270.421,0.982275,-1,-1,-1
406,-1,113.812,541.228,73.137,204.904,0.905574,-1,-1,-1
406,-1,1804.83,445.352,61.91,193.242,0.834724,-1,-1,-1
406,-1,1247.4,376.902,101.54,176.37,0.764176,-1,-1,-1
406,-1,1844.73,462.557,45.84,153.839,0.600549,-1,-1,-1
407,-1,856.465,283.285,224.735,537.94,0.998604,-1,-1,-1
407,-1,1712.81,397.199,135.06,285.097,0.987486,-1,-1,-1
407,-1,740.007,313.471,124.023,492.236,0.984604,-1,-1,-1
407,-1,1570.83,409.976,112.43,278.571,0.981349,-1,-1,-1
407,-1,21.4963,498.578,90.2837,265.542,0.980525,-1,-1,-1
407,-1,113.971,542.679,72.754,205.407,0.904301,-1,-1,-1
407,-1,1247.11,361.098,111.05,269.597,0.843376,-1,-1,-1
407,-1,1789.86,410.538,90.53,233.945,0.829708,-1,-1,-1
407,-1,1208.36,420.08,91.42,240.099,0.82292,-1,-1,-1
408,-1,862.887,292.631,209.583,524.883,0.998717,-1,-1,-1
408,-1,1715.45,390.933,152.16,286.93,0.988729,-1,-1,-1
408,-1,1570,383.228,125.08,306.976,0.977829,-1,-1,-1
408,-1,17.4632,500.683,93.5418,262.233,0.975852,-1,-1,-1
408,-1,768.55,374.315,135.447,428.457,0.927347,-1,-1,-1
408,-1,110.356,556.344,76.423,198.304,0.910744,-1,-1,-1
408,-1,1211.33,380.818,100.78,289.883,0.895606,-1,-1,-1
408,-1,1832.9,416.325,55.48,240.182,0.772067,-1,-1,-1
408,-1,1868.59,428.985,44.35,199.31,0.601979,-1,-1,-1
409,-1,861.236,292.692,207.804,530.36,0.998821,-1,-1,-1
409,-1,1722.84,401.407,101.2,288.849,0.990508,-1,-1,-1
409,-1,1583.49,415.413,121.27,261.97,0.988518,-1,-1,-1
409,-1,18.3317,502.505,92.3373,265.339,0.974256,-1,-1,-1
409,-1,775.48,425.783,134.457,405.162,0.965298,-1,-1,-1
409,-1,108.782,555.106,78.969,200.273,0.916066,-1,-1,-1
409,-1,1784.72,394.333,74.13,258.911,0.830797,-1,-1,-1
409,-1,1864.75,419.071,48.22,201.23,0.804209,-1,-1,-1
409,-1,1211.7,376.161,96.92,291.993,0.785199,-1,-1,-1
409,-1,767.937,333.076,107.564,278.83,0.779948,-1,-1,-1
409,-1,1825.85,433.822,60.72,209.177,0.64223,-1,-1,-1
410,-1,863.728,288.203,175.712,563.53,0.995889,-1,-1,-1
410,-1,1591.06,402.468,90.4,268.065,0.9917,-1,-1,-1
410,-1,1736.32,407.371,105.81,280.064,0.984268,-1,-1,-1
410,-1,22.7222,505.313,84.3338,270.744,0.974034,-1,-1,-1
410,-1,783.746,413.822,117.043,399.597,0.953281,-1,-1,-1
410,-1,115.922,533.596,79.461,219.79,0.938953,-1,-1,-1
410,-1,1209.87,381.681,100.95,290.283,0.852321,-1,-1,-1
410,-1,1799.77,400.975,68.41,242.403,0.849544,-1,-1,-1
410,-1,1839.82,434.078,52.11,214.874,0.842231,-1,-1,-1
411,-1,856.198,290.369,180.302,559.171,0.996002,-1,-1,-1
411,-1,1597.19,396.728,96.06,284.65,0.991177,-1,-1,-1
411,-1,1737.97,402.639,117.11,292.064,0.984737,-1,-1,-1
411,-1,20.1888,517.582,88.7802,254.756,0.978064,-1,-1,-1
411,-1,1204.71,442.179,92.43,216.118,0.919763,-1,-1,-1
411,-1,114.347,530.388,79.015,226.832,0.918813,-1,-1,-1
411,-1,760.73,387.799,127.63,443.39,0.899665,-1,-1,-1
411,-1,789.766,342.19,87.032,221.849,0.743879,-1,-1,-1
411,-1,1833.2,434.188,74.35,211.209,0.507276,-1,-1,-1
412,-1,816.636,302.135,216.554,580.014,0.995539,-1,-1,-1
412,-1,1718.78,392.998,155.95,256.205,0.993339,-1,-1,-1
412,-1,1584.54,396.256,126.71,292.254,0.987652,-1,-1,-1
412,-1,17.5958,516.004,97.8102,235.02,0.982885,-1,-1,-1
412,-1,1224.79,421.795,89.53,227.168,0.969198,-1,-1,-1
412,-1,111.271,509.863,80.578,240.618,0.838156,-1,-1,-1
412,-1,769.247,428.595,94.798,398.546,0.661699,-1,-1,-1
412,-1,1823.09,389.878,70.04,247.052,0.637309,-1,-1,-1
412,-1,1252.98,359.824,107.99,223.637,0.525873,-1,-1,-1
413,-1,814.172,313.675,214.228,564.065,0.996196,-1,-1,-1
413,-1,1594.75,409.552,121.93,272.205,0.988639,-1,-1,-1
413,-1,1727.42,404.01,158.91,260.844,0.988589,-1,-1,-1
413,-1,18.7968,516.714,91.3702,252.922,0.980465,-1,-1,-1
413,-1,1237.58,393.065,89.35,254.576,0.947157,-1,-1,-1
413,-1,113.45,564.431,77.3,193.242,0.881202,-1,-1,-1
413,-1,1859.62,409.68,55.71,236.181,0.621102,-1,-1,-1
414,-1,811.238,290.317,231.392,544.635,0.996141,-1,-1,-1
414,-1,1611.53,388.977,110.88,288.92,0.983795,-1,-1,-1
414,-1,1741.28,413.796,141.05,282.608,0.982949,-1,-1,-1
414,-1,20.7786,513.935,88.0074,250.883,0.976656,-1,-1,-1
414,-1,1225.67,416.348,90.76,237.998,0.934965,-1,-1,-1
414,-1,1855.43,414.131,58.62,231.977,0.823017,-1,-1,-1
414,-1,112.348,545.677,74.861,202.544,0.812344,-1,-1,-1
414,-1,1714.8,401.336,62.11,267.698,0.638901,-1,-1,-1
414,-1,745.205,414.219,72.306,122.279,0.514734,-1,-1,-1
415,-1,799.777,301.452,218.693,520.178,0.996049,-1,-1,-1
415,-1,1617.5,398.457,87.61,285.685,0.989423,-1,-1,-1
415,-1,1723.02,408.995,127.49,264.402,0.98531,-1,-1,-1
415,-1,22.0484,499.587,86.1486,256.162,0.979432,-1,-1,-1
415,-1,1244.17,390.721,88.6,246.863,0.964688,-1,-1,-1
415,-1,1824.19,401.467,71.18,266.335,0.815734,-1,-1,-1
415,-1,113.225,534.548,74.637,216.643,0.782004,-1,-1,-1
416,-1,780.206,274.21,255.604,548.922,0.997268,-1,-1,-1
416,-1,1732.56,400.115,138.73,287.806,0.990303,-1,-1,-1
416,-1,1628.1,402.426,88.46,275.251,0.989838,-1,-1,-1
416,-1,24.3639,517.501,80.8161,248.551,0.976652,-1,-1,-1
416,-1,1248.5,386.244,88.87,250.188,0.95025,-1,-1,-1
416,-1,1819.23,406.08,69.3,233.596,0.887635,-1,-1,-1
416,-1,839.867,528.507,131.708,339.539,0.798296,-1,-1,-1
416,-1,115.013,527.157,76.727,232.196,0.722671,-1,-1,-1
417,-1,772.686,267.2,232.834,590.226,0.998503,-1,-1,-1
417,-1,1631.92,396.303,90.92,302.416,0.989259,-1,-1,-1
417,-1,1734.64,416.78,122.25,276.735,0.987682,-1,-1,-1
417,-1,21.5817,512.059,82.5233,249.888,0.977472,-1,-1,-1
417,-1,1815.28,406.67,67.01,273.869,0.861294,-1,-1,-1
417,-1,117.242,526.068,78.541,246.469,0.741532,-1,-1,-1
417,-1,1223.39,395.159,99.64,240.634,0.73217,-1,-1,-1
418,-1,771.328,292.379,203.637,547.364,0.9974,-1,-1,-1
418,-1,1744.05,411.492,110.62,278.293,0.987862,-1,-1,-1
418,-1,1631.95,408.589,113.59,264.762,0.987401,-1,-1,-1
418,-1,19.2383,511.172,89.7217,256.676,0.979286,-1,-1,-1
418,-1,1817.69,413.502,66.7,271.298,0.9011,-1,-1,-1
418,-1,115.912,518.89,82.305,248.341,0.898992,-1,-1,-1
418,-1,743.569,369.77,73.792,218.495,0.60943,-1,-1,-1
419,-1,756.122,258.128,239.151,572.129,0.992878,-1,-1,-1
419,-1,1748.85,400.653,101.51,288.664,0.988339,-1,-1,-1
419,-1,1636.14,421.751,113.89,247.781,0.987167,-1,-1,-1
419,-1,18.2932,501.77,87.1478,263.909,0.978152,-1,-1,-1
419,-1,1816.97,406.493,64.76,268.239,0.877841,-1,-1,-1
419,-1,111.442,516.09,82.454,228.49,0.759672,-1,-1,-1
419,-1,1208.76,370.679,124.78,273.688,0.623688,-1,-1,-1
419,-1,1870.39,419.711,43.26,222.68,0.622238,-1,-1,-1
420,-1,750.86,248.326,260.55,611.069,0.994563,-1,-1,-1
420,-1,1630.65,390.763,108.04,300.005,0.986104,-1,-1,-1
420,-1,1742.87,414.552,130.27,269.598,0.978348,-1,-1,-1
420,-1,32.7897,512.262,92.6323,236.032,0.97612,-1,-1,-1
420,-1,111.558,504.455,86.683,243.839,0.959024,-1,-1,-1
420,-1,1822.26,427.281,70.06,227.16,0.852481,-1,-1,-1
420,-1,1237.79,363.376,103.59,292.998,0.559005,-1,-1,-1
420,-1,1867.83,409.826,44.44,238.408,0.502163,-1,-1,-1
421,-1,711.701,293.96,274.818,597.373,0.992878,-1,-1,-1
421,-1,1640.19,397.149,103.06,284.723,0.986135,-1,-1,-1
421,-1,105.566,488.618,105.986,257.672,0.974343,-1,-1,-1
421,-1,901.363,309.362,125.297,497.706,0.971399,-1,-1,-1
421,-1,13.9716,513.506,84.751,245.911,0.970477,-1,-1,-1
421,-1,1750.38,408.352,137.11,281.078,0.969578,-1,-1,-1
421,-1,1199.76,374.671,138.06,259.762,0.533382,-1,-1,-1
421,-1,1869.25,391.03,44.83,260.149,0.524986,-1,-1,-1
422,-1,690.547,234.059,247.989,681.622,0.992777,-1,-1,-1
422,-1,932.223,308.695,83.547,477.282,0.991818,-1,-1,-1
422,-1,1772.4,407.054,92.46,289.434,0.985482,-1,-1,-1
422,-1,102.885,497.978,105.674,245.151,0.98368,-1,-1,-1
422,-1,1645.03,380.016,72.83,326.05,0.980797,-1,-1,-1
422,-1,25.3464,518.658,80.1956,247.093,0.972026,-1,-1,-1
422,-1,1254.31,347.232,99.92,306.874,0.633908,-1,-1,-1
423,-1,690.643,265.893,264.063,638.259,0.996453,-1,-1,-1
423,-1,1655.64,409.848,82.25,273.014,0.989991,-1,-1,-1
423,-1,97.2411,473.57,96.1449,288.85,0.988483,-1,-1,-1
423,-1,1775,402.875,90.31,294.281,0.985885,-1,-1,-1
423,-1,921.209,349.368,133.081,434.38,0.985811,-1,-1,-1
423,-1,14.782,510.692,91.765,241.16,0.971561,-1,-1,-1
423,-1,1866.71,392.793,47.69,248.879,0.724131,-1,-1,-1
424,-1,665.877,285.334,267.425,623.868,0.994496,-1,-1,-1
424,-1,922.31,325.766,126.63,438.341,0.993874,-1,-1,-1
424,-1,1660.11,414.131,87.33,280.811,0.991851,-1,-1,-1
424,-1,106.204,498.418,97.419,255.325,0.987654,-1,-1,-1
424,-1,1778.38,397.732,89.5,288.096,0.986863,-1,-1,-1
424,-1,17.7639,546.412,80.8309,212.883,0.980428,-1,-1,-1
424,-1,1853.09,391.159,64.81,272.733,0.911021,-1,-1,-1
424,-1,1269.35,365.718,92.73,290.456,0.733557,-1,-1,-1
424,-1,67.9948,514.787,75.0212,252.571,0.648429,-1,-1,-1
425,-1,922.138,337.998,141.892,444.449,0.995936,-1,-1,-1
425,-1,667.25,265.158,249.691,645.744,0.991914,-1,-1,-1
425,-1,1671.92,412.418,84.45,262.518,0.990533,-1,-1,-1
425,-1,95.7071,473.921,97.7899,295.786,0.990439,-1,-1,-1
425,-1,1782.46,408.781,87.65,281.728,0.984502,-1,-1,-1
425,-1,21.5209,532.605,78.9881,217.781,0.974182,-1,-1,-1
425,-1,1848.16,394.884,65.92,277.825,0.918564,-1,-1,-1
425,-1,1256.16,371.332,96.47,302.786,0.585524,-1,-1,-1
426,-1,935.159,335.252,128.551,404.683,0.995116,-1,-1,-1
426,-1,656.117,279.761,262.649,644.291,0.993128,-1,-1,-1
426,-1,1652.3,417.135,94.69,272.038,0.986572,-1,-1,-1
426,-1,1786.84,402.646,90.53,285.872,0.984804,-1,-1,-1
426,-1,99.0363,494.17,94.0807,264.735,0.979307,-1,-1,-1
426,-1,23.011,531.043,78.256,231.861,0.950347,-1,-1,-1
426,-1,1848.17,396.944,69.74,278.653,0.910288,-1,-1,-1
426,-1,68.3885,529.18,69.3405,215.238,0.705304,-1,-1,-1
426,-1,1254.67,362.249,100.24,303.915,0.651141,-1,-1,-1
427,-1,642.712,267.021,264.926,654.139,0.995107,-1,-1,-1
427,-1,956.478,336.401,113.172,427.515,0.993804,-1,-1,-1
427,-1,1655.36,418.942,103.13,273.899,0.987933,-1,-1,-1
427,-1,1787.46,406.212,94.36,278.342,0.983863,-1,-1,-1
427,-1,108.836,498.266,98.715,263.052,0.977082,-1,-1,-1
427,-1,29.7599,524.622,70.1481,231.613,0.968481,-1,-1,-1
427,-1,1846.79,396.875,70.9,273.432,0.899041,-1,-1,-1
427,-1,1278.66,385.325,88.02,267.699,0.731545,-1,-1,-1
428,-1,650.618,232.982,246.917,702.554,0.99891,-1,-1,-1
428,-1,965.886,349.999,146.054,396.821,0.995441,-1,-1,-1
428,-1,93.133,471.579,107.276,278.256,0.990961,-1,-1,-1
428,-1,1671.47,387.848,82.51,301.61,0.981565,-1,-1,-1
428,-1,1788.3,415.257,88.35,258.295,0.97735,-1,-1,-1
428,-1,11.9224,504.852,91.0236,241.874,0.967641,-1,-1,-1
428,-1,1242.63,363.015,122.42,283.247,0.918775,-1,-1,-1
428,-1,1850.67,400.764,67.79,275.598,0.915532,-1,-1,-1
429,-1,621.346,290.666,251.044,648.956,0.996052,-1,-1,-1
429,-1,967.386,342.517,120.134,420.184,0.991177,-1,-1,-1
429,-1,106.872,480.712,87.932,292.146,0.990666,-1,-1,-1
429,-1,1673.91,387.49,86.42,301.52,0.983786,-1,-1,-1
429,-1,16.2474,516.871,85.5916,218.258,0.977239,-1,-1,-1
429,-1,1785.27,419.113,123.33,252.97,0.969547,-1,-1,-1
429,-1,1271.42,384.183,94.9,268.198,0.910713,-1,-1,-1
429,-1,71.8057,516.25,74.9603,223.295,0.685226,-1,-1,-1
430,-1,975.82,337.534,150.69,422.426,0.996657,-1,-1,-1
430,-1,575.301,268.594,275.246,660.618,0.99482,-1,-1,-1
430,-1,90.5496,499.627,111.867,255.143,0.987488,-1,-1,-1
430,-1,1682.67,403.497,84.03,263.766,0.983521,-1,-1,-1
430,-1,1799.41,420.124,99.5,258.227,0.982605,-1,-1,-1
430,-1,23.3019,537.597,82.6291,210.318,0.978916,-1,-1,-1
430,-1,1300.56,446.51,82.72,192.392,0.950822,-1,-1,-1
431,-1,985.341,346.643,154.139,421.546,0.997789,-1,-1,-1
431,-1,576.819,258.021,275.179,666.636,0.996345,-1,-1,-1
431,-1,1796.2,406.438,107.74,283.095,0.984907,-1,-1,-1
431,-1,23.6065,541.038,79.2595,214.306,0.979333,-1,-1,-1
431,-1,1679.14,397.327,82.73,301.722,0.97421,-1,-1,-1
431,-1,92.7762,522.764,104.693,222.213,0.973494,-1,-1,-1
431,-1,1315.22,390.005,79.56,262.323,0.907045,-1,-1,-1
431,-1,1755.9,411.589,87.39,254.067,0.755281,-1,-1,-1
431,-1,1722.5,456.064,59.66,166.668,0.549378,-1,-1,-1
432,-1,598.098,244.385,245.326,711.844,0.996694,-1,-1,-1
432,-1,996.898,391.667,123.212,363.553,0.993724,-1,-1,-1
432,-1,1776.05,425.71,120.31,245.85,0.984846,-1,-1,-1
432,-1,21.6367,541.179,78.6613,216.888,0.983248,-1,-1,-1
432,-1,1695.38,412.812,73.71,247.302,0.97186,-1,-1,-1
432,-1,104.907,539.762,80.952,211.136,0.950469,-1,-1,-1
432,-1,1319.42,418.587,73.29,233.717,0.947252,-1,-1,-1
432,-1,63.6614,517.023,79.8386,234.175,0.826853,-1,-1,-1
432,-1,1747.02,431.817,56.69,209.251,0.688643,-1,-1,-1
433,-1,541.878,230.999,284.921,687.938,0.997819,-1,-1,-1
433,-1,1003.26,342.727,138.56,416.767,0.996293,-1,-1,-1
433,-1,1820.3,416.609,78.34,261.14,0.983716,-1,-1,-1
433,-1,1688.82,401.494,75.76,273.805,0.979471,-1,-1,-1
433,-1,1317.14,447.635,77.86,217.554,0.975333,-1,-1,-1
433,-1,16.1389,527.773,84.8261,232.677,0.96806,-1,-1,-1
433,-1,110.313,533.97,75.533,205.382,0.878001,-1,-1,-1
433,-1,1732.58,428.973,65,216.872,0.840325,-1,-1,-1
433,-1,1773.3,424.125,58.67,230.998,0.82624,-1,-1,-1
434,-1,519.026,228.843,288.51,690.532,0.997488,-1,-1,-1
434,-1,1012.72,335.47,140.5,422.199,0.996911,-1,-1,-1
434,-1,1691.45,418.223,77.57,249.387,0.983529,-1,-1,-1
434,-1,1323.13,459.133,63.28,183.349,0.97994,-1,-1,-1
434,-1,25.4825,513.232,85.8845,256.77,0.979599,-1,-1,-1
434,-1,1789.9,406.257,102.13,273.873,0.97831,-1,-1,-1
434,-1,112.893,545.642,74.444,202.051,0.888288,-1,-1,-1
434,-1,1741.52,419.751,54.88,220.689,0.774338,-1,-1,-1
435,-1,564.019,236.552,232.899,696.774,0.997153,-1,-1,-1
435,-1,1008.82,351.77,137.35,405.187,0.995459,-1,-1,-1
435,-1,1807.6,432.046,90.54,223.789,0.982298,-1,-1,-1
435,-1,19.4314,522.029,87.2856,241.582,0.974239,-1,-1,-1
435,-1,1705.92,392.11,78.64,294.766,0.970418,-1,-1,-1
435,-1,116.813,557.374,80.238,189.799,0.955847,-1,-1,-1
435,-1,1323.87,425.213,68.41,234.49,0.954988,-1,-1,-1
435,-1,1749.19,438.695,57.32,205.139,0.80981,-1,-1,-1
436,-1,551.322,241.661,225.958,702.612,0.9972,-1,-1,-1
436,-1,1039.52,348.269,116.09,411.2,0.994737,-1,-1,-1
436,-1,1712.97,399.158,79.03,271.578,0.982079,-1,-1,-1
436,-1,1808.85,431.871,87.53,215.677,0.980791,-1,-1,-1
436,-1,19.6302,515.58,100.518,261.087,0.972884,-1,-1,-1
436,-1,1333.27,422.739,65.31,220.729,0.91309,-1,-1,-1
436,-1,99.1123,525.172,83.9337,227.167,0.816349,-1,-1,-1
436,-1,1181.42,454.558,69.89,179.816,0.584382,-1,-1,-1
437,-1,509.263,221.704,255.707,749.739,0.998465,-1,-1,-1
437,-1,1043.1,360.796,122.98,392.745,0.99109,-1,-1,-1
437,-1,1808.84,434.638,93.45,219.267,0.982009,-1,-1,-1
437,-1,12.1121,500.876,109.413,252.746,0.974727,-1,-1,-1
437,-1,1702.66,405.57,88.31,259.299,0.962346,-1,-1,-1
437,-1,122.838,560.55,72.724,196.921,0.864514,-1,-1,-1
437,-1,1344.46,419.273,67.27,220.839,0.76014,-1,-1,-1
437,-1,1772.98,434.667,45.84,203.96,0.742537,-1,-1,-1
437,-1,455.439,398.881,76.363,148.432,0.601623,-1,-1,-1
437,-1,1178.77,450.789,79.14,186.949,0.544632,-1,-1,-1
438,-1,491.003,252.773,278.622,731.383,0.998386,-1,-1,-1
438,-1,1056.4,362.178,124.59,398.183,0.984722,-1,-1,-1
438,-1,1709.4,414.779,85.23,251.282,0.983978,-1,-1,-1
438,-1,1830.96,411.027,75.76,286.536,0.97782,-1,-1,-1
438,-1,1345.4,429.847,78.05,219.796,0.972622,-1,-1,-1
438,-1,10.4626,483.377,108.305,289.856,0.969559,-1,-1,-1
438,-1,101.878,527.713,82.08,231.671,0.824003,-1,-1,-1
438,-1,423.82,390.323,109.171,266.925,0.744565,-1,-1,-1
438,-1,1675,420.172,67.49,208.251,0.683958,-1,-1,-1
438,-1,1171.18,459.491,70.07,221.591,0.571948,-1,-1,-1
439,-1,483.589,253.871,268.085,726.039,0.996927,-1,-1,-1
439,-1,1687.35,418.961,137.01,246.583,0.983852,-1,-1,-1
439,-1,1058.11,378.757,118.46,379.882,0.974824,-1,-1,-1
439,-1,1347.75,428.302,71.82,240.002,0.970765,-1,-1,-1
439,-1,1807.13,419.525,111.87,258.124,0.968871,-1,-1,-1
439,-1,0,484.718,107.103,353.179,0.945826,-1,-1,-1
439,-1,424.067,371.287,94.467,304.544,0.812186,-1,-1,-1
439,-1,115.952,567.847,75.9,179.095,0.803888,-1,-1,-1
439,-1,0,255.886,55.0845,302.451,0.797934,-1,-1,-1
439,-1,1813.34,449.808,36.47,174.219,0.574618,-1,-1,-1
440,-1,442.102,232.283,299.858,742.416,0.997818,-1,-1,-1
440,-1,1074.3,363.987,121.97,397.421,0.991138,-1,-1,-1
440,-1,0,338.585,124.425,610.337,0.98141,-1,-1,-1
440,-1,1353.71,432.917,68.79,240.652,0.977791,-1,-1,-1
440,-1,1701.75,412.276,110.92,262.468,0.976442,-1,-1,-1
440,-1,1833.2,399.86,78.23,296.985,0.971832,-1,-1,-1
440,-1,121.659,548.528,73.147,200.249,0.929565,-1,-1,-1
440,-1,1800.01,413.66,69.18,242.324,0.592045,-1,-1,-1
440,-1,392.449,386.847,99.789,231.096,0.534709,-1,-1,-1
441,-1,429.443,208.082,287.09,756.015,0.997958,-1,-1,-1
441,-1,1083.46,366.375,118.69,357.388,0.993985,-1,-1,-1
441,-1,1357.17,438.666,88.86,252.808,0.978358,-1,-1,-1
441,-1,1703.39,408.249,123.53,266.755,0.975696,-1,-1,-1
441,-1,0,472.643,151.148,464.475,0.972156,-1,-1,-1
441,-1,1840.69,402.176,74.72,273.906,0.966326,-1,-1,-1
441,-1,0.0486832,278.069,79.4597,336.731,0.738261,-1,-1,-1
441,-1,1782.35,402.92,92.49,256.321,0.728482,-1,-1,-1
441,-1,389.523,363.922,106.58,291.987,0.663843,-1,-1,-1
441,-1,132.812,534.576,69.09,212.578,0.553096,-1,-1,-1
442,-1,439.234,220.483,284.349,759.374,0.997738,-1,-1,-1
442,-1,1089.88,386.509,131.76,344.061,0.993567,-1,-1,-1
442,-1,1363.9,440.695,71.58,224.519,0.989148,-1,-1,-1
442,-1,1707.34,401.837,100.58,269.646,0.977083,-1,-1,-1
442,-1,10.0442,414.295,145.64,531.956,0.976224,-1,-1,-1
442,-1,1851.72,400.662,67.28,283.245,0.959719,-1,-1,-1
442,-1,1768.55,415.531,72.22,228.825,0.845504,-1,-1,-1
442,-1,1815.3,391.679,53.95,271.658,0.804156,-1,-1,-1
442,-1,133.799,557.783,61.515,221.706,0.615364,-1,-1,-1
442,-1,1224.83,358.473,106.75,298.917,0.53978,-1,-1,-1
443,-1,421.843,198.222,269.988,783.056,0.998006,-1,-1,-1
443,-1,1096.44,371.143,117.6,359.5,0.994813,-1,-1,-1
443,-1,1361.26,443.039,81.27,231.645,0.986472,-1,-1,-1
443,-1,0,284.263,186.669,661.377,0.984357,-1,-1,-1
443,-1,1723.93,418.361,113.06,244.349,0.975677,-1,-1,-1
443,-1,1857.49,385.981,61.51,288.758,0.963486,-1,-1,-1
443,-1,1707.93,435.902,56.58,209.872,0.81034,-1,-1,-1
443,-1,351.457,364.663,107.911,309.19,0.776615,-1,-1,-1
444,-1,387.257,177.602,270.098,828.208,0.998222,-1,-1,-1
444,-1,0,250.647,212.993,676.432,0.996272,-1,-1,-1
444,-1,1102.61,363.468,121.36,362.821,0.99574,-1,-1,-1
444,-1,1371.37,435.339,78.1,218.186,0.986259,-1,-1,-1
444,-1,1710.84,440.325,143.39,227.59,0.979207,-1,-1,-1
444,-1,1850.32,386.316,58.93,293.376,0.956851,-1,-1,-1
444,-1,1791.82,462.036,39.48,154.961,0.762026,-1,-1,-1
444,-1,1721.65,440.42,47.76,187.876,0.719333,-1,-1,-1
445,-1,0,286.233,214.358,611.505,0.999072,-1,-1,-1
445,-1,355.309,198.476,298.62,784.833,0.997629,-1,-1,-1
445,-1,1106.62,366.402,112.53,354.42,0.995884,-1,-1,-1
445,-1,1372.87,443.322,62.95,202.214,0.986629,-1,-1,-1
445,-1,1747.2,419.205,80.18,268.184,0.980528,-1,-1,-1
445,-1,1853.25,375.773,65.75,328.37,0.960485,-1,-1,-1
445,-1,1246.66,331.126,100.43,314.773,0.60518,-1,-1,-1
446,-1,0,246.778,222.284,696.205,0.998752,-1,-1,-1
446,-1,333.822,185.656,311.395,822.604,0.998292,-1,-1,-1
446,-1,1111.99,367.142,111.68,341.945,0.993463,-1,-1,-1
446,-1,1376.26,445.118,84.26,192.431,0.989313,-1,-1,-1
446,-1,1755.81,421.275,83.11,251.462,0.977455,-1,-1,-1
446,-1,1841.76,379.64,68.56,336.695,0.971082,-1,-1,-1
446,-1,1254.99,351.437,93.98,288.396,0.618532,-1,-1,-1
446,-1,1721.96,404.894,65.06,250.065,0.576063,-1,-1,-1
447,-1,319.167,175.962,325.289,844.238,0.998158,-1,-1,-1
447,-1,0.472672,255.339,241.277,668.144,0.997736,-1,-1,-1
447,-1,1137.44,367.461,110.9,313.201,0.991999,-1,-1,-1
447,-1,1371.86,451.039,89.9,191.426,0.989332,-1,-1,-1
447,-1,1833.61,378.394,82.84,309.619,0.974921,-1,-1,-1
447,-1,1745.45,410.549,83.1,259.171,0.950429,-1,-1,-1
447,-1,1796.88,406.445,61.09,252.539,0.802498,-1,-1,-1
447,-1,1260.64,353.127,101.81,221.012,0.630388,-1,-1,-1
448,-1,9.59329,255.948,245.178,694.59,0.998547,-1,-1,-1
448,-1,285.66,208.894,324.477,809.116,0.997613,-1,-1,-1
448,-1,1148.02,355.557,110.02,361.684,0.993501,-1,-1,-1
448,-1,1370.34,439.613,89.26,219.295,0.983734,-1,-1,-1
448,-1,1805.08,374.128,111.45,323.376,0.972764,-1,-1,-1
448,-1,1739.77,397.439,107.21,280.666,0.93993,-1,-1,-1
448,-1,1709.63,410.992,76.25,218.509,0.707932,-1,-1,-1
448,-1,1263.06,345.158,97.03,285.282,0.602364,-1,-1,-1
448,-1,262.312,365.487,147.129,280.268,0.585824,-1,-1,-1
449,-1,22.9791,284.6,236.016,614.464,0.997937,-1,-1,-1
449,-1,240.69,178.339,379.342,842.411,0.997504,-1,-1,-1
449,-1,1138.05,367.504,138.84,382.134,0.995137,-1,-1,-1
449,-1,1833.63,375.461,85.37,309.514,0.967784,-1,-1,-1
449,-1,1726.53,429.672,69.44,225.174,0.948325,-1,-1,-1
449,-1,1757.26,392.953,87.44,287.17,0.9146,-1,-1,-1
449,-1,1392.18,450.473,64.86,203.234,0.896168,-1,-1,-1
449,-1,1257.49,355.251,102.67,277.918,0.888734,-1,-1,-1
450,-1,234.391,157.628,361.152,858.452,0.996824,-1,-1,-1
450,-1,29.6977,264.978,230.673,687.331,0.994913,-1,-1,-1
450,-1,1154.71,397.518,122.45,333.275,0.991284,-1,-1,-1
450,-1,1793.25,384.57,111.51,289.157,0.984123,-1,-1,-1
450,-1,1386.52,443.875,75.28,223.799,0.97826,-1,-1,-1
450,-1,1722.25,415.433,66.94,209.603,0.90758,-1,-1,-1
450,-1,1271.86,352.439,80.11,305.569,0.705678,-1,-1,-1
451,-1,212.639,185.012,347.6,854.178,0.997953,-1,-1,-1
451,-1,15.4418,285.577,240.409,661.285,0.996666,-1,-1,-1
451,-1,1390.8,438.737,90.62,199.486,0.988634,-1,-1,-1
451,-1,1174.96,363.545,117.31,389.657,0.971073,-1,-1,-1
451,-1,1809.15,380.343,102.62,312.187,0.962159,-1,-1,-1
451,-1,1747.05,408.128,96.67,266.872,0.936927,-1,-1,-1
451,-1,1724.5,414.914,64.07,217.224,0.900954,-1,-1,-1
451,-1,1261.26,346.575,76.94,339.056,0.534702,-1,-1,-1
452,-1,224.406,177.581,356.139,823.509,0.996682,-1,-1,-1
452,-1,19.7969,295.258,278.668,645.008,0.992406,-1,-1,-1
452,-1,1398.61,441.965,84.8,216.989,0.989937,-1,-1,-1
452,-1,1174.62,373.77,117.01,369.95,0.978622,-1,-1,-1
452,-1,1742.63,384.399,122.11,317.132,0.97333,-1,-1,-1
452,-1,1842.13,377.331,70.24,306.953,0.971536,-1,-1,-1
452,-1,1740.37,432.634,52.12,200.724,0.880614,-1,-1,-1
452,-1,1242.15,494.549,90.87,225.97,0.798041,-1,-1,-1
452,-1,1654.83,460.866,56.71,133.796,0.55204,-1,-1,-1
453,-1,195.813,185.379,335.281,869.031,0.996684,-1,-1,-1
453,-1,1165.81,369.199,121.6,350.625,0.986091,-1,-1,-1
453,-1,31.5807,272.837,269.676,678.595,0.985476,-1,-1,-1
453,-1,1414.89,440.884,76.35,208.438,0.983709,-1,-1,-1
453,-1,1751.28,392.339,87.97,300.803,0.978877,-1,-1,-1
453,-1,1844.66,403.004,74.34,295.597,0.973544,-1,-1,-1
453,-1,1259.84,383.483,72.51,375.687,0.777036,-1,-1,-1
453,-1,1655.86,462.827,57.13,132.914,0.522779,-1,-1,-1
454,-1,190.324,168.788,323.928,851.732,0.996613,-1,-1,-1
454,-1,1184.09,396.998,127.08,331.569,0.989933,-1,-1,-1
454,-1,1418.55,428.393,51.96,233.254,0.986966,-1,-1,-1
454,-1,1750.83,394.186,90.62,308.182,0.985402,-1,-1,-1
454,-1,1858.76,402.976,60.24,273.369,0.970244,-1,-1,-1
454,-1,45.7201,272.513,238.088,681.681,0.906139,-1,-1,-1
454,-1,30.3322,509.271,107.062,232.27,0.808899,-1,-1,-1
454,-1,126.593,286.89,136.956,306.997,0.557558,-1,-1,-1
454,-1,165.417,255.86,102.571,129.519,0.553275,-1,-1,-1
455,-1,123.143,139.759,354.938,901.731,0.998166,-1,-1,-1
455,-1,1406.87,435.56,86.76,236.219,0.986807,-1,-1,-1
455,-1,1204.92,394.049,129.49,357.491,0.986074,-1,-1,-1
455,-1,1754.29,396.35,76.87,289.641,0.972116,-1,-1,-1
455,-1,14.9633,497.312,99.8717,250.781,0.962274,-1,-1,-1
455,-1,1824.38,397.278,87.92,281.443,0.954459,-1,-1,-1
455,-1,103.35,380.491,108.129,192.095,0.839165,-1,-1,-1
455,-1,1652.8,454.687,55.52,136.601,0.648039,-1,-1,-1
456,-1,120.218,136.122,321.448,910.638,0.998963,-1,-1,-1
456,-1,1216.57,357.857,123.29,378.437,0.988297,-1,-1,-1
456,-1,1412.35,420.324,77.55,226.115,0.97653,-1,-1,-1
456,-1,1815.58,389.976,88.83,284.018,0.972016,-1,-1,-1
456,-1,1743.29,403.161,93.45,284.967,0.970223,-1,-1,-1
456,-1,1671.81,444.221,56.35,138.961,0.749676,-1,-1,-1
456,-1,101.967,338.2,93.544,250.001,0.571016,-1,-1,-1
457,-1,94.1243,167.99,334.399,893.19,0.996584,-1,-1,-1
457,-1,1216.29,374.257,121.41,360.491,0.993537,-1,-1,-1
457,-1,1714.36,388.756,156.06,280.254,0.979981,-1,-1,-1
457,-1,1413.78,443.299,93.48,208.759,0.960904,-1,-1,-1
457,-1,1823.57,404.725,91.95,266.145,0.930526,-1,-1,-1
457,-1,1650.85,450.568,71.72,153.579,0.819497,-1,-1,-1
458,-1,92.1711,66.1603,312.416,993.86,0.996848,-1,-1,-1
458,-1,1230.17,385.313,120.45,346.974,0.993111,-1,-1,-1
458,-1,1719.08,389.061,154.38,289.68,0.985613,-1,-1,-1
458,-1,1425.89,432.975,69.4,232.856,0.965595,-1,-1,-1
458,-1,1864.38,426.4,54.12,256.176,0.873047,-1,-1,-1
458,-1,31.3733,327.986,122.747,277.718,0.695922,-1,-1,-1
458,-1,1644.89,462.831,60.5,136.285,0.606974,-1,-1,-1
459,-1,97.1949,116.073,307.209,931.527,0.998638,-1,-1,-1
459,-1,1221.72,374.166,125.54,340.496,0.994838,-1,-1,-1
459,-1,1717.05,405.17,155.04,283.212,0.991584,-1,-1,-1
459,-1,1413.21,428.501,117.13,247.713,0.985088,-1,-1,-1
459,-1,1866.45,435.832,52.55,207.513,0.870404,-1,-1,-1
459,-1,11.1614,299.377,148.996,290.885,0.682122,-1,-1,-1
460,-1,54.6495,133.722,334.298,928.048,0.998937,-1,-1,-1
460,-1,1228.91,371.633,120.49,342.416,0.993414,-1,-1,-1
460,-1,1434.34,430.536,79.31,234.511,0.990703,-1,-1,-1
460,-1,1717.65,401.312,95.28,276.523,0.978299,-1,-1,-1
460,-1,1774.99,401.94,81.12,269.474,0.965453,-1,-1,-1
460,-1,1871.52,410.622,47.48,253.414,0.900782,-1,-1,-1
460,-1,1827.77,407.403,56.92,266.888,0.818879,-1,-1,-1
461,-1,63.751,132.721,346.869,915.959,0.998288,-1,-1,-1
461,-1,1433.93,428.064,87.15,225.315,0.992799,-1,-1,-1
461,-1,1701.64,381.416,131.52,300.112,0.984956,-1,-1,-1
461,-1,1255.71,376.154,112.24,342.167,0.975806,-1,-1,-1
461,-1,1863.5,435.954,54.57,205.787,0.926935,-1,-1,-1
461,-1,1786.69,406.474,69.48,277.071,0.925642,-1,-1,-1
461,-1,1834.48,414.096,54.21,246.886,0.853209,-1,-1,-1
462,-1,15.7987,124.186,408.128,943.684,0.999326,-1,-1,-1
462,-1,1436.21,428.694,82.27,223.76,0.992659,-1,-1,-1
462,-1,1241.7,375.999,126.3,373.65,0.988516,-1,-1,-1
462,-1,1671.47,395.779,160.48,287.951,0.987479,-1,-1,-1
462,-1,1806.16,419.877,73.95,270.547,0.959342,-1,-1,-1
462,-1,1866.57,422.471,49.4,203.558,0.917305,-1,-1,-1
462,-1,1840.35,444.759,52.68,148.442,0.613495,-1,-1,-1
463,-1,8.02631,148.276,410.301,890.834,0.998538,-1,-1,-1
463,-1,1267.4,386.449,110.51,321.631,0.995263,-1,-1,-1
463,-1,1430.02,437.351,106.5,214.274,0.990483,-1,-1,-1
463,-1,1810.38,408.6,87.28,248.085,0.984765,-1,-1,-1
463,-1,1678.33,423.101,105.55,248.222,0.981273,-1,-1,-1
463,-1,1863.31,442.442,52.37,191.509,0.907171,-1,-1,-1
463,-1,252.344,243.074,186.596,672.442,0.853616,-1,-1,-1
463,-1,1753.76,425.181,85.1,188.464,0.55196,-1,-1,-1
464,-1,0,117.375,339.26,929.315,0.998237,-1,-1,-1
464,-1,1265.44,389.933,137.71,326.451,0.995715,-1,-1,-1
464,-1,201.627,247.128,253.302,685.066,0.990712,-1,-1,-1
464,-1,1798.73,423.457,116.19,237.233,0.990035,-1,-1,-1
464,-1,1450.45,462.144,92.5,183.955,0.984592,-1,-1,-1
464,-1,1657.63,429.033,176.19,243.466,0.975081,-1,-1,-1
465,-1,201.585,294.046,257.628,631.935,0.997485,-1,-1,-1
465,-1,0,140.684,252.29,925.956,0.996159,-1,-1,-1
465,-1,1260.7,378.948,132.24,339.521,0.994133,-1,-1,-1
465,-1,1819.75,406.469,81.31,249.488,0.99069,-1,-1,-1
465,-1,1648.74,412.778,123.01,273.038,0.98342,-1,-1,-1
465,-1,1448.35,429.476,92.23,197.068,0.958696,-1,-1,-1
465,-1,1714.54,396.784,118.92,285.235,0.958599,-1,-1,-1
466,-1,221.36,299.657,251.316,623.703,0.997002,-1,-1,-1
466,-1,0,98.8684,253.969,878.605,0.995585,-1,-1,-1
466,-1,1257.82,368.738,166.95,341.968,0.99237,-1,-1,-1
466,-1,1821.59,413.708,69.63,247.027,0.990541,-1,-1,-1
466,-1,1643.67,424.695,117.03,266.065,0.975647,-1,-1,-1
466,-1,1744.35,415.742,63.97,241.469,0.961279,-1,-1,-1
466,-1,1443.24,423.617,104.82,219.981,0.872693,-1,-1,-1
467,-1,241.046,283.565,229.225,614.57,0.998452,-1,-1,-1
467,-1,0,80.4203,217.931,934.82,0.996543,-1,-1,-1
467,-1,1292.03,386.728,119.47,329.538,0.99427,-1,-1,-1
467,-1,1825.29,433.223,93.71,206.469,0.983518,-1,-1,-1
467,-1,1745.86,393.267,75.81,272.146,0.967512,-1,-1,-1
467,-1,1648.33,425.248,92.89,244.514,0.965194,-1,-1,-1
467,-1,1487.94,454.647,49.81,182.817,0.867139,-1,-1,-1
468,-1,262.482,275.913,228.317,638.401,0.998359,-1,-1,-1
468,-1,1301.54,377.693,124.42,352.713,0.990859,-1,-1,-1
468,-1,1809.9,415.822,109.1,247.689,0.978322,-1,-1,-1
468,-1,0,81.4086,205.388,916.643,0.97512,-1,-1,-1
468,-1,1645.34,418.638,89.22,269.106,0.972419,-1,-1,-1
468,-1,1489.23,436.605,65.41,188.979,0.952063,-1,-1,-1
468,-1,1743.93,406.319,64.51,268.27,0.945678,-1,-1,-1
469,-1,269.344,275.404,233.381,628.16,0.998712,-1,-1,-1
469,-1,1825.91,424.971,84.43,210.949,0.991742,-1,-1,-1
469,-1,1312.66,382.439,114.45,318.912,0.989642,-1,-1,-1
469,-1,1484.81,453.71,60.16,195.345,0.983183,-1,-1,-1
469,-1,6.13338,52.9422,158.989,935.516,0.980636,-1,-1,-1
469,-1,1759.1,406.079,73.89,273.197,0.961726,-1,-1,-1
469,-1,1636.07,402.082,88.52,297.152,0.960899,-1,-1,-1
469,-1,1710.18,410.279,60.37,273.98,0.752467,-1,-1,-1
470,-1,302.747,331.517,192.29,531.229,0.998561,-1,-1,-1
470,-1,1824.58,411.169,84.1,234.954,0.991569,-1,-1,-1
470,-1,1302.05,388.983,117.94,321.9,0.985349,-1,-1,-1
470,-1,1621.92,398.574,81.21,286.513,0.982981,-1,-1,-1
470,-1,1481.85,429.873,72.66,222.73,0.969178,-1,-1,-1
470,-1,1755.45,412.908,67.79,262.028,0.95586,-1,-1,-1
470,-1,1714.81,414.082,56.95,253.838,0.916435,-1,-1,-1
470,-1,1.00931,116.348,116.637,447.374,0.789933,-1,-1,-1
470,-1,116.04,456.866,81.872,330.689,0.712875,-1,-1,-1
471,-1,309.729,256.791,210.932,630.983,0.998554,-1,-1,-1
471,-1,1830.23,435.303,84.6,199.012,0.991512,-1,-1,-1
471,-1,1325.62,377.994,123.39,328.274,0.984515,-1,-1,-1
471,-1,1483.78,429.072,69.71,217.816,0.972479,-1,-1,-1
471,-1,1627.63,390.151,95.9,305.74,0.963689,-1,-1,-1
471,-1,1700.18,395.963,64.26,280.713,0.963607,-1,-1,-1
471,-1,105.297,452.85,101.177,311.041,0.954219,-1,-1,-1
471,-1,1769.52,424.998,50.24,215.725,0.916932,-1,-1,-1
471,-1,7.70614,399.253,96.1829,465.035,0.571026,-1,-1,-1
472,-1,311.328,262.078,252.772,648.76,0.999121,-1,-1,-1
472,-1,1839.15,437.08,79.05,189.687,0.992032,-1,-1,-1
472,-1,1331.59,386.599,122.83,329.404,0.989649,-1,-1,-1
472,-1,1484.14,429.73,68.99,221.534,0.975588,-1,-1,-1
472,-1,1613.54,431.268,86.76,254.158,0.970741,-1,-1,-1
472,-1,1698.09,384.308,60.29,289.236,0.967952,-1,-1,-1
472,-1,106.036,472.335,101.259,296.197,0.960842,-1,-1,-1
472,-1,1772.79,416.976,52.25,206.053,0.893893,-1,-1,-1
472,-1,13.1931,471.36,93.4749,314.132,0.871698,-1,-1,-1
472,-1,1727.01,448.342,53.12,191.708,0.569763,-1,-1,-1
473,-1,322.145,280.403,227.095,588.246,0.99905,-1,-1,-1
473,-1,1332.67,389.227,120.36,345.143,0.992064,-1,-1,-1
473,-1,1836.99,431.181,82.01,192.611,0.991792,-1,-1,-1
473,-1,1611.17,424.236,69.42,258.963,0.988238,-1,-1,-1
473,-1,1485.05,452.748,71.66,182.543,0.988025,-1,-1,-1
473,-1,1682,385.682,66.75,290.561,0.965786,-1,-1,-1
473,-1,29.262,506.745,78.351,260.511,0.96236,-1,-1,-1
473,-1,1779.47,416.249,57.7,214.01,0.945714,-1,-1,-1
473,-1,100.733,489.471,99.819,264.589,0.944538,-1,-1,-1
473,-1,1149.6,445.383,87.6,213.104,0.520669,-1,-1,-1
474,-1,336.739,289.128,230.257,584.747,0.998457,-1,-1,-1
474,-1,1350.86,385.021,110.71,333.348,0.992142,-1,-1,-1
474,-1,1838.88,433.385,80.12,210.096,0.991275,-1,-1,-1
474,-1,1606.69,425.465,68.17,243.635,0.982208,-1,-1,-1
474,-1,1672.88,411.33,73.16,248.528,0.969645,-1,-1,-1
474,-1,1490.68,430.212,76.22,215.522,0.959793,-1,-1,-1
474,-1,19.9401,526.741,80.0071,251.037,0.95416,-1,-1,-1
474,-1,1791.52,410.233,59.13,225.923,0.935601,-1,-1,-1
474,-1,119.403,498.137,93.254,266.365,0.917484,-1,-1,-1
474,-1,1168.15,451.706,79.51,187.204,0.712079,-1,-1,-1
474,-1,67.1784,523.507,58.1056,216.538,0.610757,-1,-1,-1
475,-1,354.929,257.708,228.569,635.121,0.998698,-1,-1,-1
475,-1,1353.99,381.62,115.04,323.517,0.990791,-1,-1,-1
475,-1,1838.35,416.348,58.88,235.966,0.985463,-1,-1,-1
475,-1,1499.41,433.717,81.92,205.504,0.98405,-1,-1,-1
475,-1,1655.33,390.053,79.25,294.404,0.983014,-1,-1,-1
475,-1,1581.66,428.388,92.34,250.876,0.97888,-1,-1,-1
475,-1,18.0794,498.016,93.7276,257.984,0.965472,-1,-1,-1
475,-1,117.044,491.266,92.397,281.178,0.937456,-1,-1,-1
475,-1,1798.51,414.25,64.01,228.097,0.876179,-1,-1,-1
476,-1,352.454,273.615,233.47,606.288,0.998301,-1,-1,-1
476,-1,1355.4,393.488,122.51,335.584,0.994605,-1,-1,-1
476,-1,1840.91,418.557,57.87,227.934,0.984635,-1,-1,-1
476,-1,1627.59,425.218,118.28,255.437,0.981408,-1,-1,-1
476,-1,1497.37,434.518,75.91,208.296,0.975675,-1,-1,-1
476,-1,18.3206,501.581,91.7504,265.098,0.969253,-1,-1,-1
476,-1,1575.83,431.677,93.29,230.462,0.957294,-1,-1,-1
476,-1,1793.91,402.978,67.75,238.61,0.951282,-1,-1,-1
476,-1,117.9,497.836,77.842,270.492,0.940223,-1,-1,-1
477,-1,337.551,300.987,255.889,582.271,0.998442,-1,-1,-1
477,-1,1363.35,384.348,126.48,339.772,0.994948,-1,-1,-1
477,-1,1641.92,413.59,92.6,279.774,0.987148,-1,-1,-1
477,-1,1839.41,407.058,63.49,257.903,0.98434,-1,-1,-1
477,-1,16.4374,511.169,92.5616,244.046,0.976503,-1,-1,-1
477,-1,1566.03,408.869,87.74,257.16,0.970459,-1,-1,-1
477,-1,111.985,485.444,95.514,264.407,0.907491,-1,-1,-1
477,-1,1512.39,405.049,71.71,255.116,0.879646,-1,-1,-1
477,-1,1799.69,428.595,60.92,208.617,0.540206,-1,-1,-1
478,-1,362.95,293.686,249.428,576.665,0.997847,-1,-1,-1
478,-1,1624.51,390.413,85.19,303.83,0.993345,-1,-1,-1
478,-1,1353.06,392.501,151.48,320.467,0.990568,-1,-1,-1
478,-1,1827.29,414.774,91.71,227.86,0.984984,-1,-1,-1
478,-1,1578.15,412.35,66.39,261.937,0.981312,-1,-1,-1
478,-1,17.1479,529.958,83.9951,241.13,0.976978,-1,-1,-1
478,-1,1791.36,429.452,62.41,213.774,0.91431,-1,-1,-1
478,-1,1512.7,407.69,75.73,262.447,0.908737,-1,-1,-1
478,-1,119.038,499.588,88.807,272.716,0.880631,-1,-1,-1
479,-1,364.255,310.785,242.392,558.202,0.998368,-1,-1,-1
479,-1,1627.2,404.026,85.85,288.75,0.992349,-1,-1,-1
479,-1,1362.16,391.477,143.72,308.127,0.989393,-1,-1,-1
479,-1,1838.67,419.396,55.72,227.668,0.98862,-1,-1,-1
479,-1,8.10163,520.016,90.3871,235.567,0.985272,-1,-1,-1
479,-1,1554.45,404.755,87.99,287.593,0.983409,-1,-1,-1
479,-1,1792.18,430.897,60.72,202.362,0.913318,-1,-1,-1
479,-1,118.178,467.179,90.831,284.126,0.825937,-1,-1,-1
479,-1,1477.44,428.227,72.26,227.278,0.526288,-1,-1,-1
480,-1,367.476,301.368,258.393,605.029,0.997417,-1,-1,-1
480,-1,1364.12,389.126,166.77,322.535,0.995639,-1,-1,-1
480,-1,1624.85,434.613,90.03,250.278,0.992472,-1,-1,-1
480,-1,1841.68,425.788,51.23,208.841,0.989694,-1,-1,-1
480,-1,23.9183,532.605,77.5347,240.972,0.974988,-1,-1,-1
480,-1,1526.99,417.702,89.15,249.777,0.962309,-1,-1,-1
480,-1,116.324,472.374,86.887,297.835,0.718155,-1,-1,-1
481,-1,365.846,307.074,270.506,570.245,0.998673,-1,-1,-1
481,-1,1385.66,397.896,138.43,309.413,0.993991,-1,-1,-1
481,-1,1825.47,426.225,93.53,224.734,0.986429,-1,-1,-1
481,-1,1641.21,415.453,62.3,260.946,0.979365,-1,-1,-1
481,-1,26.1128,564.5,78.0802,183.672,0.972424,-1,-1,-1
481,-1,1546.26,412.76,67.98,288.02,0.939862,-1,-1,-1
481,-1,73.7192,520.042,148.454,255.186,0.866836,-1,-1,-1
481,-1,1188.55,439.08,83.04,202.192,0.531319,-1,-1,-1
482,-1,373.666,291.656,270.539,592.723,0.998448,-1,-1,-1
482,-1,1393.19,397.142,122.11,330.153,0.990039,-1,-1,-1
482,-1,1846.4,435.502,49.46,201.144,0.986478,-1,-1,-1
482,-1,1608.44,418.87,81.37,274.539,0.986221,-1,-1,-1
482,-1,1203.46,445.993,73.43,199.928,0.942158,-1,-1,-1
482,-1,4.16728,503.68,88.2084,273.957,0.930116,-1,-1,-1
482,-1,1548.67,402.516,65.83,287.18,0.910834,-1,-1,-1
482,-1,1592.2,420.36,44.57,259.256,0.892857,-1,-1,-1
482,-1,76.2437,516.888,140.739,254.313,0.76491,-1,-1,-1
483,-1,408.031,279.389,250.729,587.025,0.995777,-1,-1,-1
483,-1,1609.64,433.269,92.97,240.637,0.987029,-1,-1,-1
483,-1,1843.26,435.112,50.75,201.778,0.984249,-1,-1,-1
483,-1,1415.51,416.374,97.19,280.482,0.961565,-1,-1,-1
483,-1,1538.54,416.624,64.8,255.988,0.932167,-1,-1,-1
483,-1,8.56181,311.646,179.509,692.104,0.864086,-1,-1,-1
483,-1,1194.65,427.257,97.15,217.827,0.856282,-1,-1,-1
483,-1,115.118,488.954,79.965,273.896,0.528575,-1,-1,-1
484,-1,421.04,311.537,224.382,554.153,0.996859,-1,-1,-1
484,-1,1399.29,390.028,122.1,317.059,0.983772,-1,-1,-1
484,-1,1828.62,423.716,81.3,215.891,0.979715,-1,-1,-1
484,-1,1592.99,411.869,78,262.798,0.97915,-1,-1,-1
484,-1,1194.1,435.603,94.78,209.94,0.97075,-1,-1,-1
484,-1,4.34926,344.384,195.399,657.286,0.968752,-1,-1,-1
484,-1,1526.25,407.641,80.04,267.7,0.731775,-1,-1,-1
485,-1,405.43,305.096,267.446,559.629,0.998617,-1,-1,-1
485,-1,3.74584,227.281,203.94,789.339,0.99391,-1,-1,-1
485,-1,1209.45,454.012,88.75,185.968,0.991571,-1,-1,-1
485,-1,1559.6,416.776,117.28,281.253,0.976239,-1,-1,-1
485,-1,1828.64,435.628,68.4,230.589,0.973995,-1,-1,-1
485,-1,1423.41,385.333,116.05,319.11,0.971006,-1,-1,-1
485,-1,1688.11,481.923,34.69,106.752,0.669603,-1,-1,-1
485,-1,1533.7,449.101,52.94,194.964,0.504536,-1,-1,-1
486,-1,436.138,293.717,245.757,553.684,0.998751,-1,-1,-1
486,-1,6.31042,212.445,209.65,800.515,0.994358,-1,-1,-1
486,-1,1573.96,410.983,88.23,276.189,0.99017,-1,-1,-1
486,-1,1209.89,444.577,104.54,186.458,0.987211,-1,-1,-1
486,-1,1423.78,401.272,172.57,297.149,0.969454,-1,-1,-1
486,-1,1841.35,424.563,77.65,223.209,0.956387,-1,-1,-1
486,-1,1800.73,441.581,78.2,174.155,0.884296,-1,-1,-1
486,-1,1685.04,476.339,34.46,101.381,0.635,-1,-1,-1
486,-1,1661.84,452.538,46.29,153.063,0.548249,-1,-1,-1
487,-1,441.391,276.363,252.149,578.244,0.997078,-1,-1,-1
487,-1,1.58085,225.112,196.497,767.029,0.995627,-1,-1,-1
487,-1,1409.08,392.872,160.6,305.503,0.984864,-1,-1,-1
487,-1,1206.61,441.837,86.61,204.096,0.983604,-1,-1,-1
487,-1,1556.48,417.993,105.13,279.046,0.980914,-1,-1,-1
487,-1,1826.11,412.172,92.89,239.584,0.958179,-1,-1,-1
487,-1,1514.38,433.132,75.83,206.647,0.791516,-1,-1,-1
487,-1,1687.42,476.062,33.87,101.203,0.542653,-1,-1,-1
488,-1,474.01,295.668,219.191,536.366,0.998944,-1,-1,-1
488,-1,17.8065,233.03,217.613,767.66,0.997352,-1,-1,-1
488,-1,1558.37,422.923,72.65,252.397,0.981379,-1,-1,-1
488,-1,1421.15,406.305,149.33,295.731,0.978588,-1,-1,-1
488,-1,1830.2,415.738,88.8,222.806,0.960961,-1,-1,-1
488,-1,1224.19,439.185,94.87,201.641,0.894455,-1,-1,-1
488,-1,1680.64,482.615,37.67,92.079,0.627635,-1,-1,-1
489,-1,473.183,300.582,216.741,529.448,0.998742,-1,-1,-1
489,-1,30.224,250.278,218.978,731.003,0.997088,-1,-1,-1
489,-1,1219.8,462.942,91.56,170.54,0.991334,-1,-1,-1
489,-1,1527.87,417.931,113.86,279.505,0.974535,-1,-1,-1
489,-1,1421.9,409.677,143.53,282.107,0.972123,-1,-1,-1
489,-1,1828.74,413.945,90.26,228.398,0.961418,-1,-1,-1
489,-1,1683.99,485.736,39.43,100.801,0.690733,-1,-1,-1
490,-1,468.895,309.924,225.274,520.918,0.997779,-1,-1,-1
490,-1,47.6972,225.905,221.547,758.727,0.997592,-1,-1,-1
490,-1,1217.37,440.324,97.88,227.515,0.991054,-1,-1,-1
490,-1,1537.26,427.546,84.73,247.716,0.988796,-1,-1,-1
490,-1,1432.03,399.868,113.77,295.007,0.981574,-1,-1,-1
490,-1,1828.69,424.844,90.31,217.771,0.957532,-1,-1,-1
490,-1,1799.99,420.148,65.01,189.816,0.928291,-1,-1,-1
490,-1,1672.86,465.567,55.21,134.033,0.831549,-1,-1,-1
491,-1,478.777,307.316,230.069,532.674,0.996876,-1,-1,-1
491,-1,68.5522,228.734,201.438,765.784,0.996685,-1,-1,-1
491,-1,1238.2,446.966,86.04,194.506,0.99057,-1,-1,-1
491,-1,1541.13,413.828,79.53,251.716,0.990279,-1,-1,-1
491,-1,1430.62,397.894,129.23,293.926,0.979148,-1,-1,-1
491,-1,1827.3,421.668,91.7,214.123,0.959568,-1,-1,-1
491,-1,19.2264,514.215,83.0406,239.127,0.835771,-1,-1,-1
491,-1,1798.98,417.173,62.04,212.553,0.790519,-1,-1,-1
491,-1,1673.43,466.936,54.81,130.347,0.749605,-1,-1,-1
492,-1,510.781,297.746,192.757,542.059,0.995397,-1,-1,-1
492,-1,109.998,210.606,155.716,787.391,0.99372,-1,-1,-1
492,-1,1241.35,448.982,81.82,205.641,0.986005,-1,-1,-1
492,-1,1525.75,414.384,111.92,268.86,0.979569,-1,-1,-1
492,-1,1811.83,434.514,102.14,193.696,0.969812,-1,-1,-1
492,-1,1431.45,393.789,142.63,308.426,0.967727,-1,-1,-1
492,-1,23.7753,517.519,78.5347,221.763,0.966284,-1,-1,-1
492,-1,1676.12,465.274,54.75,124.479,0.893135,-1,-1,-1
493,-1,480.839,296.135,249.744,537.393,0.998292,-1,-1,-1
493,-1,121.135,215.549,227.205,759.507,0.993847,-1,-1,-1
493,-1,24.112,522.965,81.413,210.427,0.982011,-1,-1,-1
493,-1,1449.03,399.428,140.14,294.716,0.973294,-1,-1,-1
493,-1,1817.38,434.138,94.72,190.566,0.963634,-1,-1,-1
493,-1,1537.88,413.708,98.82,271.704,0.924804,-1,-1,-1
493,-1,1225.44,424.934,79.6,233.189,0.912408,-1,-1,-1
493,-1,1677.5,465.641,54.05,120.986,0.873354,-1,-1,-1
494,-1,494.468,308.124,243.085,530.317,0.998195,-1,-1,-1
494,-1,134.208,239.95,223.677,754.562,0.995458,-1,-1,-1
494,-1,1446.46,388.037,142.38,321.731,0.984118,-1,-1,-1
494,-1,28.9835,534.443,75.1385,202.985,0.983588,-1,-1,-1
494,-1,1820.38,427.445,86.21,194.457,0.961137,-1,-1,-1
494,-1,1236.21,419.526,72.28,229.141,0.9308,-1,-1,-1
494,-1,1558,434.244,81.21,239.832,0.91414,-1,-1,-1
494,-1,1680.8,475.42,49.61,121.4,0.873121,-1,-1,-1
495,-1,507.363,291.704,245.316,538.681,0.997171,-1,-1,-1
495,-1,154.368,248.336,252.733,722.004,0.994945,-1,-1,-1
495,-1,1243.75,458.77,88.45,185.263,0.989798,-1,-1,-1
495,-1,32.9233,553.703,81.9447,182.02,0.986454,-1,-1,-1
495,-1,1452.92,399.473,145.25,300.579,0.985373,-1,-1,-1
495,-1,1803.17,413.869,78.89,203.523,0.96857,-1,-1,-1
495,-1,1857.04,436.125,61.96,187.395,0.943839,-1,-1,-1
495,-1,1572.95,421.675,64.42,241.422,0.898299,-1,-1,-1
495,-1,1675.75,467.757,53.97,134.524,0.877696,-1,-1,-1
496,-1,510.245,307.701,249.573,542.7,0.997813,-1,-1,-1
496,-1,174.972,247.197,270.159,734.37,0.996431,-1,-1,-1
496,-1,1431.11,389.933,185.98,313.443,0.990258,-1,-1,-1
496,-1,17.713,542.251,92.15,201.892,0.986392,-1,-1,-1
496,-1,1828.4,418.28,54.41,188.279,0.974242,-1,-1,-1
496,-1,1250.63,429.403,85.44,254.035,0.952578,-1,-1,-1
496,-1,1675.05,474.121,40.8,107.614,0.872437,-1,-1,-1
496,-1,1566.83,418.981,70.02,242.822,0.677545,-1,-1,-1
497,-1,516.729,316.504,230.864,512.772,0.998692,-1,-1,-1
497,-1,172.995,260.869,283.992,706.034,0.996548,-1,-1,-1
497,-1,1434.11,400.122,220.72,282.66,0.991941,-1,-1,-1
497,-1,28.61,521.698,78.487,224.96,0.984892,-1,-1,-1
497,-1,1799.81,420.243,78.59,209.853,0.97828,-1,-1,-1
497,-1,1675.3,475.462,42.51,112.304,0.901918,-1,-1,-1
497,-1,1846.42,415.93,71.83,242.478,0.90155,-1,-1,-1
497,-1,1276.77,432.497,63.31,223.721,0.659362,-1,-1,-1
497,-1,1702.09,471.67,30.67,86.603,0.633424,-1,-1,-1
497,-1,1581.69,429.252,76.3,212.578,0.630983,-1,-1,-1
498,-1,536.976,308.584,228.47,538.369,0.997076,-1,-1,-1
498,-1,217.987,257.495,246.689,739.433,0.992001,-1,-1,-1
498,-1,1479.47,402.683,137.74,276.247,0.988618,-1,-1,-1
498,-1,1799.8,422.224,78.99,209.611,0.97928,-1,-1,-1
498,-1,9.71122,531.019,85.3987,244.714,0.973206,-1,-1,-1
498,-1,1863.98,421.864,55.02,198.721,0.925475,-1,-1,-1
498,-1,1421.41,417.088,73.21,269.497,0.924402,-1,-1,-1
498,-1,1280.58,436.951,70.96,214.509,0.919324,-1,-1,-1
498,-1,1673.48,473.3,43,120.739,0.85603,-1,-1,-1
498,-1,1564.11,434.155,85.25,229.428,0.695366,-1,-1,-1
498,-1,116.42,535.545,61.149,215.902,0.600459,-1,-1,-1
499,-1,1472.71,397.643,179.24,298.401,0.993282,-1,-1,-1
499,-1,255.403,254.713,216.068,708.505,0.992435,-1,-1,-1
499,-1,519.564,327.54,236.836,530.031,0.992092,-1,-1,-1
499,-1,1809.06,433.578,71.25,183.933,0.979326,-1,-1,-1
499,-1,12.1247,512.234,100.171,238.243,0.963941,-1,-1,-1
499,-1,1415.29,410.023,69.42,264.853,0.948142,-1,-1,-1
499,-1,1295.75,462.917,69.48,184.089,0.925384,-1,-1,-1
499,-1,1865.42,442.157,53.58,189.224,0.871447,-1,-1,-1
499,-1,119.478,548.443,64.847,194.677,0.735557,-1,-1,-1
499,-1,1585.41,416.916,61.12,248.675,0.657411,-1,-1,-1
500,-1,551.322,327.499,219.35,527.216,0.997192,-1,-1,-1
500,-1,1492.07,395.996,124.31,283.424,0.989227,-1,-1,-1
500,-1,313.777,278.582,170.341,657.695,0.986946,-1,-1,-1
500,-1,19.2197,517.851,94.5723,241.146,0.97605,-1,-1,-1
500,-1,1804.08,433.573,74.32,182.916,0.976025,-1,-1,-1
500,-1,1305.46,476.812,68.33,183.291,0.97244,-1,-1,-1
500,-1,1422.93,449.991,63.71,193.774,0.970371,-1,-1,-1
500,-1,1862.82,421.88,56.18,214.597,0.924748,-1,-1,-1
500,-1,113.727,573.358,78.45,181.007,0.921007,-1,-1,-1
500,-1,1677.4,449.609,54.43,163.439,0.524063,-1,-1,-1
501,-1,579.855,314.354,209.655,540.111,0.998345,-1,-1,-1
501,-1,1503.03,413.669,153.1,264.104,0.990914,-1,-1,-1
501,-1,306.2,275.264,221.499,711.726,0.989911,-1,-1,-1
501,-1,12.4756,512.987,104.127,251.59,0.981893,-1,-1,-1
501,-1,1402.63,424.847,82.21,250.339,0.969371,-1,-1,-1
501,-1,1827.01,408.836,56.96,228.272,0.940307,-1,-1,-1
501,-1,1865.36,429.611,53.64,210.669,0.932849,-1,-1,-1
501,-1,1286.94,424.981,74.32,216.584,0.910551,-1,-1,-1
501,-1,115.521,551.444,76.19,199.706,0.845073,-1,-1,-1
502,-1,590.01,320.351,213.874,540.286,0.998965,-1,-1,-1
502,-1,1310.48,453.754,70.81,211.487,0.982491,-1,-1,-1
502,-1,1512.74,394.519,126.54,294.042,0.981351,-1,-1,-1
502,-1,10.7753,506.559,108.341,251.836,0.980016,-1,-1,-1
502,-1,320.596,244.057,193.344,725.192,0.972968,-1,-1,-1
502,-1,1392.36,424.245,79,249.247,0.965634,-1,-1,-1
502,-1,1837.63,431.63,55.73,186.089,0.951106,-1,-1,-1
502,-1,1815.42,443.411,46.21,181.437,0.888443,-1,-1,-1
502,-1,120.005,581.614,72.119,158.081,0.833985,-1,-1,-1
502,-1,1449.26,416.96,68.14,269.792,0.546451,-1,-1,-1
503,-1,597.146,320.397,184.55,511.989,0.99752,-1,-1,-1
503,-1,1465.98,419.162,200.29,253.377,0.987682,-1,-1,-1
503,-1,24.3552,530.051,92.2008,218.489,0.983394,-1,-1,-1
503,-1,1822.18,426.205,71.91,199.299,0.967765,-1,-1,-1
503,-1,336.028,271.856,221.244,685.51,0.954192,-1,-1,-1
503,-1,1382.81,413.705,71.47,242.912,0.9407,-1,-1,-1
503,-1,1314.91,428.644,62.96,229.756,0.919216,-1,-1,-1
503,-1,120.432,585.989,68.781,154.917,0.888224,-1,-1,-1
503,-1,1424.96,418.093,76.4,254.528,0.822929,-1,-1,-1
504,-1,621.814,325.982,161.253,481.234,0.998838,-1,-1,-1
504,-1,1497.88,410.307,179.99,260.745,0.989976,-1,-1,-1
504,-1,15.7214,508.7,102.222,247.492,0.981607,-1,-1,-1
504,-1,393.441,362.173,158.496,565.206,0.978278,-1,-1,-1
504,-1,1828.03,430.302,69.33,204.343,0.972253,-1,-1,-1
504,-1,1438.76,417.977,81.99,268.494,0.969046,-1,-1,-1
504,-1,1377.57,446.555,69.43,226.52,0.946718,-1,-1,-1
504,-1,1312.38,450.581,65.21,197.076,0.923903,-1,-1,-1
504,-1,119.205,584.751,69.958,157.824,0.837038,-1,-1,-1
504,-1,1580.68,450.539,74.24,181.213,0.547372,-1,-1,-1
505,-1,609.866,317.339,211.542,502.303,0.998336,-1,-1,-1
505,-1,411.663,249.061,177.298,696.017,0.993123,-1,-1,-1
505,-1,29.2678,508.922,86.4282,257.11,0.982382,-1,-1,-1
505,-1,1532.57,383.769,111.48,305.688,0.974104,-1,-1,-1
505,-1,1828.12,419.236,88.93,229.087,0.954105,-1,-1,-1
505,-1,115.999,577.655,81.462,170.335,0.952027,-1,-1,-1
505,-1,1433.29,409.337,90.4,285.306,0.939676,-1,-1,-1
505,-1,1374.41,435.046,74.59,235.848,0.923744,-1,-1,-1
505,-1,1622.35,425.581,62.8,216.734,0.686745,-1,-1,-1
505,-1,1315.88,426.887,64.67,230.672,0.553217,-1,-1,-1
506,-1,632.159,309.821,173.817,508.685,0.99722,-1,-1,-1
506,-1,437.01,247.437,169.521,687.051,0.99448,-1,-1,-1
506,-1,18.4456,514.566,96.9524,236.092,0.986826,-1,-1,-1
506,-1,1530.07,392.817,99.06,284.819,0.977511,-1,-1,-1
506,-1,1421.96,408.824,110.09,276.385,0.969537,-1,-1,-1
506,-1,1831.04,407.606,85.23,228.801,0.961825,-1,-1,-1
506,-1,1380.72,425.427,67.16,240.03,0.938834,-1,-1,-1
506,-1,114.507,560.929,75.569,180.628,0.760301,-1,-1,-1
506,-1,1616.38,410.692,67.53,240.77,0.759759,-1,-1,-1
506,-1,1341.36,455.906,59.92,215.432,0.682657,-1,-1,-1
507,-1,450.64,246.329,173.882,686.337,0.998631,-1,-1,-1
507,-1,637.643,316.431,178,518.955,0.998014,-1,-1,-1
507,-1,1433.04,410.544,86.69,260.569,0.978485,-1,-1,-1
507,-1,1520.16,398.197,147.72,256.289,0.974108,-1,-1,-1
507,-1,24.5444,529.34,80.3346,223.68,0.973215,-1,-1,-1
507,-1,1827.51,440.392,66.51,185.237,0.968375,-1,-1,-1
507,-1,1363.53,431.328,82.26,228.2,0.952683,-1,-1,-1
507,-1,95.4666,535.373,88.4564,219.511,0.771594,-1,-1,-1
507,-1,1616.09,429.274,67.95,228.142,0.744969,-1,-1,-1
508,-1,470.773,268.812,214.521,649.867,0.996499,-1,-1,-1
508,-1,632.731,313.084,191.345,506.244,0.992819,-1,-1,-1
508,-1,1827.52,434.517,73.96,200.59,0.982885,-1,-1,-1
508,-1,1534.01,391.795,119.28,284.821,0.979122,-1,-1,-1
508,-1,1406.93,416.244,102.13,251.966,0.97661,-1,-1,-1
508,-1,29.8443,511.837,84.5977,244.342,0.971719,-1,-1,-1
508,-1,1354.81,425.962,95.41,251.104,0.96537,-1,-1,-1
508,-1,107.856,559.391,85.852,195.661,0.885841,-1,-1,-1
508,-1,1609.74,430.955,77.35,215.009,0.787219,-1,-1,-1
508,-1,957.181,499.042,72.759,158.447,0.643436,-1,-1,-1
509,-1,468.071,275.357,218.036,643.862,0.996327,-1,-1,-1
509,-1,627.68,324.139,198.468,515.294,0.992875,-1,-1,-1
509,-1,1428.34,430.952,89.08,245.615,0.984865,-1,-1,-1
509,-1,1526.93,411.554,142.87,249.435,0.982289,-1,-1,-1
509,-1,1834.03,420.858,75.52,195.82,0.978099,-1,-1,-1
509,-1,86.6063,505.963,111.013,255.089,0.96956,-1,-1,-1
509,-1,1362.47,430.26,78.22,219.569,0.967801,-1,-1,-1
509,-1,37.1397,510.888,73.6073,253.966,0.947033,-1,-1,-1
509,-1,1663.76,450.843,38.07,159.628,0.508611,-1,-1,-1
510,-1,652.622,315.217,171.498,520.577,0.994475,-1,-1,-1
510,-1,1824.31,439.97,74.81,178.488,0.990902,-1,-1,-1
510,-1,88.1795,461.62,114.55,319.586,0.990716,-1,-1,-1
510,-1,1403.89,407.625,89.12,276.689,0.985575,-1,-1,-1
510,-1,1546.27,401.528,122.29,279.799,0.985494,-1,-1,-1
510,-1,522.168,257.96,186.023,675.126,0.982666,-1,-1,-1
510,-1,1350.94,421.586,84.05,248.041,0.962669,-1,-1,-1
510,-1,22.3226,508.003,72.3477,233.677,0.961129,-1,-1,-1
510,-1,1652.72,448.949,42.38,167.436,0.796906,-1,-1,-1
511,-1,650.629,303.524,179.505,545.94,0.994237,-1,-1,-1
511,-1,511.248,257.407,211.931,664.298,0.992318,-1,-1,-1
511,-1,1837.46,423.273,70.15,199.595,0.985494,-1,-1,-1
511,-1,107.184,438.39,89.224,317.037,0.983885,-1,-1,-1
511,-1,1551.62,399.36,114.44,279.988,0.981559,-1,-1,-1
511,-1,1404.88,419.124,83.29,251.707,0.971594,-1,-1,-1
511,-1,13.5114,510.164,82.4684,243.791,0.95999,-1,-1,-1
511,-1,1359.73,429.082,65.74,226.274,0.950379,-1,-1,-1
511,-1,1640.25,439.57,48.81,191.287,0.875771,-1,-1,-1
511,-1,54.7524,491.828,92.5616,284.308,0.59741,-1,-1,-1
512,-1,513.259,289.917,235.889,634.11,0.994247,-1,-1,-1
512,-1,650.344,344.003,176.719,493.997,0.99148,-1,-1,-1
512,-1,16.5302,500.437,98.2298,267.608,0.985759,-1,-1,-1
512,-1,1842.32,427.448,68,197.756,0.983557,-1,-1,-1
512,-1,1556,394.091,109.66,292.609,0.981015,-1,-1,-1
512,-1,1349.4,473.693,74.15,175.797,0.979494,-1,-1,-1
512,-1,111.4,470.02,85.156,298.991,0.978696,-1,-1,-1
512,-1,1402,434.682,105.39,227.219,0.954324,-1,-1,-1
512,-1,1616.54,433.154,68.8,210.315,0.915963,-1,-1,-1
512,-1,1655.75,466.054,40.99,156.282,0.812273,-1,-1,-1
513,-1,533.193,301.295,221.154,615.544,0.991529,-1,-1,-1
513,-1,1336.6,434.829,149.96,252.359,0.98518,-1,-1,-1
513,-1,695.413,334.759,152.925,467.445,0.984032,-1,-1,-1
513,-1,1842.3,399.211,76.7,254.316,0.982527,-1,-1,-1
513,-1,1553.13,405.207,119.44,278.933,0.978301,-1,-1,-1
513,-1,21.844,522.587,80.059,225.009,0.955998,-1,-1,-1
513,-1,109.864,487.136,89.102,263.533,0.948652,-1,-1,-1
513,-1,1635.84,446.135,48.8,195.666,0.776236,-1,-1,-1
514,-1,576.657,317.953,185.075,584.709,0.990473,-1,-1,-1
514,-1,1347.29,424.863,142.76,242.69,0.989535,-1,-1,-1
514,-1,1554.86,427.163,151.58,244.488,0.981403,-1,-1,-1
514,-1,1844.25,426.681,67.64,189.987,0.978843,-1,-1,-1
514,-1,725.679,329.578,117.131,509.693,0.978803,-1,-1,-1
514,-1,11.7519,518.96,79.615,211.942,0.949248,-1,-1,-1
514,-1,105.747,454.192,95.412,317.428,0.903344,-1,-1,-1
514,-1,1636.19,455.668,69.63,157.366,0.714232,-1,-1,-1
515,-1,604.828,315.549,165.655,592.269,0.98656,-1,-1,-1
515,-1,1581.71,402.726,117.13,280.29,0.982713,-1,-1,-1
515,-1,1363.72,428.597,107.94,254.628,0.982245,-1,-1,-1
515,-1,1842.56,426.267,68.67,187.911,0.98082,-1,-1,-1
515,-1,15.0264,528.69,64.6487,211.64,0.966943,-1,-1,-1
515,-1,734.062,340.973,108.202,494.776,0.959772,-1,-1,-1
515,-1,1323.09,439.629,85.99,231.79,0.946278,-1,-1,-1
515,-1,106.255,485.449,97.384,277.837,0.933645,-1,-1,-1
515,-1,1562.42,440.002,66.44,205.207,0.707779,-1,-1,-1
516,-1,635.364,320.19,143.986,564.998,0.989212,-1,-1,-1
516,-1,744.264,325.463,118.034,515.46,0.978042,-1,-1,-1
516,-1,1370.68,415.969,86.49,271.205,0.977207,-1,-1,-1
516,-1,1582.57,411.712,107.95,240.476,0.976585,-1,-1,-1
516,-1,1841.68,379.091,76.48,261.693,0.949685,-1,-1,-1
516,-1,106.237,485.129,99.996,282.782,0.931692,-1,-1,-1
516,-1,20.1113,523.146,74.7742,223.59,0.921467,-1,-1,-1
516,-1,1312.36,431.388,81.55,222.728,0.91363,-1,-1,-1
517,-1,640.825,274.913,179.665,610.993,0.992121,-1,-1,-1
517,-1,1587.15,407.303,118.47,252,0.985015,-1,-1,-1
517,-1,745.898,327.851,124.025,503.501,0.97481,-1,-1,-1
517,-1,1389.74,456.725,60.05,190.907,0.968868,-1,-1,-1
517,-1,15.3558,538.623,72.022,189.79,0.954028,-1,-1,-1
517,-1,102.889,480.158,99.866,290.393,0.953144,-1,-1,-1
517,-1,1314.96,438.116,63.98,238.175,0.936604,-1,-1,-1
517,-1,1856.07,410.267,62.93,230.303,0.920904,-1,-1,-1
518,-1,673.578,320.921,165.369,553.197,0.988776,-1,-1,-1
518,-1,1586.58,413.056,114.12,253.557,0.985778,-1,-1,-1
518,-1,1367.11,432.075,77.52,242.868,0.981513,-1,-1,-1
518,-1,102.553,493.58,95.56,276.406,0.957723,-1,-1,-1
518,-1,1855.69,403.941,63.31,227.356,0.947579,-1,-1,-1
518,-1,22.3031,543.112,72.8006,199.782,0.887769,-1,-1,-1
518,-1,1319.94,447.199,66.19,213.372,0.869076,-1,-1,-1
518,-1,1657.42,437.074,58.4,192.486,0.560194,-1,-1,-1
519,-1,679.373,332.608,168.769,551.73,0.994436,-1,-1,-1
519,-1,102.251,538.2,82.855,203.654,0.985282,-1,-1,-1
519,-1,1359.8,426.575,111.91,257.751,0.979212,-1,-1,-1
519,-1,1584.03,410.693,106.61,250.782,0.97046,-1,-1,-1
519,-1,1838.39,373.063,80.61,285.836,0.953445,-1,-1,-1
519,-1,1310,447.594,75.19,214.465,0.891476,-1,-1,-1
519,-1,37.3566,553.578,66.3634,202.032,0.873854,-1,-1,-1
519,-1,1660.6,449.569,64.83,185.489,0.730097,-1,-1,-1
520,-1,681.218,279.53,171.478,618.403,0.996292,-1,-1,-1
520,-1,1597.96,404.165,82.73,283.858,0.985783,-1,-1,-1
520,-1,97.1567,534.482,91.7163,219.107,0.983643,-1,-1,-1
520,-1,1351.43,430.029,87.42,223.402,0.948876,-1,-1,-1
520,-1,1831.21,366.082,87.79,308.759,0.948812,-1,-1,-1
520,-1,1429.08,447.932,53.31,192.643,0.941144,-1,-1,-1
520,-1,38.8889,544.234,69.2191,213.971,0.896396,-1,-1,-1
520,-1,1293.39,436.882,60.28,214.805,0.894536,-1,-1,-1
520,-1,1663.41,437.777,57.94,193.868,0.623228,-1,-1,-1
521,-1,712.019,296.879,184.542,580.077,0.997437,-1,-1,-1
521,-1,1579.97,407.184,133.57,272.453,0.985381,-1,-1,-1
521,-1,97.5891,515.32,100.722,248.271,0.969144,-1,-1,-1
521,-1,1298.94,446.435,60.21,195.47,0.963732,-1,-1,-1
521,-1,1834.19,368.486,84.81,308.562,0.963674,-1,-1,-1
521,-1,1337.71,440.349,74.11,212.728,0.932065,-1,-1,-1
521,-1,39.3118,543.595,71.3762,217.922,0.925553,-1,-1,-1
521,-1,1425.28,441.125,48.55,220.042,0.912003,-1,-1,-1
521,-1,1387.96,440.837,55.72,210.728,0.795972,-1,-1,-1
522,-1,713.639,305.883,181.919,579.488,0.998242,-1,-1,-1
522,-1,1584.53,399.726,121.25,286.999,0.993134,-1,-1,-1
522,-1,1330.8,441.766,88.4,208.401,0.9713,-1,-1,-1
522,-1,90.2058,514.547,106.454,244.36,0.962045,-1,-1,-1
522,-1,1850.93,382.868,68.07,287.064,0.9592,-1,-1,-1
522,-1,41.0621,558.171,73.3339,201.355,0.957494,-1,-1,-1
522,-1,1297.93,443.902,63.04,228.482,0.924475,-1,-1,-1
522,-1,1428.69,433.287,47.77,231.192,0.871754,-1,-1,-1
523,-1,724.765,302.6,173.48,577.465,0.998018,-1,-1,-1
523,-1,1332.37,451.889,82.69,183.853,0.984872,-1,-1,-1
523,-1,1606.8,402.521,113.38,275.376,0.9803,-1,-1,-1
523,-1,1836.21,358.256,82.79,340.065,0.966009,-1,-1,-1
523,-1,40.9939,546.375,73.8661,215.883,0.944572,-1,-1,-1
523,-1,90.503,508.683,110.254,256.454,0.941274,-1,-1,-1
523,-1,1423.02,443.248,66.55,217.029,0.914902,-1,-1,-1
523,-1,1296.41,430.64,62.55,250.063,0.830056,-1,-1,-1
523,-1,1468.12,449.586,44.82,196.54,0.709159,-1,-1,-1
524,-1,730.498,310.597,171.544,539.76,0.99707,-1,-1,-1
524,-1,1613.35,392.235,106.91,258.852,0.986153,-1,-1,-1
524,-1,1446.44,470.669,57.71,166.222,0.984065,-1,-1,-1
524,-1,1330.27,458.085,85.05,180.767,0.983509,-1,-1,-1
524,-1,1833.99,353.658,85.01,367.482,0.972781,-1,-1,-1
524,-1,91.5829,529.191,105.597,226.247,0.907533,-1,-1,-1
524,-1,41.1617,547.967,73.9563,216.975,0.893005,-1,-1,-1
524,-1,1295.83,431.946,67.34,259.374,0.64312,-1,-1,-1
525,-1,743.62,308.928,171.373,558.49,0.998086,-1,-1,-1
525,-1,1442.51,465.835,78.59,193.809,0.988531,-1,-1,-1
525,-1,1612.11,400.552,110.83,274.843,0.978565,-1,-1,-1
525,-1,1828.2,349.546,90.8,380.632,0.977014,-1,-1,-1
525,-1,1323.86,440.457,91.42,218.3,0.975017,-1,-1,-1
525,-1,94.6541,513.539,105.77,253.749,0.900956,-1,-1,-1
525,-1,30.6746,547.81,80.6414,224.583,0.885243,-1,-1,-1
525,-1,1294.71,425.685,62.34,236.371,0.739913,-1,-1,-1
================================================
FILE: data/ADL-Rundle-8/det.txt
================================================
1,-1,472.128,437.845,78.717,161.327,0.988879,-1,-1,-1
1,-1,1469.45,415.254,91.93,187.818,0.987547,-1,-1,-1
1,-1,1352.14,379.56,84.06,240.883,0.978651,-1,-1,-1
1,-1,671.685,407.662,86.525,193.594,0.960371,-1,-1,-1
1,-1,569.204,423.098,56.378,176.874,0.818693,-1,-1,-1
2,-1,463.468,431.511,62.509,178.632,0.988998,-1,-1,-1
2,-1,1462.43,426.77,75.39,166.641,0.982835,-1,-1,-1
2,-1,1355.61,389.058,74.3,240.562,0.981709,-1,-1,-1
2,-1,671.551,396.262,82.011,201.757,0.925326,-1,-1,-1
2,-1,553.54,418.04,69.589,174.429,0.849221,-1,-1,-1
3,-1,1459.18,422.829,80,178.418,0.986497,-1,-1,-1
3,-1,1359.98,386.531,92.38,241.656,0.984107,-1,-1,-1
3,-1,462.424,429.143,65.684,166.393,0.97999,-1,-1,-1
3,-1,681.339,430.755,84.979,182.296,0.964632,-1,-1,-1
3,-1,551.656,417.27,70.401,182.235,0.906963,-1,-1,-1
3,-1,636.665,416.82,57.553,162.845,0.81887,-1,-1,-1
4,-1,1451.28,419.776,77.25,187.499,0.993104,-1,-1,-1
4,-1,1344.99,382.783,73.32,243.766,0.984313,-1,-1,-1
4,-1,438.315,441.197,89.125,169.533,0.978986,-1,-1,-1
4,-1,641.92,420.21,85.881,168.98,0.972014,-1,-1,-1
4,-1,548.047,426.987,62.361,157.436,0.914793,-1,-1,-1
4,-1,586.997,413.776,58.76,173.919,0.747456,-1,-1,-1
5,-1,434.321,437.259,66.032,178.289,0.991052,-1,-1,-1
5,-1,1435.96,427.728,65.51,176.015,0.984285,-1,-1,-1
5,-1,1342.14,386.437,87.08,252.94,0.973483,-1,-1,-1
5,-1,655.429,411.468,72.872,199.889,0.958229,-1,-1,-1
5,-1,535.777,424.281,69.198,161.968,0.887565,-1,-1,-1
6,-1,438.436,433.029,62.222,165.692,0.990412,-1,-1,-1
6,-1,1429.66,444.839,74.02,168.638,0.989155,-1,-1,-1
6,-1,1341.51,397.747,86.55,206.169,0.981154,-1,-1,-1
6,-1,640.008,413.91,82.473,188.219,0.960137,-1,-1,-1
6,-1,523.595,439.969,60.811,160.464,0.918173,-1,-1,-1
7,-1,440.682,441.305,62.188,160.455,0.988968,-1,-1,-1
7,-1,1412.13,437.731,94.54,167.797,0.985947,-1,-1,-1
7,-1,1346.7,411.756,81.19,221.832,0.955757,-1,-1,-1
8,-1,426.649,425.869,74.704,187.516,0.991669,-1,-1,-1
8,-1,1428.97,432.092,65.2,177.95,0.983639,-1,-1,-1
8,-1,1343.01,399.397,75.51,233.791,0.977392,-1,-1,-1
8,-1,647.799,423.9,67.623,203.452,0.968335,-1,-1,-1
8,-1,520.179,432.423,105.435,166.65,0.928465,-1,-1,-1
8,-1,618.326,426.668,45.034,177.039,0.630616,-1,-1,-1
9,-1,426.926,434.817,72.742,171.768,0.991833,-1,-1,-1
9,-1,1424.08,436.523,70.06,173.816,0.983071,-1,-1,-1
9,-1,1343.64,397.717,78.13,233.474,0.978044,-1,-1,-1
9,-1,649.81,420.679,63.885,200.854,0.956258,-1,-1,-1
9,-1,517.238,425.566,109.567,172.625,0.886824,-1,-1,-1
9,-1,614.776,422.255,46.048,175.156,0.593856,-1,-1,-1
10,-1,415.649,435.367,74.175,163.785,0.983184,-1,-1,-1
10,-1,1354.97,404.651,84.63,238.174,0.971314,-1,-1,-1
10,-1,641.209,430.509,72.316,177.301,0.967385,-1,-1,-1
10,-1,1404.7,421.482,89.41,187.032,0.966495,-1,-1,-1
10,-1,524.954,435.414,54.621,154.692,0.933332,-1,-1,-1
10,-1,553.786,428.737,68.128,170.548,0.891569,-1,-1,-1
10,-1,601.833,428.779,58.626,161.334,0.556517,-1,-1,-1
11,-1,625.571,424.172,81.805,183.479,0.980858,-1,-1,-1
11,-1,1396.01,420.142,90.46,211.603,0.960182,-1,-1,-1
11,-1,409.098,450.183,88.195,144.368,0.941451,-1,-1,-1
11,-1,538.048,444.263,54.036,150.707,0.927012,-1,-1,-1
12,-1,415.036,445.928,68.602,150.989,0.984091,-1,-1,-1
12,-1,626.981,427.074,73.693,185.122,0.969823,-1,-1,-1
12,-1,1380.87,424.927,81.39,223.016,0.963566,-1,-1,-1
12,-1,501.246,431.329,117.51,168.965,0.926951,-1,-1,-1
13,-1,616.029,412.904,82.639,183.669,0.987348,-1,-1,-1
13,-1,419.14,441.248,68.631,171.212,0.983122,-1,-1,-1
13,-1,1365.65,411.199,110.14,260.314,0.981313,-1,-1,-1
13,-1,562.321,422.58,63.243,163.495,0.890755,-1,-1,-1
13,-1,527.332,424.497,48.351,152.735,0.837607,-1,-1,-1
14,-1,621.419,419.761,74.566,199.326,0.981749,-1,-1,-1
14,-1,1362.23,411.662,102,249.415,0.981693,-1,-1,-1
14,-1,401.106,425.124,141.251,169.892,0.833669,-1,-1,-1
14,-1,503.702,417.816,119.011,184.866,0.613097,-1,-1,-1
15,-1,396.064,428.823,79.016,178.363,0.992171,-1,-1,-1
15,-1,1350.9,405.501,115.56,256.299,0.986789,-1,-1,-1
15,-1,614.378,418.761,78.473,211.173,0.980791,-1,-1,-1
15,-1,543.297,431.677,64.225,172.594,0.784673,-1,-1,-1
16,-1,1345.31,407.888,115.64,256.099,0.990266,-1,-1,-1
16,-1,394.163,462.716,55.877,141.877,0.969347,-1,-1,-1
16,-1,602.1,422.967,80.968,222.951,0.96743,-1,-1,-1
16,-1,398.372,428.173,141.099,185.868,0.870203,-1,-1,-1
17,-1,385.017,431.257,75.38,185.022,0.989997,-1,-1,-1
17,-1,593.736,426.806,86.669,193.617,0.988903,-1,-1,-1
17,-1,1366.17,386.125,117.9,293.194,0.981891,-1,-1,-1
17,-1,1123.01,434.106,58.76,87.118,0.752196,-1,-1,-1
17,-1,517.87,421.533,121.013,186.225,0.560988,-1,-1,-1
18,-1,576.681,422.969,83.537,187.282,0.984082,-1,-1,-1
18,-1,1368.76,390.914,98.83,283.796,0.974643,-1,-1,-1
18,-1,377.136,435.32,78.131,177.731,0.968198,-1,-1,-1
18,-1,1112.75,447.656,64.24,57.936,0.578421,-1,-1,-1
18,-1,473.991,422.417,148.079,177.833,0.576325,-1,-1,-1
19,-1,367.829,428.635,73.019,203.384,0.987632,-1,-1,-1
19,-1,1367.02,409.731,101.93,270.647,0.979792,-1,-1,-1
19,-1,577.952,418.282,89.047,206.616,0.979169,-1,-1,-1
20,-1,1336.07,383.337,115.6,289.877,0.982867,-1,-1,-1
20,-1,558.195,439.038,84.437,202.937,0.946724,-1,-1,-1
20,-1,351.309,424.936,87.208,191.78,0.938205,-1,-1,-1
20,-1,442.128,439.491,66.677,178.158,0.596028,-1,-1,-1
21,-1,543.15,440.683,93.54,202.865,0.991559,-1,-1,-1
21,-1,1355.6,407.838,99.85,261.99,0.983489,-1,-1,-1
21,-1,339.362,440.38,70.842,190.934,0.974059,-1,-1,-1
21,-1,512.164,450.092,68.161,172.512,0.820241,-1,-1,-1
21,-1,1089.37,427.787,65.98,97.72,0.797694,-1,-1,-1
21,-1,30.1908,587.922,90.3702,155.437,0.789614,-1,-1,-1
22,-1,1357.76,400.763,87,283.24,0.985956,-1,-1,-1
22,-1,336.69,454.575,74.68,181.084,0.983061,-1,-1,-1
22,-1,532.871,453.295,94.702,183.17,0.982865,-1,-1,-1
22,-1,36.2815,597.095,87.5935,127.229,0.866301,-1,-1,-1
22,-1,488.181,439.809,75.268,186.475,0.672159,-1,-1,-1
22,-1,172.379,379.428,74.377,257.838,0.62042,-1,-1,-1
23,-1,529.597,433.973,97.904,205.584,0.993544,-1,-1,-1
23,-1,1337.85,403.213,90.58,267.058,0.989445,-1,-1,-1
23,-1,325.974,444.366,82.286,177.805,0.946889,-1,-1,-1
23,-1,1088.01,425.697,65.01,89.305,0.888373,-1,-1,-1
23,-1,8.51566,588.448,86.0244,189.156,0.672036,-1,-1,-1
24,-1,510.643,439.95,86.166,200.051,0.990073,-1,-1,-1
24,-1,1321.36,420.098,90.24,259.664,0.98889,-1,-1,-1
24,-1,305.422,453.677,72.126,172.537,0.975673,-1,-1,-1
24,-1,4.41679,617.797,79.9565,138.991,0.957625,-1,-1,-1
24,-1,1087.99,435.594,57.5,114.566,0.746773,-1,-1,-1
25,-1,272.976,458.066,73.476,177.206,0.988906,-1,-1,-1
25,-1,1314.43,417.815,86.79,267.177,0.988545,-1,-1,-1
25,-1,484.78,435.207,88.1,229.671,0.981119,-1,-1,-1
25,-1,449.988,464.785,76.4,179.535,0.558357,-1,-1,-1
26,-1,1310.27,417.869,90.18,283.202,0.980921,-1,-1,-1
26,-1,441.561,424.242,130.911,226.736,0.977601,-1,-1,-1
26,-1,260.6,445.349,63.163,180.852,0.937607,-1,-1,-1
27,-1,423.414,430.592,112.651,233.276,0.982416,-1,-1,-1
27,-1,225.594,451.084,67.318,179.099,0.954675,-1,-1,-1
27,-1,1299.42,416.963,78.49,264.353,0.929458,-1,-1,-1
28,-1,417.605,439.277,92.575,225.753,0.993059,-1,-1,-1
28,-1,208.25,445.212,84.883,219.797,0.986161,-1,-1,-1
28,-1,1217.77,450.121,82.76,182.491,0.962068,-1,-1,-1
28,-1,994.651,440.878,49.249,95.322,0.941847,-1,-1,-1
28,-1,1289.44,417.002,74.12,284.865,0.919388,-1,-1,-1
28,-1,314.897,456.765,65.41,165.919,0.89106,-1,-1,-1
29,-1,410.397,433.164,70.169,229.787,0.995134,-1,-1,-1
29,-1,193.041,446.038,73.675,204.39,0.991722,-1,-1,-1
29,-1,1211.44,440.239,63.9,195.037,0.963433,-1,-1,-1
29,-1,1281.14,411.192,80.22,292.769,0.957843,-1,-1,-1
29,-1,979.445,437.861,57.155,104.897,0.95194,-1,-1,-1
29,-1,293.032,447.965,68.012,201.249,0.923605,-1,-1,-1
29,-1,340.829,429.757,70.442,187.941,0.595,-1,-1,-1
30,-1,1262.05,409.945,84.88,329.936,0.97791,-1,-1,-1
30,-1,180.17,430.795,82.996,215.412,0.976209,-1,-1,-1
30,-1,1186.95,446.458,73.19,197.528,0.974761,-1,-1,-1
30,-1,351.276,416.964,115.642,237.378,0.888863,-1,-1,-1
30,-1,951.62,440.128,64.74,113.609,0.87287,-1,-1,-1
30,-1,1865.4,429.81,49.77,199.204,0.813725,-1,-1,-1
31,-1,148.159,435.374,110.513,221.652,0.991162,-1,-1,-1
31,-1,1254.98,423.684,77.54,301.919,0.991063,-1,-1,-1
31,-1,1172.65,463.479,62.99,177.591,0.982444,-1,-1,-1
31,-1,339.026,439.162,97.554,234.691,0.965705,-1,-1,-1
31,-1,1839.62,408.835,76.59,243.331,0.937187,-1,-1,-1
31,-1,957.52,452.413,63.65,92.432,0.86745,-1,-1,-1
31,-1,263.246,455.054,62.944,168.219,0.746884,-1,-1,-1
31,-1,202.797,470.759,47.551,140.087,0.635497,-1,-1,-1
32,-1,154.379,461.561,66.939,185.947,0.989811,-1,-1,-1
32,-1,1159.88,445.496,68.09,192.583,0.989745,-1,-1,-1
32,-1,1245.48,423.477,87.5,305.235,0.987305,-1,-1,-1
32,-1,236.81,464.302,63.193,182.644,0.961306,-1,-1,-1
32,-1,325.283,414.974,120.267,260.814,0.9581,-1,-1,-1
32,-1,1833.18,397.135,84.18,238.973,0.930481,-1,-1,-1
32,-1,937.46,451.522,73.3,108.848,0.888865,-1,-1,-1
33,-1,126.843,444.599,72.937,206.146,0.993309,-1,-1,-1
33,-1,1241.36,416.825,77.32,298.882,0.988296,-1,-1,-1
33,-1,1146.25,458.203,86.85,179.365,0.987241,-1,-1,-1
33,-1,1827.61,386.479,91.39,257.649,0.984983,-1,-1,-1
33,-1,302.856,424.546,98.822,270.202,0.891565,-1,-1,-1
33,-1,929.053,451.359,59.222,95.243,0.881017,-1,-1,-1
33,-1,217.328,459.256,51.91,185.271,0.63925,-1,-1,-1
33,-1,247.782,457.184,58.204,164.988,0.560028,-1,-1,-1
34,-1,132.365,467.142,66.564,182.068,0.99131,-1,-1,-1
34,-1,1130.68,471.302,87.64,174.31,0.983577,-1,-1,-1
34,-1,1227.87,418.733,100.38,306.035,0.982531,-1,-1,-1
34,-1,1810.3,375.69,90.52,282.476,0.969038,-1,-1,-1
34,-1,267.852,416.557,135.03,283.383,0.802321,-1,-1,-1
34,-1,915.521,440.401,68.738,95.312,0.66932,-1,-1,-1
35,-1,99.4594,461.582,73.7516,187.847,0.994138,-1,-1,-1
35,-1,1217.36,417.899,98.5,300.939,0.991505,-1,-1,-1
35,-1,262.927,453.832,122.89,246.587,0.990784,-1,-1,-1
35,-1,1124.13,466.039,76.88,169.463,0.989091,-1,-1,-1
35,-1,1780.95,377.995,114.74,263.494,0.983199,-1,-1,-1
35,-1,184.136,460.406,52.667,197.358,0.955029,-1,-1,-1
35,-1,929.15,437.158,63.614,101.567,0.91678,-1,-1,-1
35,-1,900.572,453.435,60.412,98.711,0.701309,-1,-1,-1
35,-1,340.354,476.078,63.603,167.097,0.582611,-1,-1,-1
36,-1,93.8553,475.808,67.9507,159.947,0.992978,-1,-1,-1
36,-1,1118.37,458.992,77.55,175.188,0.992968,-1,-1,-1
36,-1,1231.7,423.407,95.45,313.229,0.985117,-1,-1,-1
36,-1,1772.53,384.797,123.82,300.791,0.98429,-1,-1,-1
36,-1,277.422,447.79,104.648,167.448,0.935257,-1,-1,-1
36,-1,175.12,458.565,55.959,183.659,0.912524,-1,-1,-1
36,-1,927.003,435.355,63.559,111.792,0.903678,-1,-1,-1
36,-1,886.14,458.933,64.89,105.046,0.830115,-1,-1,-1
37,-1,74.7318,450.005,87.2532,209.178,0.989586,-1,-1,-1
37,-1,1781.39,398.447,102.23,246.51,0.98874,-1,-1,-1
37,-1,1215.3,424.314,101.64,300.552,0.986223,-1,-1,-1
37,-1,1122.19,477.918,63.68,152.096,0.979889,-1,-1,-1
37,-1,903.066,446.546,61.229,106.713,0.825448,-1,-1,-1
37,-1,236.954,452.018,108.009,251.178,0.694866,-1,-1,-1
38,-1,1239.73,413.279,84.33,316.993,0.991845,-1,-1,-1
38,-1,1103.71,477.459,79.73,164.604,0.990541,-1,-1,-1
38,-1,67.1428,455.423,86.2982,219.959,0.987991,-1,-1,-1
38,-1,1764.67,390.895,123.35,271.751,0.987444,-1,-1,-1
38,-1,238.336,448.916,126.406,253.601,0.961971,-1,-1,-1
38,-1,886.541,439.696,64.605,115.026,0.928426,-1,-1,-1
39,-1,1231.66,415.68,100.54,317.772,0.991869,-1,-1,-1
39,-1,67.8187,466.5,70.4563,182.14,0.991683,-1,-1,-1
39,-1,1092.62,461.708,89.46,176.207,0.990205,-1,-1,-1
39,-1,232.374,444.951,116.582,242.695,0.981422,-1,-1,-1
39,-1,1770.04,383.551,129.28,283.372,0.972424,-1,-1,-1
39,-1,902.219,422.031,61.028,111.363,0.949147,-1,-1,-1
39,-1,171.753,477.137,53.634,170.631,0.523227,-1,-1,-1
40,-1,1226.02,407.982,104.14,318.544,0.996119,-1,-1,-1
40,-1,45.2203,455.301,88.6967,212.692,0.990987,-1,-1,-1
40,-1,1766.69,372.928,125.34,275.331,0.990694,-1,-1,-1
40,-1,1079.82,446.783,81.52,179.566,0.986393,-1,-1,-1
40,-1,185.087,447.81,148.095,228.819,0.966528,-1,-1,-1
40,-1,886.958,445.06,67.849,71.261,0.9192,-1,-1,-1
41,-1,1222.92,405.192,97.15,333.061,0.993119,-1,-1,-1
41,-1,24.2748,454.854,90.1332,212.076,0.990852,-1,-1,-1
41,-1,1073.83,450.793,80.93,181.013,0.990063,-1,-1,-1
41,-1,194.937,437.139,113.569,262.072,0.986477,-1,-1,-1
41,-1,1766.67,387.56,117.46,243.141,0.974241,-1,-1,-1
41,-1,890.989,443.656,56.5,99.146,0.945488,-1,-1,-1
41,-1,138.622,449.714,58.617,204.524,0.8833,-1,-1,-1
41,-1,275.251,452.65,60.881,169.6,0.879131,-1,-1,-1
42,-1,1218.95,397.954,107.66,352.85,0.992567,-1,-1,-1
42,-1,1069.73,437.79,77.72,191.917,0.989568,-1,-1,-1
42,-1,26.0035,445.102,85.1325,229.673,0.984302,-1,-1,-1
42,-1,196.926,446.182,112.414,247.365,0.980025,-1,-1,-1
42,-1,1790.73,375.483,108.64,246.379,0.974765,-1,-1,-1
42,-1,269.158,448.674,73.17,197.86,0.954196,-1,-1,-1
42,-1,127.155,448.702,67.689,217.319,0.950801,-1,-1,-1
42,-1,883.712,439.055,64.545,85.383,0.943937,-1,-1,-1
43,-1,1216.43,398.354,113.3,329.26,0.995274,-1,-1,-1
43,-1,1065.87,426.479,90.44,196.802,0.991569,-1,-1,-1
43,-1,16.7119,446.988,85.2711,227.457,0.989118,-1,-1,-1
43,-1,172.716,441.005,107.615,264.859,0.986651,-1,-1,-1
43,-1,877.02,445.002,65.309,87.367,0.939582,-1,-1,-1
43,-1,282.867,447.347,58.781,158.128,0.938947,-1,-1,-1
43,-1,1778.89,374.676,103.91,263.477,0.934089,-1,-1,-1
43,-1,240.278,454.505,73.392,202.839,0.890456,-1,-1,-1
43,-1,116.333,427.554,68.393,237.259,0.762698,-1,-1,-1
44,-1,1211.54,401.104,124.64,333.28,0.995539,-1,-1,-1
44,-1,1767.62,361.327,119.97,273.397,0.990234,-1,-1,-1
44,-1,13.8593,435.452,89.9447,235.009,0.987584,-1,-1,-1
44,-1,165.862,441.684,110.832,259.52,0.986835,-1,-1,-1
44,-1,1057.98,428.758,74.13,171.752,0.982745,-1,-1,-1
44,-1,245.426,442.61,70.334,202.068,0.962033,-1,-1,-1
44,-1,863.507,446.868,48.56,80.689,0.900439,-1,-1,-1
44,-1,90.0087,435.03,68.5383,228.09,0.550917,-1,-1,-1
45,-1,1220.48,410.212,123.13,323.027,0.994071,-1,-1,-1
45,-1,8.02877,444.737,65.7731,222.703,0.989214,-1,-1,-1
45,-1,1756.35,343.311,127.41,290.33,0.986942,-1,-1,-1
45,-1,157.75,438.561,136.698,217.763,0.98431,-1,-1,-1
45,-1,1058.39,435.432,73.15,161.44,0.982677,-1,-1,-1
45,-1,238.991,456.729,60.693,142.151,0.945822,-1,-1,-1
45,-1,858.079,434.053,51.843,98.352,0.940824,-1,-1,-1
46,-1,1225.63,393.864,119.64,345.041,0.994292,-1,-1,-1
46,-1,117.614,438.313,127.713,299.135,0.993148,-1,-1,-1
46,-1,1041.22,436.425,72.82,167.062,0.985241,-1,-1,-1
46,-1,1.15978,443.657,76.2894,251.284,0.984642,-1,-1,-1
46,-1,226.697,455.092,73.471,187.361,0.9641,-1,-1,-1
46,-1,1754.63,343.006,131.5,296.9,0.960724,-1,-1,-1
46,-1,863.326,429.669,50.059,104.884,0.934259,-1,-1,-1
47,-1,1221.06,401.84,117.66,366.944,0.996603,-1,-1,-1
47,-1,126.663,446.396,116.071,276.957,0.988422,-1,-1,-1
47,-1,1041.24,433.129,82.93,173.355,0.98816,-1,-1,-1
47,-1,232.745,445.077,78.691,200.423,0.986051,-1,-1,-1
47,-1,0,445.613,67.1506,223.094,0.98363,-1,-1,-1
47,-1,1756.67,315.954,135.24,332.754,0.983063,-1,-1,-1
47,-1,857.825,432.232,46.277,94.466,0.935594,-1,-1,-1
48,-1,1217.22,396.762,138.49,377.026,0.993677,-1,-1,-1
48,-1,1029.58,433.32,74.97,176.268,0.990365,-1,-1,-1
48,-1,1752.38,323.297,135.95,335.776,0.98752,-1,-1,-1
48,-1,118.145,433.483,110.457,293.012,0.986353,-1,-1,-1
48,-1,221.19,422.133,80.538,236.347,0.98036,-1,-1,-1
48,-1,0,452.868,68.3731,215.758,0.966115,-1,-1,-1
48,-1,847.255,432.747,60.901,114.995,0.618872,-1,-1,-1
49,-1,1226.56,391.617,118.08,370.511,0.995638,-1,-1,-1
49,-1,94.1206,461.026,130.392,294.173,0.990887,-1,-1,-1
49,-1,1762.11,320.836,127.66,344.037,0.9881,-1,-1,-1
49,-1,211.214,443.514,68.896,202.671,0.987406,-1,-1,-1
49,-1,1021.75,441.818,82.22,163.303,0.986132,-1,-1,-1
49,-1,863.008,437.078,58.268,91.972,0.829789,-1,-1,-1
50,-1,1219.86,399.118,146.75,361.284,0.997018,-1,-1,-1
50,-1,50.4509,426.921,167.599,316.508,0.994615,-1,-1,-1
50,-1,1764.04,327.992,119.16,328.176,0.989455,-1,-1,-1
50,-1,203.39,447.39,73.933,196.338,0.989372,-1,-1,-1
50,-1,1025.84,443.413,72.75,172.485,0.979669,-1,-1,-1
50,-1,828.425,457.471,75.939,66.226,0.805713,-1,-1,-1
51,-1,41.0639,445.372,141.27,287.237,0.996492,-1,-1,-1
51,-1,1226.43,373.088,134.66,413.139,0.989357,-1,-1,-1
51,-1,196.11,439.979,70.423,203.728,0.980834,-1,-1,-1
51,-1,1014.33,462.61,76.82,168.39,0.979605,-1,-1,-1
51,-1,1755.35,324.786,114.9,329.591,0.977566,-1,-1,-1
51,-1,825.554,447.55,76.475,69.445,0.857131,-1,-1,-1
52,-1,1230.14,404.294,129.39,352.142,0.99645,-1,-1,-1
52,-1,28.0625,450.99,135.94,314.317,0.992886,-1,-1,-1
52,-1,1024.67,453.412,67.63,164.396,0.981362,-1,-1,-1
52,-1,184.941,422.957,78.767,211.602,0.980718,-1,-1,-1
52,-1,1760.65,316.657,126.41,354.066,0.977638,-1,-1,-1
53,-1,1234.49,390.977,121.2,364.614,0.996779,-1,-1,-1
53,-1,18.9763,444.416,149.461,321.672,0.992604,-1,-1,-1
53,-1,1005.84,422.85,75.6,187.703,0.992595,-1,-1,-1
53,-1,1756.38,342.804,129.45,305.572,0.986417,-1,-1,-1
53,-1,165.421,427.676,92.984,205.207,0.978729,-1,-1,-1
53,-1,832.045,452.466,62.442,72.853,0.907355,-1,-1,-1
53,-1,807.197,445.55,42.895,80.895,0.577964,-1,-1,-1
54,-1,1235.47,402.9,120.14,350.27,0.996365,-1,-1,-1
54,-1,990.912,441.342,73.188,160.69,0.992265,-1,-1,-1
54,-1,169.558,445.27,66.298,170.937,0.990859,-1,-1,-1
54,-1,29.1591,447.913,130.48,272.791,0.989237,-1,-1,-1
54,-1,1761.93,354.826,116.11,230.447,0.950633,-1,-1,-1
54,-1,817.003,452.222,70.808,77.758,0.925382,-1,-1,-1
55,-1,1233.84,411.005,131.06,348.873,0.996125,-1,-1,-1
55,-1,0.116066,398.682,105.894,397.653,0.991009,-1,-1,-1
55,-1,969.324,431.027,94.266,177.553,0.985543,-1,-1,-1
55,-1,1771.55,317.824,111.05,298.101,0.981743,-1,-1,-1
55,-1,134.643,428.487,96.244,201.593,0.976828,-1,-1,-1
55,-1,829.925,425.241,59.652,85.583,0.88404,-1,-1,-1
55,-1,53.0382,435.697,74.0658,230.391,0.62051,-1,-1,-1
55,-1,186.151,445.293,60.025,141.092,0.545075,-1,-1,-1
56,-1,1234.77,398.624,121.24,366.871,0.996078,-1,-1,-1
56,-1,1769.37,340.165,108.29,259.7,0.989594,-1,-1,-1
56,-1,131.376,425.295,83.459,194.727,0.988318,-1,-1,-1
56,-1,973.84,426.301,76.58,184.067,0.984244,-1,-1,-1
56,-1,0,411.75,82.2371,381.627,0.977187,-1,-1,-1
56,-1,815.228,419.672,61.899,104.676,0.866255,-1,-1,-1
56,-1,72.3268,436.921,62.1312,203.751,0.661591,-1,-1,-1
57,-1,1245.78,397.103,109.18,392.499,0.997202,-1,-1,-1
57,-1,1756.51,315.336,120.99,318.691,0.988894,-1,-1,-1
57,-1,967.357,426.087,77.873,187.641,0.988804,-1,-1,-1
57,-1,124.028,419.568,90.178,219.054,0.985824,-1,-1,-1
57,-1,826.925,447.258,53.932,73.107,0.925322,-1,-1,-1
57,-1,4.32929,440.738,91.5904,280.825,0.907891,-1,-1,-1
57,-1,793.524,433.163,60.496,88.068,0.808172,-1,-1,-1
58,-1,1246.29,390.31,106.14,385.815,0.996898,-1,-1,-1
58,-1,1743.77,303.35,134.41,331.417,0.989864,-1,-1,-1
58,-1,961.659,437.379,76.691,166.52,0.989496,-1,-1,-1
58,-1,129.086,436.718,67.162,181.446,0.98218,-1,-1,-1
58,-1,809.911,424.137,56.279,82.017,0.733581,-1,-1,-1
58,-1,786.018,450.364,54.416,70.971,0.594808,-1,-1,-1
59,-1,1233.83,383.46,146.51,412.643,0.994484,-1,-1,-1
59,-1,1752.83,315.95,121.69,293.693,0.988669,-1,-1,-1
59,-1,945.336,430.868,97.264,180.974,0.986393,-1,-1,-1
59,-1,97.8631,418.543,126.278,216.416,0.977236,-1,-1,-1
59,-1,810.652,425.025,52.988,84.372,0.894317,-1,-1,-1
59,-1,22.0473,464.41,86.2657,172.494,0.734072,-1,-1,-1
60,-1,1256.69,385.31,113.44,431.594,0.992248,-1,-1,-1
60,-1,99.8693,427.101,84.1727,202.497,0.989815,-1,-1,-1
60,-1,1738.87,300.859,146.65,326.4,0.987855,-1,-1,-1
60,-1,953.634,439.133,67.766,163.449,0.987078,-1,-1,-1
60,-1,812.526,446.148,53.577,81.957,0.923839,-1,-1,-1
60,-1,36.0365,436.093,78.2475,195.522,0.82226,-1,-1,-1
61,-1,100.465,448.371,70.195,201.244,0.988994,-1,-1,-1
61,-1,942.842,435.14,74.948,167.053,0.98644,-1,-1,-1
61,-1,1733.82,284.397,144.98,331.762,0.957013,-1,-1,-1
61,-1,1232.84,381.054,157.51,447.283,0.902396,-1,-1,-1
61,-1,45.1722,452.378,80.7928,171.942,0.65428,-1,-1,-1
62,-1,943.827,452.386,63.663,165.135,0.987859,-1,-1,-1
62,-1,1257.42,388.761,137.98,432.096,0.987152,-1,-1,-1
62,-1,73.5247,457.009,89.5463,175.776,0.979441,-1,-1,-1
62,-1,1746.56,280.693,126.96,349.684,0.927735,-1,-1,-1
62,-1,805.538,446.453,68.672,75.328,0.860368,-1,-1,-1
63,-1,1262.98,375.334,151.78,433.487,0.990922,-1,-1,-1
63,-1,923.37,425.643,102.4,176.914,0.986634,-1,-1,-1
63,-1,1751.09,290.77,130.69,352.457,0.983368,-1,-1,-1
63,-1,73.8976,423.055,101.502,219.102,0.98212,-1,-1,-1
63,-1,13.5587,436.654,77.6789,223.113,0.921579,-1,-1,-1
63,-1,815.38,442.447,59.38,82.579,0.918115,-1,-1,-1
64,-1,1265.27,398.587,152.61,440.94,0.992,-1,-1,-1
64,-1,919.74,428.273,106.7,172.897,0.986555,-1,-1,-1
64,-1,61.6495,436.518,111.247,217.217,0.970072,-1,-1,-1
64,-1,0.954491,463.67,71.549,196.398,0.967996,-1,-1,-1
64,-1,1769.89,308.263,128.17,296.785,0.950338,-1,-1,-1
64,-1,802.936,451.381,67.96,71.421,0.760405,-1,-1,-1
65,-1,1289.27,388.295,141.93,432.25,0.998314,-1,-1,-1
65,-1,930.924,444.687,80.436,176.245,0.992465,-1,-1,-1
65,-1,69.3315,438.552,97.2375,170.349,0.968942,-1,-1,-1
65,-1,1760.6,295.415,144.52,307.911,0.952133,-1,-1,-1
66,-1,1300.01,352.589,147.37,477.414,0.998773,-1,-1,-1
66,-1,930.696,433.324,75.234,157.423,0.98805,-1,-1,-1
66,-1,63.079,419.074,106.133,238.834,0.981564,-1,-1,-1
66,-1,1769.92,289.46,120.28,327.327,0.975921,-1,-1,-1
66,-1,14.0226,456.612,75.8477,194.067,0.941174,-1,-1,-1
66,-1,134.972,432.663,59.325,193.254,0.598869,-1,-1,-1
67,-1,1301.03,362.075,140.18,475.145,0.99717,-1,-1,-1
67,-1,913.628,431.888,99.912,176.116,0.986563,-1,-1,-1
67,-1,1759.9,277.363,133.31,374.179,0.986554,-1,-1,-1
67,-1,64.8518,419.434,96.6092,225.145,0.981233,-1,-1,-1
67,-1,1.67245,457.611,72.474,195.619,0.929956,-1,-1,-1
67,-1,138.582,431.985,59.136,183.228,0.679409,-1,-1,-1
68,-1,1302.29,370.383,154.19,484.081,0.998467,-1,-1,-1
68,-1,61.9548,417.443,82.7862,235.754,0.986465,-1,-1,-1
68,-1,1766.22,318.186,127.68,291.608,0.981578,-1,-1,-1
68,-1,936.45,421.114,77.92,160.481,0.979704,-1,-1,-1
68,-1,102.084,421.214,85.542,170.673,0.537797,-1,-1,-1
69,-1,1308.72,363.453,169.49,496.321,0.996998,-1,-1,-1
69,-1,1763.37,288.058,138.03,372.753,0.990977,-1,-1,-1
69,-1,932.165,439.539,64.941,148.366,0.981682,-1,-1,-1
69,-1,40.1236,423.243,129.022,231.602,0.980274,-1,-1,-1
69,-1,4.71504,423.005,63.5269,233.254,0.835668,-1,-1,-1
69,-1,821.459,417.433,51.947,88.348,0.514577,-1,-1,-1
70,-1,1312.97,374.862,187.31,447.943,0.996905,-1,-1,-1
70,-1,923.276,438.579,62.52,156.596,0.986526,-1,-1,-1
70,-1,31.4264,415.638,127.537,218.793,0.976669,-1,-1,-1
70,-1,1755,288.259,124.84,331.011,0.899909,-1,-1,-1
71,-1,1335.88,368.241,157.82,494.775,0.995376,-1,-1,-1
71,-1,911.63,428.558,64.357,155.723,0.986413,-1,-1,-1
71,-1,80.6097,423.139,72.9163,177.243,0.972862,-1,-1,-1
71,-1,12.8592,404.366,102.749,232.693,0.965726,-1,-1,-1
71,-1,1762.97,264.358,129.17,375.08,0.937678,-1,-1,-1
71,-1,815.403,425.07,50.6,78.681,0.599291,-1,-1,-1
72,-1,1349.38,375.868,154.65,488.577,0.997688,-1,-1,-1
72,-1,915.405,422.912,78.587,172.567,0.990269,-1,-1,-1
72,-1,29.4631,414.411,101.449,219.881,0.985981,-1,-1,-1
72,-1,1771.83,305.51,127.26,276.245,0.981095,-1,-1,-1
72,-1,100.301,428.673,66.342,186.273,0.833346,-1,-1,-1
72,-1,803.977,433.009,66.804,74.306,0.698004,-1,-1,-1
73,-1,1356.04,345.72,187.5,539.414,0.997691,-1,-1,-1
73,-1,902.239,429.302,84.008,169.91,0.987188,-1,-1,-1
73,-1,30.1296,416.253,98.7424,216.139,0.987046,-1,-1,-1
73,-1,1777.09,293.56,125.39,316.646,0.978969,-1,-1,-1
73,-1,806.478,440.669,64.282,66.158,0.545352,-1,-1,-1
74,-1,906.061,426.65,67.43,147.088,0.994909,-1,-1,-1
74,-1,1368.53,351.718,157.65,492.599,0.992961,-1,-1,-1
74,-1,14.2685,408.191,132.442,241.87,0.98288,-1,-1,-1
74,-1,1777.34,303.062,134.62,325.715,0.956956,-1,-1,-1
74,-1,94.3109,434.833,61.1781,161.445,0.920052,-1,-1,-1
74,-1,796.053,421.327,62.118,97.866,0.602005,-1,-1,-1
75,-1,1385.89,359.087,200.74,523.511,0.998517,-1,-1,-1
75,-1,894.18,438.86,98.262,169.004,0.988992,-1,-1,-1
75,-1,13.3717,426.874,122.465,220.07,0.981752,-1,-1,-1
75,-1,1769.12,268.909,149.88,397.811,0.951941,-1,-1,-1
76,-1,1397.78,352.182,190.68,532.829,0.993628,-1,-1,-1
76,-1,899.358,430.792,75.797,158.426,0.983625,-1,-1,-1
76,-1,7.62227,415.433,94.4317,239.859,0.974306,-1,-1,-1
76,-1,72.4594,422.872,71.6966,195.077,0.874255,-1,-1,-1
76,-1,1778.54,302.934,135.43,328.008,0.848378,-1,-1,-1
76,-1,812.324,432.118,41.79,92.797,0.809829,-1,-1,-1
76,-1,490.813,407.321,65.64,141.479,0.679165,-1,-1,-1
77,-1,893.122,425.259,79.286,165.406,0.987753,-1,-1,-1
77,-1,1405.9,350.588,225.19,581.865,0.987677,-1,-1,-1
77,-1,1779.09,301.181,130.75,362.255,0.983575,-1,-1,-1
77,-1,14.3181,441.336,82.1073,187.864,0.972847,-1,-1,-1
77,-1,66.3508,419.906,70.9022,200.939,0.935583,-1,-1,-1
77,-1,816.481,427.341,36.321,93.272,0.797867,-1,-1,-1
77,-1,468.812,400.219,75.885,177.26,0.75558,-1,-1,-1
78,-1,894.219,422.022,75.582,166.293,0.983044,-1,-1,-1
78,-1,1772,295.512,143.68,364.648,0.981351,-1,-1,-1
78,-1,1419.12,328.465,226.09,608.839,0.978944,-1,-1,-1
78,-1,0,414.044,87.8539,245.654,0.976689,-1,-1,-1
78,-1,67.7897,428.797,62.3893,189.016,0.94909,-1,-1,-1
78,-1,818.653,427.435,37.864,103.083,0.873473,-1,-1,-1
78,-1,476.063,425.47,64.009,139.789,0.646939,-1,-1,-1
79,-1,881.493,433.978,68.051,158.861,0.987765,-1,-1,-1
79,-1,1769.15,336.083,126.62,328.025,0.981191,-1,-1,-1
79,-1,67.7635,429.341,56.2755,173.453,0.96349,-1,-1,-1
79,-1,5.08076,420.793,74.516,214.18,0.955581,-1,-1,-1
79,-1,1429.68,364.546,227.31,540.241,0.944836,-1,-1,-1
79,-1,456.78,395.806,65.007,173.991,0.552434,-1,-1,-1
80,-1,1466.72,347.384,169.9,543.509,0.987473,-1,-1,-1
80,-1,876.442,425.529,70.748,164.256,0.984921,-1,-1,-1
80,-1,1796.24,324.45,119.86,361.946,0.976602,-1,-1,-1
80,-1,0,419.452,87.2536,222.571,0.965518,-1,-1,-1
80,-1,69.2542,439.344,58.5718,155.594,0.947349,-1,-1,-1
80,-1,807.397,437.244,51.024,93.542,0.876922,-1,-1,-1
80,-1,467.752,404.79,67.829,148.048,0.750705,-1,-1,-1
81,-1,1451.19,325.815,227.21,620.152,0.992522,-1,-1,-1
81,-1,870.794,425.646,85.051,149.467,0.985905,-1,-1,-1
81,-1,1.21954,412.39,85.8359,217.946,0.976683,-1,-1,-1
81,-1,1790.05,313.234,124.7,400.211,0.956722,-1,-1,-1
81,-1,63.8663,439.607,53.1197,159.221,0.955789,-1,-1,-1
81,-1,801.983,422.564,45.394,99.588,0.91959,-1,-1,-1
81,-1,484.938,406.795,58.35,125.158,0.74019,-1,-1,-1
82,-1,1473.47,342.835,175.94,604.827,0.998046,-1,-1,-1
82,-1,870.181,428.401,80.396,146.453,0.985279,-1,-1,-1
82,-1,1794.82,312.339,120.17,371.467,0.979013,-1,-1,-1
82,-1,13.0258,422.765,82.7069,190.481,0.97559,-1,-1,-1
82,-1,64.0455,414.669,56.1635,180.872,0.924957,-1,-1,-1
82,-1,807.352,420.861,54.237,100.449,0.91771,-1,-1,-1
82,-1,491.474,417.314,67.263,128.24,0.847216,-1,-1,-1
83,-1,879.046,437.247,59.508,149.812,0.980544,-1,-1,-1
83,-1,13.1783,426.663,73.4649,183.149,0.973196,-1,-1,-1
83,-1,69.1998,418.776,65.9332,168.702,0.972864,-1,-1,-1
83,-1,1470.39,357.288,194.02,590.436,0.952015,-1,-1,-1
83,-1,1189.87,414.231,60.57,161.153,0.929314,-1,-1,-1
83,-1,1796.88,320.736,117.53,390.375,0.927691,-1,-1,-1
83,-1,813.588,420.915,43.866,96.81,0.834234,-1,-1,-1
83,-1,494.388,413.067,60.163,126.598,0.740683,-1,-1,-1
84,-1,860.425,420.54,84.79,166.641,0.983667,-1,-1,-1
84,-1,14.5754,408.084,63.7719,213.334,0.977258,-1,-1,-1
84,-1,1798.71,311.473,115.76,392.736,0.964607,-1,-1,-1
84,-1,46.222,394.687,77.468,198.029,0.954498,-1,-1,-1
84,-1,1524.91,355.489,145.01,540.64,0.879159,-1,-1,-1
84,-1,1204.55,409.494,67,149.279,0.776856,-1,-1,-1
84,-1,804.627,434.004,51.97,100.126,0.756755,-1,-1,-1
85,-1,858.669,414.495,81.328,167.945,0.982378,-1,-1,-1
85,-1,1802.86,308.742,112.99,439.184,0.98007,-1,-1,-1
85,-1,1512.27,355.488,222.99,643.359,0.977125,-1,-1,-1
85,-1,3.70701,419.458,67.4389,172.214,0.964897,-1,-1,-1
85,-1,57.1418,388.065,74.1902,180.972,0.929406,-1,-1,-1
85,-1,806.447,430.834,51.578,106.467,0.699084,-1,-1,-1
85,-1,1202.22,408.905,66.06,167.984,0.697768,-1,-1,-1
85,-1,496.834,410.222,58.748,125.448,0.546515,-1,-1,-1
86,-1,1519.26,329.447,212.63,674.973,0.989096,-1,-1,-1
86,-1,1798.85,303.642,115.59,439.567,0.986134,-1,-1,-1
86,-1,861.07,409.966,77.744,168.772,0.977147,-1,-1,-1
86,-1,9.71849,405.548,72.3651,209.331,0.974335,-1,-1,-1
86,-1,65.6238,392.012,64.6362,184.991,0.895944,-1,-1,-1
86,-1,812.632,428.007,47.886,112.782,0.768446,-1,-1,-1
86,-1,496.433,412.038,61.239,113.432,0.619403,-1,-1,-1
87,-1,1530.56,337.023,237.32,692.487,0.991878,-1,-1,-1
87,-1,856.255,424.901,69.188,147.476,0.977866,-1,-1,-1
87,-1,10.8807,377.647,72.7602,233.169,0.964119,-1,-1,-1
87,-1,1798.55,331.316,115.59,389.241,0.919016,-1,-1,-1
87,-1,1200.55,410.467,62.47,160.575,0.853031,-1,-1,-1
87,-1,813.925,429.541,52.805,115.213,0.790595,-1,-1,-1
88,-1,14.4686,422.564,62.1525,205.74,0.981617,-1,-1,-1
88,-1,847.605,432.963,69.917,155.882,0.978846,-1,-1,-1
88,-1,1563.73,291.503,222.22,787.497,0.977898,-1,-1,-1
88,-1,1849.46,329.029,69.54,398.214,0.842252,-1,-1,-1
88,-1,815.799,420.055,46.263,121.321,0.753833,-1,-1,-1
88,-1,494.566,406.262,63.725,122.95,0.714892,-1,-1,-1
88,-1,1200.97,413.906,70.47,149.184,0.529399,-1,-1,-1
88,-1,60.1171,195.838,217.898,240.797,0.523361,-1,-1,-1
89,-1,846.851,425.085,70.668,127.931,0.979603,-1,-1,-1
89,-1,5.97411,394.363,60.0619,231.17,0.90959,-1,-1,-1
89,-1,1861.73,372.897,55.38,273.041,0.629448,-1,-1,-1
89,-1,62.8137,172.503,186.107,270.831,0.557824,-1,-1,-1
90,-1,1617.06,299.048,249.78,717.732,0.996031,-1,-1,-1
90,-1,842.314,414.729,72.81,152.303,0.988022,-1,-1,-1
90,-1,1195.76,423.609,68.34,141.637,0.930402,-1,-1,-1
90,-1,4.5531,402.325,46.8658,218.357,0.866313,-1,-1,-1
90,-1,1850.02,368.939,66.03,461.092,0.727598,-1,-1,-1
90,-1,799.943,443.655,67.393,105.462,0.539241,-1,-1,-1
91,-1,1648.96,291.781,245.86,745.999,0.976718,-1,-1,-1
91,-1,839.362,426.706,75.695,135.935,0.975291,-1,-1,-1
92,-1,1676.57,304.024,225.96,721.976,0.991326,-1,-1,-1
92,-1,847.053,416.163,71.8,154.529,0.991215,-1,-1,-1
92,-1,1211.39,393.922,69.66,176.445,0.524696,-1,-1,-1
92,-1,1873.66,408.276,45.02,226.249,0.517851,-1,-1,-1
93,-1,1672.3,303.836,246.7,708.944,0.997549,-1,-1,-1
93,-1,825.369,422.991,82.176,133.998,0.981576,-1,-1,-1
94,-1,1703.22,285.841,215.78,778.549,0.996695,-1,-1,-1
94,-1,845.19,424.377,74.724,139.74,0.981833,-1,-1,-1
94,-1,19.8253,89.4767,267.607,932.363,0.790832,-1,-1,-1
94,-1,1196,416.934,76.14,154.788,0.60518,-1,-1,-1
95,-1,818.841,410.669,112.854,162.819,0.988917,-1,-1,-1
95,-1,1773.91,328.966,137.42,689.704,0.952189,-1,-1,-1
95,-1,729.218,391.165,43.807,116.478,0.905993,-1,-1,-1
95,-1,1197.52,413.259,62.15,149.314,0.77078,-1,-1,-1
95,-1,1854.7,313.022,64.3,200.527,0.62673,-1,-1,-1
95,-1,39.989,201.266,156.458,206.007,0.513405,-1,-1,-1
96,-1,1769.78,290.919,149.22,769.081,0.996097,-1,-1,-1
96,-1,845.863,424.579,64.679,137.929,0.990266,-1,-1,-1
96,-1,735.356,396.456,45.845,102.974,0.903598,-1,-1,-1
96,-1,1847.45,331.034,70.11,264.326,0.585525,-1,-1,-1
96,-1,41.7715,210.203,142.153,212.871,0.548244,-1,-1,-1
96,-1,704.539,412.169,53.344,101.743,0.540697,-1,-1,-1
97,-1,1793.83,356.071,125.17,685.549,0.996391,-1,-1,-1
97,-1,844.774,422.501,70.91,148.711,0.993345,-1,-1,-1
97,-1,727.229,389.227,50.763,118.802,0.908345,-1,-1,-1
97,-1,1217.95,366.949,78.62,198.239,0.602189,-1,-1,-1
98,-1,838.595,402.873,72.638,150.509,0.994783,-1,-1,-1
98,-1,1808.28,389.215,110.72,572.175,0.994142,-1,-1,-1
98,-1,725.545,387.385,45.496,112.659,0.93149,-1,-1,-1
99,-1,1810.05,383.763,108.95,520.606,0.997124,-1,-1,-1
99,-1,837.021,405.623,70.3,142.42,0.992751,-1,-1,-1
99,-1,733.242,392.586,42.106,101.398,0.926827,-1,-1,-1
99,-1,1221.05,360.709,76.46,196.481,0.662426,-1,-1,-1
100,-1,1781.01,422.629,137.99,475.968,0.987878,-1,-1,-1
100,-1,831.264,411.523,83.001,148.845,0.977532,-1,-1,-1
100,-1,727.338,395.626,46.212,93.431,0.909256,-1,-1,-1
100,-1,1222.13,377.273,78.01,193.946,0.679825,-1,-1,-1
100,-1,746.723,423.925,62.889,75.545,0.660748,-1,-1,-1
101,-1,1775.83,438.766,143.17,466.194,0.990157,-1,-1,-1
101,-1,838.299,406.148,72.193,151.969,0.981078,-1,-1,-1
101,-1,708.89,395.212,64.631,92.844,0.908101,-1,-1,-1
101,-1,1222.89,386.019,74.49,170.912,0.872007,-1,-1,-1
101,-1,744.281,421.43,63.285,79.709,0.546772,-1,-1,-1
102,-1,829.824,406.195,74.992,149.46,0.985958,-1,-1,-1
102,-1,1779.25,357.557,139.75,526.639,0.983608,-1,-1,-1
102,-1,732.219,386.832,41.405,100.308,0.930061,-1,-1,-1
102,-1,17.0844,192.512,87.7806,201.595,0.886017,-1,-1,-1
102,-1,1228.1,386.405,68.71,160.785,0.766533,-1,-1,-1
103,-1,1785.45,373.556,133.55,514.388,0.992435,-1,-1,-1
103,-1,826.417,403.672,77.42,152.878,0.986959,-1,-1,-1
103,-1,727.434,392,49.081,113.118,0.898096,-1,-1,-1
104,-1,814.894,384.188,75.657,174.353,0.994604,-1,-1,-1
104,-1,1771.67,371.467,147.33,521.057,0.9849,-1,-1,-1
104,-1,8.1036,202.964,78.3141,180.325,0.935235,-1,-1,-1
104,-1,709.865,407.654,57.205,95.076,0.916008,-1,-1,-1
104,-1,1218.85,386.761,67.69,172.568,0.824092,-1,-1,-1
105,-1,813.554,379.203,70.764,183.083,0.993312,-1,-1,-1
105,-1,1219.96,369.096,75.52,192.342,0.9265,-1,-1,-1
105,-1,704.141,403.598,58.926,98.219,0.910778,-1,-1,-1
105,-1,1736.03,345.305,182.97,517.123,0.908647,-1,-1,-1
105,-1,742.279,396.438,43.535,103.674,0.76721,-1,-1,-1
106,-1,814.993,383.166,87.76,159.917,0.988843,-1,-1,-1
106,-1,723.928,388.004,34.092,99.561,0.929761,-1,-1,-1
106,-1,1786.63,377.066,132.24,370.004,0.899248,-1,-1,-1
106,-1,1198.31,386.747,80.63,155.811,0.829044,-1,-1,-1
107,-1,814.145,391.812,66.851,157.594,0.991082,-1,-1,-1
107,-1,704.154,407.461,60.913,100.83,0.933652,-1,-1,-1
107,-1,1751.85,373.374,152.32,376.582,0.905928,-1,-1,-1
107,-1,1223.77,380.41,80.37,166.999,0.756772,-1,-1,-1
107,-1,745.442,389.475,40.313,128.404,0.598727,-1,-1,-1
108,-1,795.118,385.453,88.431,179.536,0.993036,-1,-1,-1
108,-1,1750.11,377.792,147.77,372.052,0.957661,-1,-1,-1
108,-1,714.251,390.233,42.364,104.659,0.939532,-1,-1,-1
108,-1,1221.24,383.182,83.69,164.97,0.865255,-1,-1,-1
108,-1,741.705,393.964,38.66,111.381,0.786242,-1,-1,-1
109,-1,809.755,376.509,68.121,175.168,0.992168,-1,-1,-1
109,-1,720.293,403.437,44.399,108.048,0.938341,-1,-1,-1
109,-1,1714.31,346.542,204.69,522.595,0.935283,-1,-1,-1
109,-1,1220.13,387.606,83.79,162.931,0.850685,-1,-1,-1
109,-1,680.838,397.34,57.584,101.345,0.57378,-1,-1,-1
110,-1,1713.48,331.815,190.43,571.544,0.995334,-1,-1,-1
110,-1,809.898,369.828,69.008,181.502,0.993303,-1,-1,-1
110,-1,718.491,390.731,43.674,111.981,0.928092,-1,-1,-1
110,-1,1223.62,374.756,81.88,169.031,0.760891,-1,-1,-1
110,-1,668.818,386.565,57.398,90.817,0.640639,-1,-1,-1
111,-1,1708.62,390.137,185.33,519.584,0.99422,-1,-1,-1
111,-1,814.796,378.499,69.937,185.111,0.982266,-1,-1,-1
111,-1,718.441,404.521,57.529,83.936,0.91076,-1,-1,-1
111,-1,1212.51,382.269,83.85,159.086,0.695043,-1,-1,-1
111,-1,695.981,368.509,41.122,105.966,0.529955,-1,-1,-1
112,-1,1699.98,396.111,191.57,500.794,0.997325,-1,-1,-1
112,-1,789.431,382.353,96.256,171.956,0.978204,-1,-1,-1
112,-1,708.359,394.451,51.134,106.64,0.920443,-1,-1,-1
112,-1,740.913,408.142,63.453,92.965,0.516448,-1,-1,-1
113,-1,812.255,375.319,59.847,163.929,0.991299,-1,-1,-1
113,-1,1709.56,370.376,180.46,532.645,0.989314,-1,-1,-1
113,-1,720.885,381.91,37.791,103.256,0.917501,-1,-1,-1
113,-1,35.8563,378.341,64.0098,200.766,0.651697,-1,-1,-1
113,-1,746.947,390.478,48.369,112.117,0.588444,-1,-1,-1
114,-1,1690.82,338.096,228.18,576.005,0.993632,-1,-1,-1
114,-1,792.697,386.693,96.944,169.201,0.983067,-1,-1,-1
114,-1,724.128,407.864,57.54,85.829,0.90416,-1,-1,-1
114,-1,30.8245,384.76,70.3245,157.046,0.714587,-1,-1,-1
114,-1,544.907,391.935,40.345,75.751,0.643622,-1,-1,-1
114,-1,705.88,381.203,46.231,100.047,0.581716,-1,-1,-1
115,-1,1712.8,328.26,203.04,582.989,0.996509,-1,-1,-1
115,-1,813.7,381.614,79.609,159.467,0.986635,-1,-1,-1
115,-1,1220.47,382.222,81.19,166.737,0.859313,-1,-1,-1
115,-1,704.777,407.325,58.435,94.869,0.786775,-1,-1,-1
115,-1,725.452,388.172,51.122,74.708,0.74623,-1,-1,-1
116,-1,1713.54,321.761,199.15,589.157,0.996985,-1,-1,-1
116,-1,816.846,405.744,59.87,133.891,0.974317,-1,-1,-1
116,-1,46.849,398.63,66.391,147.361,0.826386,-1,-1,-1
117,-1,1743.14,349.05,139.3,514.928,0.992828,-1,-1,-1
117,-1,822.967,384.619,78.124,155.744,0.989813,-1,-1,-1
118,-1,1719.63,359.468,182.62,544.302,0.99861,-1,-1,-1
118,-1,815.31,391.848,71.087,155.626,0.987254,-1,-1,-1
118,-1,40.7763,394.243,75.1097,117.755,0.524832,-1,-1,-1
119,-1,1698.58,362.994,220.42,527.721,0.991225,-1,-1,-1
119,-1,826.333,399.849,65.24,141.997,0.983331,-1,-1,-1
119,-1,352.321,399.784,58.585,117.901,0.561045,-1,-1,-1
120,-1,1733.05,366.492,169.49,528.179,0.992426,-1,-1,-1
120,-1,841.278,391.505,63.168,161.853,0.966464,-1,-1,-1
121,-1,1748.89,379.977,170.11,545.367,0.993532,-1,-1,-1
121,-1,862.304,395.693,67.581,170.898,0.974517,-1,-1,-1
121,-1,17.2402,407.279,58.2886,112.912,0.886626,-1,-1,-1
121,-1,116.191,419.084,44.409,110.842,0.760037,-1,-1,-1
122,-1,873.925,403.773,71.647,138.547,0.974944,-1,-1,-1
122,-1,1755.28,375.835,160.15,543.624,0.971698,-1,-1,-1
122,-1,21.1161,404.171,64.8661,112.722,0.88163,-1,-1,-1
122,-1,1281.18,396.724,81.27,164.725,0.841857,-1,-1,-1
122,-1,128.9,422.425,63.099,118.776,0.765248,-1,-1,-1
123,-1,1770.1,365.114,138.22,559.67,0.985273,-1,-1,-1
123,-1,871.728,407.279,65.937,142.744,0.956623,-1,-1,-1
123,-1,39.4554,418.301,57.8694,94.998,0.90499,-1,-1,-1
123,-1,122.595,410.604,53.768,110.395,0.753633,-1,-1,-1
124,-1,1747.06,373.903,171.94,515.687,0.988766,-1,-1,-1
124,-1,874.745,414.56,73.15,128.917,0.963056,-1,-1,-1
124,-1,141.796,399.709,54.864,113.747,0.940651,-1,-1,-1
124,-1,855.266,412.029,46.557,119.408,0.668046,-1,-1,-1
124,-1,7.73694,410.186,50.2775,208.97,0.521813,-1,-1,-1
124,-1,42.5592,401.674,46.2717,127.707,0.512809,-1,-1,-1
125,-1,1773.88,369.036,139.63,533.746,0.997481,-1,-1,-1
125,-1,137.62,401.063,56.928,113.67,0.963051,-1,-1,-1
125,-1,873.096,407.093,87.095,142.814,0.951713,-1,-1,-1
125,-1,8.15121,417.356,53.9062,179.676,0.885639,-1,-1,-1
125,-1,1330.72,379.068,85.28,145.775,0.748187,-1,-1,-1
125,-1,67.968,396.759,46.74,102.713,0.617356,-1,-1,-1
126,-1,1771.17,354.4,147.83,525.758,0.991387,-1,-1,-1
126,-1,901.45,408.93,59.196,112.654,0.9514,-1,-1,-1
126,-1,7.90777,382.71,63.4856,263.751,0.944854,-1,-1,-1
126,-1,931.85,383.791,62.17,129.266,0.924883,-1,-1,-1
126,-1,150.814,384.685,53.097,118.496,0.859311,-1,-1,-1
126,-1,84.4664,408.922,51.2576,80.201,0.813499,-1,-1,-1
126,-1,1342.02,379.014,68.64,162.848,0.787944,-1,-1,-1
126,-1,871.941,386.264,61.359,157.499,0.630665,-1,-1,-1
127,-1,1796.39,349.065,121.24,579.858,0.994393,-1,-1,-1
127,-1,906.108,393.826,62.325,131.856,0.946424,-1,-1,-1
127,-1,12.2013,392.298,60.8799,237.688,0.941255,-1,-1,-1
127,-1,155.481,393.214,54.672,121.049,0.924966,-1,-1,-1
127,-1,1340.65,367.353,82.66,147.145,0.892621,-1,-1,-1
127,-1,942.111,381.523,51.422,144.618,0.825095,-1,-1,-1
127,-1,781.56,379.959,31.626,102.671,0.738876,-1,-1,-1
127,-1,886.511,387.334,34.928,134.938,0.726795,-1,-1,-1
128,-1,1788.69,308.928,130.31,626.247,0.970086,-1,-1,-1
128,-1,7.77422,391.321,68.9555,201.258,0.968956,-1,-1,-1
128,-1,901.845,397.774,47.871,115.528,0.954374,-1,-1,-1
128,-1,927.97,381.722,62.582,154.238,0.926339,-1,-1,-1
128,-1,173.73,386.971,58.083,139.187,0.774857,-1,-1,-1
128,-1,104.26,409.827,45.515,85.73,0.750971,-1,-1,-1
128,-1,1359.78,355.275,66.58,175.445,0.656016,-1,-1,-1
128,-1,670.514,370.061,32.024,91.5,0.601353,-1,-1,-1
129,-1,906.765,392.061,56.521,150.429,0.956196,-1,-1,-1
129,-1,11.1643,373.245,64.7556,252.018,0.947358,-1,-1,-1
129,-1,943.348,380.026,59.792,135.273,0.924196,-1,-1,-1
129,-1,193.764,392.194,55.612,130.362,0.923012,-1,-1,-1
129,-1,1799.19,370.423,110.26,517.505,0.914441,-1,-1,-1
129,-1,152.556,392.683,55.379,119.261,0.602684,-1,-1,-1
129,-1,886.757,396.322,35.146,99.646,0.539599,-1,-1,-1
130,-1,1792.29,357.069,126.71,534.483,0.997542,-1,-1,-1
130,-1,14.573,378.813,64.2113,203.303,0.984822,-1,-1,-1
130,-1,900.546,396.41,64.793,148.874,0.952125,-1,-1,-1
130,-1,195.037,389.057,53.184,110.708,0.925218,-1,-1,-1
130,-1,948.609,390.863,57.761,127.231,0.924718,-1,-1,-1
130,-1,106.59,386.449,59.022,119.172,0.850224,-1,-1,-1
130,-1,810.841,382.337,30.506,94.613,0.782481,-1,-1,-1
130,-1,790.747,384.041,30.249,94.457,0.752303,-1,-1,-1
130,-1,1371.81,357.425,71.97,183.624,0.533391,-1,-1,-1
131,-1,1786.4,455.103,132.6,410.971,0.990477,-1,-1,-1
131,-1,927.303,407.803,55.904,113.542,0.971134,-1,-1,-1
131,-1,32.476,343.736,101.743,264.672,0.955763,-1,-1,-1
131,-1,957.3,368.444,66.62,165.531,0.869958,-1,-1,-1
132,-1,223.297,403.354,53.721,131.199,0.986982,-1,-1,-1
132,-1,29.3303,388.492,98.4487,190.247,0.984885,-1,-1,-1
132,-1,1796.89,358.595,122.11,540.028,0.977945,-1,-1,-1
132,-1,930.26,392.789,59.126,139.244,0.97581,-1,-1,-1
132,-1,996.51,379.682,51.89,145.577,0.824346,-1,-1,-1
132,-1,824.417,377.006,25.803,110.25,0.643631,-1,-1,-1
132,-1,914.859,411.658,36.943,101.806,0.50558,-1,-1,-1
133,-1,933.397,388.878,61.432,152.364,0.974544,-1,-1,-1
133,-1,19.3404,362.464,89.5876,247.921,0.974012,-1,-1,-1
133,-1,223.485,391.17,55.754,139.702,0.965136,-1,-1,-1
133,-1,1794.69,405.613,124.31,457.832,0.94115,-1,-1,-1
133,-1,999.912,360.261,54.448,127.705,0.936271,-1,-1,-1
133,-1,829.278,380.44,29.79,99.875,0.907488,-1,-1,-1
133,-1,1405.89,338.488,87.8,184.177,0.784972,-1,-1,-1
134,-1,38.7903,371.428,75.7787,217.928,0.984831,-1,-1,-1
134,-1,938.214,379.567,59.952,150.304,0.967078,-1,-1,-1
134,-1,821.722,383.471,54.013,108.668,0.945615,-1,-1,-1
134,-1,229.128,384.054,51.399,146.946,0.93839,-1,-1,-1
134,-1,1009.6,362.031,53.84,149.268,0.919886,-1,-1,-1
134,-1,1787.74,377.007,131.26,521.602,0.913615,-1,-1,-1
134,-1,1409.79,342.529,85.1,201.252,0.598715,-1,-1,-1
134,-1,1240.92,45.6591,81.97,145.565,0.555764,-1,-1,-1
135,-1,255.041,399.311,48.041,111.578,0.966235,-1,-1,-1
135,-1,41.9642,347.831,76.9188,237.636,0.943618,-1,-1,-1
135,-1,932.799,379.083,76.841,148.674,0.942002,-1,-1,-1
135,-1,826.841,378.376,58.477,91.506,0.92997,-1,-1,-1
135,-1,1012.82,361.168,47.65,140.205,0.920412,-1,-1,-1
135,-1,93.1536,366.67,39.4944,191.811,0.831095,-1,-1,-1
135,-1,221.729,388.233,50.215,125.382,0.824633,-1,-1,-1
135,-1,982.675,372.176,50.375,145.879,0.815225,-1,-1,-1
135,-1,1428.64,324.959,72.45,223.832,0.811379,-1,-1,-1
135,-1,1792.01,392.244,126.99,503.304,0.692262,-1,-1,-1
135,-1,145.332,384.497,55.227,71.545,0.515429,-1,-1,-1
136,-1,955.167,379.006,64.533,151.256,0.978318,-1,-1,-1
136,-1,259.46,384.62,49.36,121.475,0.972404,-1,-1,-1
136,-1,35.6894,338.836,102.605,252.839,0.96333,-1,-1,-1
136,-1,846.696,358.288,35.097,113.662,0.933799,-1,-1,-1
136,-1,1025.36,360.995,50.59,146.543,0.917081,-1,-1,-1
136,-1,174.634,372.357,39.723,100.826,0.676729,-1,-1,-1
136,-1,1785.97,377.188,133.03,505.99,0.628701,-1,-1,-1
136,-1,992.804,378.153,44.626,129.581,0.610651,-1,-1,-1
137,-1,961.228,371.856,57.422,143.503,0.978743,-1,-1,-1
137,-1,256.917,382.883,38.207,109.816,0.970233,-1,-1,-1
137,-1,48.8527,346.62,84.2303,260.856,0.960105,-1,-1,-1
137,-1,830.514,374.104,55.647,105.89,0.943817,-1,-1,-1
137,-1,1026.99,352.179,53.93,159.031,0.893227,-1,-1,-1
137,-1,1826.44,378.001,92.56,485.006,0.585851,-1,-1,-1
137,-1,460.144,334.151,61.451,143.921,0.541907,-1,-1,-1
138,-1,960.966,368.225,60.814,148.631,0.982571,-1,-1,-1
138,-1,50.6882,346.583,75.8528,235.13,0.978975,-1,-1,-1
138,-1,269.073,378.837,45.012,99.446,0.967456,-1,-1,-1
138,-1,1034.37,347.538,58.38,161.232,0.931759,-1,-1,-1
138,-1,851.168,358.621,41.34,100.526,0.923293,-1,-1,-1
138,-1,1822.82,347.012,96.18,529.306,0.903049,-1,-1,-1
138,-1,1437.29,337.931,78.23,191.8,0.816717,-1,-1,-1
138,-1,151.785,353.438,55.152,118.558,0.550241,-1,-1,-1
139,-1,965.372,372.923,56.848,136.511,0.978701,-1,-1,-1
139,-1,48.8066,362.718,75.2294,207.341,0.970985,-1,-1,-1
139,-1,1038.69,356.113,52.74,141.729,0.970619,-1,-1,-1
139,-1,266.1,371.6,51.118,103.943,0.967338,-1,-1,-1
139,-1,1818.26,358.824,100.74,537.95,0.959218,-1,-1,-1
139,-1,829.086,351.898,68.583,112.547,0.895373,-1,-1,-1
139,-1,169.298,360.91,63.227,104.824,0.619973,-1,-1,-1
139,-1,757.377,365.163,50.628,103.055,0.512443,-1,-1,-1
140,-1,965.006,371.371,62.494,144.355,0.977087,-1,-1,-1
140,-1,1820.89,337.853,98.11,565.74,0.972719,-1,-1,-1
140,-1,271.701,355.437,54.959,127.178,0.967341,-1,-1,-1
140,-1,1042.9,360.784,52.57,144.08,0.966041,-1,-1,-1
140,-1,46.7683,345.024,75.4787,235.189,0.963363,-1,-1,-1
140,-1,848.388,353.465,53.964,103.395,0.94479,-1,-1,-1
140,-1,190.585,348.918,56.885,121.646,0.568727,-1,-1,-1
141,-1,35.013,351.175,117.115,242.315,0.981317,-1,-1,-1
141,-1,969.297,367.228,64.143,147.851,0.972071,-1,-1,-1
141,-1,1047.27,342.534,61.75,158.23,0.969246,-1,-1,-1
141,-1,285.24,360.376,51.188,129.464,0.967839,-1,-1,-1
141,-1,1806.07,359.068,112.93,522.126,0.963389,-1,-1,-1
141,-1,455.598,323.305,78.919,146.277,0.921361,-1,-1,-1
141,-1,866.562,362.587,43.134,103.747,0.779543,-1,-1,-1
141,-1,68.8803,377.351,48.4517,163.729,0.77943,-1,-1,-1
141,-1,189.382,352.147,47.094,112.19,0.657631,-1,-1,-1
142,-1,952.139,365.618,91.361,144.189,0.970409,-1,-1,-1
142,-1,60.9559,328.645,67.7961,260.248,0.970191,-1,-1,-1
142,-1,1819.49,367.139,99.51,523.885,0.968971,-1,-1,-1
142,-1,293.642,377.337,45.081,96.043,0.953843,-1,-1,-1
142,-1,1051.33,343.152,67.01,158.318,0.948769,-1,-1,-1
142,-1,852.578,342.097,53.112,108.988,0.936714,-1,-1,-1
142,-1,875.897,378.486,54.129,100.271,0.904977,-1,-1,-1
142,-1,480.226,327.423,74.299,151.857,0.872028,-1,-1,-1
142,-1,175.645,334.808,56.828,120.59,0.715717,-1,-1,-1
143,-1,61.1765,365.872,82.3795,213.364,0.983301,-1,-1,-1
143,-1,1818.78,345.186,100.22,528.493,0.979883,-1,-1,-1
143,-1,962.535,369.148,85.335,145.913,0.975467,-1,-1,-1
143,-1,1059.13,343.87,48.64,142.99,0.972739,-1,-1,-1
143,-1,864.647,347.486,55.732,120.977,0.760297,-1,-1,-1
143,-1,298.148,362.899,43.053,98.095,0.722603,-1,-1,-1
143,-1,1476.78,330.09,85.95,202.518,0.567181,-1,-1,-1
144,-1,1830.44,310.866,88.56,617.392,0.986548,-1,-1,-1
144,-1,961.414,360.156,84.756,152.691,0.98642,-1,-1,-1
144,-1,47.2767,362.764,106.397,194.405,0.986346,-1,-1,-1
144,-1,1073.11,333.379,63.5,154.77,0.966777,-1,-1,-1
144,-1,491.831,337.141,71.245,133.801,0.917417,-1,-1,-1
144,-1,293.658,370.982,50.71,104.742,0.882394,-1,-1,-1
144,-1,873.722,345.382,39.329,112.744,0.880605,-1,-1,-1
144,-1,1470.23,323.933,78.83,201.016,0.630045,-1,-1,-1
145,-1,52.3186,363.757,87.3124,201.217,0.983421,-1,-1,-1
145,-1,976,356.001,68.6,161.976,0.978769,-1,-1,-1
145,-1,1071.52,350.989,51.48,130.06,0.97686,-1,-1,-1
145,-1,292.015,377.962,58.962,98.631,0.938821,-1,-1,-1
145,-1,875.603,353.151,47.075,107.608,0.780356,-1,-1,-1
145,-1,483.803,345.902,82.437,123.941,0.684413,-1,-1,-1
146,-1,985.996,362.81,67.554,165.646,0.991717,-1,-1,-1
146,-1,75.5418,385.934,66.6552,176.162,0.983077,-1,-1,-1
146,-1,1078.72,341.981,68.98,158.603,0.970766,-1,-1,-1
146,-1,309.83,360.926,40.229,99.558,0.781485,-1,-1,-1
146,-1,1824.29,310.638,94.71,584.518,0.549875,-1,-1,-1
147,-1,991.302,372.378,50.398,142.999,0.981608,-1,-1,-1
147,-1,58.8514,377.887,104.646,179.422,0.977579,-1,-1,-1
147,-1,1081.7,338.912,58.31,162.873,0.975002,-1,-1,-1
147,-1,882.098,352.801,51.698,104.134,0.953731,-1,-1,-1
147,-1,315.558,368.579,51.218,103.491,0.909971,-1,-1,-1
147,-1,505.099,341.098,62.853,139.68,0.791856,-1,-1,-1
147,-1,209.682,339.593,48.83,121.084,0.566378,-1,-1,-1
148,-1,69.2947,351.85,77.1283,238.817,0.976554,-1,-1,-1
148,-1,1086.12,341.32,57.18,141.443,0.963894,-1,-1,-1
148,-1,993.537,371.519,60.063,144.991,0.95974,-1,-1,-1
148,-1,882.838,357.876,52.726,89.689,0.902996,-1,-1,-1
148,-1,1835.44,319.625,83.56,384.751,0.610076,-1,-1,-1
149,-1,69.3636,363.845,75.2464,219.299,0.976133,-1,-1,-1
149,-1,986.859,370.501,87.951,143.089,0.969432,-1,-1,-1
149,-1,1106.07,330.125,68.07,158.648,0.96758,-1,-1,-1
149,-1,1817.17,333.97,101.83,609.908,0.919617,-1,-1,-1
149,-1,898.289,347.336,36.406,111.581,0.826895,-1,-1,-1
149,-1,1075.24,338.023,58.89,174.929,0.72332,-1,-1,-1
149,-1,327.876,375.414,41.649,92.245,0.706307,-1,-1,-1
149,-1,3.10711,384.908,59.2617,178.553,0.547475,-1,-1,-1
150,-1,1099.16,338.311,62.78,156.917,0.986363,-1,-1,-1
150,-1,68.701,349.625,88.099,233.879,0.970972,-1,-1,-1
150,-1,986.343,361.123,89.447,144.353,0.965998,-1,-1,-1
150,-1,321.444,373.376,59.091,108.737,0.962415,-1,-1,-1
150,-1,908.647,356.179,42.033,101.69,0.902936,-1,-1,-1
150,-1,0.417404,400.118,65.1775,178.861,0.871415,-1,-1,-1
151,-1,1095.16,322.315,90.28,182.534,0.988545,-1,-1,-1
151,-1,988.137,363.936,90.033,150.59,0.974397,-1,-1,-1
151,-1,7.71082,385.79,55.2764,192.139,0.972197,-1,-1,-1
151,-1,72.4595,351.109,72.4215,231.155,0.967054,-1,-1,-1
151,-1,1820.5,401.36,98.5,492.813,0.937491,-1,-1,-1
151,-1,907.281,359.975,43.375,108.357,0.902758,-1,-1,-1
151,-1,332.601,370.103,49.466,103.111,0.677085,-1,-1,-1
151,-1,813.972,336.311,45.013,120.266,0.671313,-1,-1,-1
152,-1,1099.03,335.318,89.71,177.062,0.988074,-1,-1,-1
152,-1,79.8366,363.655,69.8574,205.576,0.974926,-1,-1,-1
152,-1,1025.32,343.715,57.93,150.088,0.968505,-1,-1,-1
152,-1,5.57945,381.842,59.3502,195.465,0.96796,-1,-1,-1
152,-1,906.306,335.857,53.294,115.393,0.928626,-1,-1,-1
152,-1,325.911,365.024,54.513,111.231,0.853943,-1,-1,-1
152,-1,814.48,337.74,48.686,100.449,0.842197,-1,-1,-1
152,-1,1536.34,336.66,67.47,201.539,0.50728,-1,-1,-1
153,-1,1108.12,330.075,69.61,177.179,0.986421,-1,-1,-1
153,-1,1012.96,364.953,66.1,148.551,0.973275,-1,-1,-1
153,-1,0,370.552,63.0614,203.816,0.945888,-1,-1,-1
153,-1,74.2929,365.712,69.5581,180.305,0.898364,-1,-1,-1
153,-1,344.473,361.616,56.064,104.66,0.814036,-1,-1,-1
153,-1,908.595,343.965,49.478,103.028,0.74627,-1,-1,-1
153,-1,1850.14,361.363,68.86,333.649,0.739614,-1,-1,-1
153,-1,819.301,333.156,39.842,108.363,0.581242,-1,-1,-1
154,-1,1104,334.371,85.02,151.119,0.98555,-1,-1,-1
154,-1,1012.29,349.155,54.82,149.44,0.98139,-1,-1,-1
154,-1,73.0593,348.679,77.9977,234.633,0.973917,-1,-1,-1
154,-1,0,370.81,61.4248,207.353,0.967248,-1,-1,-1
154,-1,921.917,334.461,41.525,114.331,0.809748,-1,-1,-1
154,-1,808.117,339.424,59.42,124.496,0.790604,-1,-1,-1
154,-1,339.222,356.327,63.446,101.865,0.656478,-1,-1,-1
154,-1,525.572,333.376,64.773,142.103,0.654296,-1,-1,-1
154,-1,218.927,311.953,65.91,147.875,0.572628,-1,-1,-1
155,-1,1824.01,341.373,94.99,545.795,0.989726,-1,-1,-1
155,-1,1100.29,323.097,87.1,169.772,0.982479,-1,-1,-1
155,-1,63.6272,349.835,78.5248,237.655,0.982262,-1,-1,-1
155,-1,1021.81,358.695,55.58,137.121,0.981213,-1,-1,-1
155,-1,0,371.149,60.7376,205.163,0.964878,-1,-1,-1
155,-1,910.09,354.526,53.55,95.898,0.925534,-1,-1,-1
155,-1,349.029,355.242,52.273,103.628,0.858948,-1,-1,-1
155,-1,817.563,334.5,50.631,108.633,0.77922,-1,-1,-1
155,-1,1556.15,316.756,91.7,200.672,0.540028,-1,-1,-1
156,-1,1019.42,342.891,57.8,157.109,0.985032,-1,-1,-1
156,-1,1099.08,334.675,89.33,172.498,0.979458,-1,-1,-1
156,-1,56.0095,340.447,105.476,232.322,0.974051,-1,-1,-1
156,-1,1799.8,367.272,119.2,535.908,0.944831,-1,-1,-1
156,-1,5.92898,385.822,56.0259,160.29,0.883357,-1,-1,-1
156,-1,921.876,347.63,37.41,104.146,0.823074,-1,-1,-1
156,-1,226.767,306.375,61.843,136.373,0.748974,-1,-1,-1
156,-1,352.023,351.186,54.539,107.39,0.695136,-1,-1,-1
156,-1,820.372,330.818,50.137,121.242,0.585897,-1,-1,-1
157,-1,1807.66,346.337,111.34,588.557,0.989017,-1,-1,-1
157,-1,1021.59,341.414,55.78,153.47,0.984473,-1,-1,-1
157,-1,1123.26,323.403,60.02,176.343,0.98354,-1,-1,-1
157,-1,69.7083,337.477,75.2927,233.201,0.971766,-1,-1,-1
157,-1,918.816,340.301,43.373,106.01,0.892916,-1,-1,-1
157,-1,219.535,306.723,56.895,148.246,0.879851,-1,-1,-1
157,-1,348.581,359.934,43.461,97.852,0.739352,-1,-1,-1
157,-1,1566.7,323.217,77.71,201.022,0.634367,-1,-1,-1
157,-1,12.0239,388.117,52.7453,178.631,0.630523,-1,-1,-1
157,-1,799.207,302.57,68.021,158.262,0.516942,-1,-1,-1
158,-1,1799.14,340.22,119.86,551.694,0.985941,-1,-1,-1
158,-1,1023.11,353.385,48.04,127.829,0.985132,-1,-1,-1
158,-1,1124.6,325.631,57.66,174.052,0.979852,-1,-1,-1
158,-1,60.9125,340.397,82.9625,244.575,0.964425,-1,-1,-1
158,-1,213.826,298.149,60.365,154.839,0.93571,-1,-1,-1
158,-1,1565.82,322.207,79.65,202.503,0.893877,-1,-1,-1
158,-1,914.794,344.902,38.91,84.108,0.830839,-1,-1,-1
158,-1,349.286,364.173,45.723,97.506,0.722875,-1,-1,-1
158,-1,8.42947,385.438,58.1871,192.961,0.515817,-1,-1,-1
159,-1,1013.97,337.998,52.94,151.084,0.982622,-1,-1,-1
159,-1,1799.39,313.508,119.61,625.877,0.980956,-1,-1,-1
159,-1,1122.42,319.63,81.69,177.505,0.974638,-1,-1,-1
159,-1,29.2038,359.461,120.554,215.928,0.910508,-1,-1,-1
159,-1,351.22,381.805,51.73,94.882,0.838216,-1,-1,-1
159,-1,210.818,297.536,67.662,153.643,0.680671,-1,-1,-1
160,-1,1763.18,274.449,155.82,640.346,0.989674,-1,-1,-1
160,-1,1117.21,321.195,60.85,181.551,0.985342,-1,-1,-1
160,-1,1006.64,345.436,70.65,155.67,0.981994,-1,-1,-1
160,-1,339.897,374.289,48.416,105.021,0.94684,-1,-1,-1
160,-1,52.703,340.31,85.003,247.365,0.932348,-1,-1,-1
160,-1,226.052,315.338,54.689,145.218,0.813285,-1,-1,-1
160,-1,1563.87,328.098,84.44,199.625,0.8105,-1,-1,-1
160,-1,9.49882,369.417,61.4291,210.818,0.772543,-1,-1,-1
161,-1,1757.91,289.851,161.09,605.868,0.992276,-1,-1,-1
161,-1,12.3284,335.807,116.084,263.733,0.983008,-1,-1,-1
161,-1,1113.96,314.97,72.18,185.474,0.978329,-1,-1,-1
161,-1,324.471,363.698,58.871,105.759,0.933744,-1,-1,-1
161,-1,998.323,363.272,64.527,140.723,0.928298,-1,-1,-1
161,-1,814.637,333.19,49.546,129.437,0.904493,-1,-1,-1
161,-1,181.309,291.468,79.259,181.232,0.658559,-1,-1,-1
161,-1,1555.87,329.948,87.33,199.2,0.514868,-1,-1,-1
162,-1,1777.31,297.295,141.69,595.464,0.979981,-1,-1,-1
162,-1,22.1389,337.642,96.7771,274.93,0.976839,-1,-1,-1
162,-1,1112.97,313.727,71.42,191.435,0.974987,-1,-1,-1
162,-1,991.434,341.367,52.016,145.857,0.952311,-1,-1,-1
162,-1,797.814,336.01,46.031,135.165,0.949735,-1,-1,-1
162,-1,333.022,380.22,64.52,122.018,0.934812,-1,-1,-1
162,-1,193.023,286.937,63.768,170.846,0.810543,-1,-1,-1
162,-1,826.011,331.633,44.742,130.255,0.710231,-1,-1,-1
162,-1,1557.76,341.751,72.56,198.157,0.701709,-1,-1,-1
163,-1,1719.62,271.306,199.38,636.305,0.985645,-1,-1,-1
163,-1,1109.97,319.933,66.8,166.2,0.985142,-1,-1,-1
163,-1,1000.94,357.615,57.29,140.026,0.973429,-1,-1,-1
163,-1,324.06,373.055,57.051,99.848,0.938954,-1,-1,-1
163,-1,5.36269,349.944,96.6693,234.099,0.935844,-1,-1,-1
163,-1,176.47,286.903,77.423,174.086,0.903044,-1,-1,-1
163,-1,791.316,341.418,54.363,127.627,0.815258,-1,-1,-1
163,-1,1551.93,341.537,73.47,199.646,0.536807,-1,-1,-1
164,-1,1723.14,306.309,195.86,567.395,0.993255,-1,-1,-1
164,-1,10.0305,346.778,89.8969,246.09,0.989754,-1,-1,-1
164,-1,1103.94,313.375,67.22,200.13,0.986696,-1,-1,-1
164,-1,994.56,357.047,53.06,143.817,0.980363,-1,-1,-1
164,-1,323.529,380.454,60.421,114.094,0.94381,-1,-1,-1
164,-1,177.252,314.535,68.853,154.683,0.935415,-1,-1,-1
164,-1,791.602,349.774,45.46,95.351,0.849911,-1,-1,-1
164,-1,624.327,344.073,55.574,106.803,0.65433,-1,-1,-1
164,-1,489.998,356.878,51.706,121.686,0.621488,-1,-1,-1
165,-1,1722.5,294.963,196.5,578.845,0.994521,-1,-1,-1
165,-1,1099.42,306.425,68.51,203.169,0.990166,-1,-1,-1
165,-1,994.216,354.278,55.684,155.55,0.980373,-1,-1,-1
165,-1,318.472,358.854,48.535,125.549,0.970208,-1,-1,-1
165,-1,11.1763,332.754,85.8114,262.692,0.969894,-1,-1,-1
165,-1,622.267,345.092,56.568,101.727,0.906402,-1,-1,-1
165,-1,793.865,331.765,46.035,109.631,0.874742,-1,-1,-1
165,-1,167.059,333.253,83.833,116.588,0.806964,-1,-1,-1
165,-1,1545.6,341.35,77.98,200.374,0.773618,-1,-1,-1
165,-1,895.707,351.955,40.029,101.77,0.61802,-1,-1,-1
165,-1,947.453,347.908,73.507,137.51,0.549386,-1,-1,-1
166,-1,1684.06,302.615,234.94,605.354,0.995606,-1,-1,-1
166,-1,1088.04,325.592,76.99,161.002,0.987473,-1,-1,-1
166,-1,963.406,352.921,60.514,144.826,0.963207,-1,-1,-1
166,-1,167.304,299.378,70.89,158.026,0.962709,-1,-1,-1
166,-1,8.83231,365.424,60.5705,234.058,0.949848,-1,-1,-1
166,-1,297.356,378.83,57.259,118.304,0.898702,-1,-1,-1
166,-1,768.194,338.116,57.985,128.193,0.771525,-1,-1,-1
167,-1,1676.6,298.708,215.42,630.146,0.994752,-1,-1,-1
167,-1,1091.32,329.8,61.58,172.918,0.989915,-1,-1,-1
167,-1,966.805,356.221,54.235,149.053,0.979747,-1,-1,-1
167,-1,11.2296,373.035,69.1158,237.434,0.97002,-1,-1,-1
167,-1,151.42,318.46,70.698,139.284,0.870779,-1,-1,-1
167,-1,770.967,338.32,50.812,118.748,0.82752,-1,-1,-1
167,-1,299.616,351.288,64.756,129.874,0.808094,-1,-1,-1
167,-1,939.731,344.207,49.503,140.908,0.599905,-1,-1,-1
168,-1,1672.46,329.433,241.94,589.869,0.995103,-1,-1,-1
168,-1,945.369,330.048,58.261,163.346,0.986047,-1,-1,-1
168,-1,1066.83,308.755,97.97,206.305,0.979136,-1,-1,-1
168,-1,594.785,355.38,61.182,123.599,0.937616,-1,-1,-1
168,-1,294.22,362.158,43.143,122.92,0.857421,-1,-1,-1
168,-1,0.337627,379.263,70.6689,214.368,0.832917,-1,-1,-1
168,-1,168.888,325.861,51.425,121.499,0.802798,-1,-1,-1
168,-1,1527.2,338.783,72.77,193.961,0.754976,-1,-1,-1
168,-1,776.161,334.828,43.722,114.432,0.696343,-1,-1,-1
169,-1,1669.17,292.423,202.33,623.603,0.996039,-1,-1,-1
169,-1,1072.37,323.371,69,197.349,0.987928,-1,-1,-1
169,-1,925.983,334.53,89.017,167.767,0.975044,-1,-1,-1
169,-1,285.922,361.175,48.747,117.597,0.931755,-1,-1,-1
169,-1,165.704,332.018,47.345,111.877,0.888019,-1,-1,-1
169,-1,590.754,343.074,63.956,125.061,0.825013,-1,-1,-1
169,-1,1516.29,337.925,79.77,196.286,0.799329,-1,-1,-1
169,-1,858.922,340.71,40.422,123.084,0.67366,-1,-1,-1
169,-1,115.946,325.252,70.308,143.739,0.631451,-1,-1,-1
170,-1,1645.05,296.076,194.89,585.246,0.996581,-1,-1,-1
170,-1,1074.54,323.403,67.23,176.057,0.991208,-1,-1,-1
170,-1,936.592,341.877,61.346,162.686,0.966723,-1,-1,-1
170,-1,565.827,327.216,73.364,149.457,0.924082,-1,-1,-1
170,-1,110.797,315.824,68.96,149.288,0.831012,-1,-1,-1
170,-1,1502.67,325.297,88.42,208.334,0.818309,-1,-1,-1
170,-1,253.928,358.142,66.197,116.638,0.563669,-1,-1,-1
171,-1,1611.82,299.33,205.32,606.095,0.997363,-1,-1,-1
171,-1,909.112,342.432,72.502,158.682,0.984839,-1,-1,-1
171,-1,1060.28,320.599,75.91,176.838,0.978759,-1,-1,-1
171,-1,570.343,340.706,61.193,134.874,0.961338,-1,-1,-1
171,-1,137.597,338.68,47.319,116.889,0.922433,-1,-1,-1
171,-1,1835.72,306.05,83.28,595.177,0.908562,-1,-1,-1
171,-1,252.525,381.403,48.486,112.676,0.650564,-1,-1,-1
171,-1,845.997,321.518,34.961,125.852,0.567427,-1,-1,-1
172,-1,1615.16,309.961,173.33,555.256,0.997359,-1,-1,-1
172,-1,1822.13,292.403,96.87,626.17,0.98172,-1,-1,-1
172,-1,1046.84,314.277,77.48,204.44,0.978787,-1,-1,-1
172,-1,556.866,336.536,62.272,133.696,0.973764,-1,-1,-1
172,-1,891.421,330.917,92.342,169.94,0.972478,-1,-1,-1
172,-1,110.782,369.979,53.433,99.77,0.85507,-1,-1,-1
172,-1,829.229,336.497,41.972,116.75,0.778016,-1,-1,-1
173,-1,1597.09,263.574,201.23,586.695,0.993726,-1,-1,-1
173,-1,1798.27,268.633,120.73,603.055,0.98906,-1,-1,-1
173,-1,1043.63,309.502,72.93,208.52,0.984162,-1,-1,-1
173,-1,898.515,342.053,55.892,141.863,0.97342,-1,-1,-1
173,-1,538.39,334.274,59.556,140.88,0.918431,-1,-1,-1
173,-1,114.098,348.582,51.786,109.056,0.916885,-1,-1,-1
174,-1,1585,282.518,188.61,587.424,0.997546,-1,-1,-1
174,-1,1796.14,280.2,122.86,591.774,0.990074,-1,-1,-1
174,-1,1032.62,321.156,81.29,183.204,0.987501,-1,-1,-1
174,-1,902.507,358.159,49.396,140.403,0.982319,-1,-1,-1
175,-1,1772.48,258.238,146.52,672.642,0.997817,-1,-1,-1
175,-1,892.135,356.631,58.233,144.681,0.977173,-1,-1,-1
175,-1,1030.57,292.766,86.02,243.923,0.969289,-1,-1,-1
175,-1,1555.44,289.344,231.48,614.068,0.957966,-1,-1,-1
175,-1,528.567,333.563,72.539,156.589,0.939074,-1,-1,-1
175,-1,83.2275,341.761,55.5685,134.012,0.785882,-1,-1,-1
176,-1,1760.84,284.139,158.16,655.795,0.996884,-1,-1,-1
176,-1,1553.08,300.864,219.53,635.389,0.993171,-1,-1,-1
176,-1,892.261,339.953,71.86,168.047,0.991386,-1,-1,-1
176,-1,1031.44,300.901,79.55,222.246,0.989384,-1,-1,-1
176,-1,523.377,334.176,74.44,177.845,0.978121,-1,-1,-1
176,-1,82.8684,367.061,50.9756,97.857,0.90654,-1,-1,-1
176,-1,221.408,363.447,55.069,147.254,0.624697,-1,-1,-1
176,-1,1483.61,329.386,70.68,190.342,0.623503,-1,-1,-1
176,-1,862.349,356.152,57.824,140.172,0.534247,-1,-1,-1
176,-1,803.2,345.89,37.729,112.301,0.50263,-1,-1,-1
177,-1,1746.11,311.414,168.04,600.074,0.997853,-1,-1,-1
177,-1,1551.15,303.249,204.41,617.471,0.995904,-1,-1,-1
177,-1,875.624,341.913,73.689,159.864,0.990338,-1,-1,-1
177,-1,1031.75,305.811,82.3,229.4,0.989525,-1,-1,-1
177,-1,539.54,355.676,63.955,147.875,0.966259,-1,-1,-1
177,-1,78.2778,352.989,57.0472,120.645,0.815938,-1,-1,-1
177,-1,1770.15,292.125,106.87,125.868,0.517994,-1,-1,-1
178,-1,1754.33,302.946,156.82,636.228,0.998096,-1,-1,-1
178,-1,1529.19,288.601,212.06,622.89,0.996421,-1,-1,-1
178,-1,884.346,328.4,67.727,159.424,0.987997,-1,-1,-1
178,-1,1029.76,300.868,80.3,232.776,0.987795,-1,-1,-1
178,-1,525.384,331.735,65.826,162.057,0.981884,-1,-1,-1
178,-1,94.169,372.391,43.655,93.702,0.893615,-1,-1,-1
178,-1,58.5217,350.705,58.1333,117.242,0.857503,-1,-1,-1
178,-1,215.831,367.952,53.108,136.586,0.731233,-1,-1,-1
178,-1,1770.7,287.616,112.46,134.326,0.615912,-1,-1,-1
179,-1,1755.59,279.149,163.41,626.822,0.995931,-1,-1,-1
179,-1,1514.95,313.335,228.41,564.452,0.994993,-1,-1,-1
179,-1,890.636,343.795,61.067,153.481,0.989564,-1,-1,-1
179,-1,1030.23,303.691,82,228.189,0.987207,-1,-1,-1
179,-1,516.601,322.777,82.358,192.749,0.97549,-1,-1,-1
179,-1,206.56,369.666,56.857,107.613,0.756512,-1,-1,-1
179,-1,70.3132,346.216,54.3228,123.771,0.673663,-1,-1,-1
179,-1,1751.82,286.806,160.53,180.892,0.524916,-1,-1,-1
180,-1,1738.82,273.327,180.18,628.222,0.997135,-1,-1,-1
180,-1,1541.82,303.642,189.26,599.124,0.994438,-1,-1,-1
180,-1,1027.49,290.982,90.23,240.891,0.98888,-1,-1,-1
180,-1,516.504,335.443,78.995,163.325,0.981184,-1,-1,-1
180,-1,879.737,352.435,65.836,137.095,0.978912,-1,-1,-1
180,-1,57.6713,347.726,62.2237,120.324,0.885171,-1,-1,-1
180,-1,1775.48,287.243,100.97,114.452,0.756575,-1,-1,-1
180,-1,187.345,350.203,76.808,129.743,0.637927,-1,-1,-1
181,-1,1529.75,304.097,187.28,575.553,0.995862,-1,-1,-1
181,-1,516.895,301.887,64.948,182.679,0.987392,-1,-1,-1
181,-1,1031.23,290.838,85.59,227.104,0.985748,-1,-1,-1
181,-1,1722.41,288.638,193.09,571.337,0.971404,-1,-1,-1
181,-1,864.774,346.202,76.942,150.197,0.971316,-1,-1,-1
181,-1,77.771,366.87,46.192,88.927,0.847691,-1,-1,-1
181,-1,1745.25,276.393,118.55,137.835,0.793718,-1,-1,-1
181,-1,205.142,358.851,58.389,99.31,0.703862,-1,-1,-1
181,-1,791.234,326.779,37.35,91.204,0.671458,-1,-1,-1
181,-1,816.43,325.436,37.706,123.099,0.579915,-1,-1,-1
182,-1,1498.37,293.589,221.85,583.742,0.997426,-1,-1,-1
182,-1,1718.6,278.339,200.15,620.597,0.994308,-1,-1,-1
182,-1,531.182,321.974,69.045,180.405,0.989055,-1,-1,-1
182,-1,1032.51,295.833,77.02,218.808,0.987571,-1,-1,-1
182,-1,879.833,333.03,62.657,143.942,0.981882,-1,-1,-1
182,-1,79.7468,354.502,45.0252,87.196,0.8622,-1,-1,-1
182,-1,802.906,321.524,45.853,121.758,0.664424,-1,-1,-1
182,-1,183.169,353.925,68.992,96.548,0.611569,-1,-1,-1
183,-1,1482.24,289.852,221.83,575.392,0.996284,-1,-1,-1
183,-1,1718.09,282.371,197.57,629.742,0.993709,-1,-1,-1
183,-1,509.771,314.801,91.548,170.672,0.987251,-1,-1,-1
183,-1,1032.07,289.265,76.67,230.158,0.987075,-1,-1,-1
183,-1,878.163,323.453,66.097,162.465,0.950009,-1,-1,-1
183,-1,206.317,330.186,56.379,137.734,0.93258,-1,-1,-1
183,-1,60.7996,332.711,65.5454,107.313,0.887739,-1,-1,-1
184,-1,1506,274.537,172.01,584.098,0.997043,-1,-1,-1
184,-1,1705.82,264.285,197.68,635.366,0.9957,-1,-1,-1
184,-1,524.596,321.136,70.237,154.686,0.988012,-1,-1,-1
184,-1,1030.51,278.578,79.68,243.199,0.984509,-1,-1,-1
184,-1,207.264,342.639,51.491,119.068,0.975294,-1,-1,-1
184,-1,867.716,346.761,78.439,144.446,0.961854,-1,-1,-1
184,-1,68.3302,347.016,54.0008,93.324,0.891685,-1,-1,-1
184,-1,693.118,284.987,54.034,153.232,0.510983,-1,-1,-1
185,-1,1481.49,251.518,201.39,626.483,0.997812,-1,-1,-1
185,-1,1711.51,251.001,200.51,598.684,0.987634,-1,-1,-1
185,-1,530.055,296.929,65.155,173.361,0.987183,-1,-1,-1
185,-1,218.718,337.781,51.139,110.488,0.977673,-1,-1,-1
185,-1,1039.47,292.631,83.02,215.431,0.969203,-1,-1,-1
185,-1,878.711,337.077,64.623,144.167,0.967307,-1,-1,-1
185,-1,59.5143,342.08,65.4637,96.328,0.963804,-1,-1,-1
185,-1,1724.3,266.624,116.67,131.694,0.619991,-1,-1,-1
186,-1,1493.16,264.447,190.07,615.546,0.998553,-1,-1,-1
186,-1,514.876,297.59,67.282,169.219,0.985897,-1,-1,-1
186,-1,1036.52,276.028,82.83,238.639,0.981345,-1,-1,-1
186,-1,876.608,329.808,60.671,164.613,0.971579,-1,-1,-1
186,-1,202.812,347.27,60.291,107.837,0.963918,-1,-1,-1
186,-1,75.211,349.8,51.985,76.02,0.960071,-1,-1,-1
186,-1,1690.12,268.185,186.4,603.319,0.945966,-1,-1,-1
186,-1,1715.6,257.949,117.97,160.443,0.695643,-1,-1,-1
187,-1,1465.5,256.041,200.75,642.4,0.998106,-1,-1,-1
187,-1,516.296,289.368,75.232,179.42,0.982185,-1,-1,-1
187,-1,1052.99,306.734,68.96,181.426,0.970942,-1,-1,-1
187,-1,209.281,349.283,51.103,108.422,0.964235,-1,-1,-1
187,-1,65.5161,339.222,65.8429,103.115,0.961366,-1,-1,-1
187,-1,1686.93,271.635,201.67,592.692,0.959221,-1,-1,-1
187,-1,869.215,349.859,66.671,127.936,0.957847,-1,-1,-1
187,-1,1706.81,258.736,121.49,144.931,0.699512,-1,-1,-1
187,-1,694.757,289.747,54.194,156.831,0.556709,-1,-1,-1
188,-1,1457.11,254.78,201.81,630.29,0.997734,-1,-1,-1
188,-1,71.4937,348.354,43.5423,87.819,0.975161,-1,-1,-1
188,-1,1043.99,278.116,78.03,230.136,0.969803,-1,-1,-1
188,-1,1697.75,275.454,183.82,539.16,0.956255,-1,-1,-1
188,-1,200.912,349.894,64.273,116.222,0.950181,-1,-1,-1
188,-1,867.544,347.94,59.631,112.117,0.940992,-1,-1,-1
188,-1,498.879,305.919,89.931,168.139,0.939862,-1,-1,-1
188,-1,698.994,305.832,50.608,132.807,0.795392,-1,-1,-1
188,-1,1701.47,265.093,127.05,164.203,0.505851,-1,-1,-1
189,-1,1472.93,273.597,173.8,622.335,0.996825,-1,-1,-1
189,-1,492.568,273.434,96.323,204.317,0.984169,-1,-1,-1
189,-1,1051.77,305.991,67.37,205.269,0.981013,-1,-1,-1
189,-1,199.02,333.416,70.93,127.699,0.975025,-1,-1,-1
189,-1,875.396,339.401,76.495,143.409,0.971137,-1,-1,-1
189,-1,61.782,341.966,59.963,74.607,0.932701,-1,-1,-1
189,-1,1695.35,293.294,195.39,575.378,0.901156,-1,-1,-1
189,-1,1706.92,262.05,118.17,154.244,0.710953,-1,-1,-1
189,-1,712.016,287.159,52.65,130.098,0.528677,-1,-1,-1
190,-1,1450.48,270.033,209.02,618.984,0.99603,-1,-1,-1
190,-1,493.335,314.492,84.737,172.864,0.98345,-1,-1,-1
190,-1,213.487,349.62,59.791,127.799,0.97608,-1,-1,-1
190,-1,1055.21,294.529,67.05,222.969,0.975696,-1,-1,-1
190,-1,876.882,336.162,57.774,153.239,0.974881,-1,-1,-1
190,-1,71.3746,333.742,64.4534,101.78,0.968127,-1,-1,-1
190,-1,1689.89,329.391,206.9,483.15,0.920377,-1,-1,-1
190,-1,1709.46,281.513,121.04,155.311,0.570663,-1,-1,-1
191,-1,1428.31,276.641,235.8,622.47,0.994537,-1,-1,-1
191,-1,1031.03,289.858,112.09,241.235,0.992054,-1,-1,-1
191,-1,503.224,303.161,85.027,168.956,0.980046,-1,-1,-1
191,-1,873.672,336.457,58.788,160.265,0.974976,-1,-1,-1
191,-1,203.373,320.931,55.457,133.356,0.954463,-1,-1,-1
191,-1,70.1215,356.861,42.7385,79.786,0.952446,-1,-1,-1
191,-1,1679.17,326.956,175.03,438.153,0.932094,-1,-1,-1
191,-1,1685.46,275.222,117.91,189.126,0.643369,-1,-1,-1
191,-1,693.957,318.702,48.063,123.93,0.601083,-1,-1,-1
192,-1,1422.41,310.211,240.56,583.127,0.997185,-1,-1,-1
192,-1,1039.28,293.435,86.04,228.912,0.990802,-1,-1,-1
192,-1,212.317,334.019,50.832,125.983,0.978033,-1,-1,-1
192,-1,864.574,341.24,67.6,140.385,0.974168,-1,-1,-1
192,-1,61.2547,326.747,51.8353,112.443,0.972022,-1,-1,-1
192,-1,502.753,322.397,68.998,148.303,0.967268,-1,-1,-1
192,-1,1661.2,287.898,220.88,560.576,0.727527,-1,-1,-1
192,-1,1092.38,304.87,52.99,204.543,0.570401,-1,-1,-1
192,-1,1689.52,285.628,111.51,145.931,0.545973,-1,-1,-1
192,-1,844.782,345.098,45.755,127.004,0.506611,-1,-1,-1
193,-1,1414.61,302.774,227.98,621.664,0.996709,-1,-1,-1
193,-1,1033.8,300.617,114.74,229.418,0.991793,-1,-1,-1
193,-1,871.085,335.996,62.26,160.827,0.97017,-1,-1,-1
193,-1,496.272,297.322,89.51,192.523,0.95435,-1,-1,-1
193,-1,74.146,342.806,34.625,79.021,0.910557,-1,-1,-1
193,-1,1663.57,346.547,215.83,438.772,0.873981,-1,-1,-1
193,-1,205.04,329.289,56.941,122.053,0.856276,-1,-1,-1
193,-1,695.214,309.788,50.051,140.668,0.703789,-1,-1,-1
193,-1,756.906,308.056,37.976,122.579,0.638412,-1,-1,-1
194,-1,1409.74,296.215,215.27,611.435,0.997418,-1,-1,-1
194,-1,1041.16,306.53,89.02,221.837,0.992231,-1,-1,-1
194,-1,496.769,302.177,81.15,159.854,0.97446,-1,-1,-1
194,-1,1625.25,330.19,242.21,541.649,0.974058,-1,-1,-1
194,-1,859.155,338.058,70.995,138.328,0.972989,-1,-1,-1
194,-1,211.784,328.566,60.132,127.066,0.830167,-1,-1,-1
194,-1,72.622,350.851,34.312,77.503,0.820476,-1,-1,-1
194,-1,843.82,349.391,45.335,108.113,0.676023,-1,-1,-1
194,-1,89.9311,353.183,37.2719,84.133,0.658392,-1,-1,-1
194,-1,695.096,308.138,49.878,143.037,0.554346,-1,-1,-1
195,-1,1389.42,290.405,217.96,635.148,0.995367,-1,-1,-1
195,-1,1034.61,309.956,120.37,239.674,0.993075,-1,-1,-1
195,-1,869.861,339.309,69.816,153.622,0.974016,-1,-1,-1
195,-1,1615.52,300.854,243.07,622.188,0.858955,-1,-1,-1
195,-1,505.597,307.214,69.505,165.312,0.790957,-1,-1,-1
195,-1,203.828,321.554,68.725,125.421,0.772741,-1,-1,-1
195,-1,1665.82,319.342,119.3,161.203,0.513249,-1,-1,-1
195,-1,838.523,345.425,51.994,134.891,0.504711,-1,-1,-1
196,-1,1389.59,312.098,202.36,631.347,0.996872,-1,-1,-1
196,-1,1064.55,291.962,104.08,253.123,0.987109,-1,-1,-1
196,-1,861.705,354.351,68.079,140.435,0.953852,-1,-1,-1
196,-1,1617.39,325.583,229.05,585.247,0.918385,-1,-1,-1
196,-1,899.514,350.249,48.574,115.478,0.91094,-1,-1,-1
196,-1,501.427,308.536,86.031,168.407,0.85075,-1,-1,-1
196,-1,837.003,351.172,42.16,116.95,0.701959,-1,-1,-1
196,-1,724.944,317.282,41.118,127.787,0.701507,-1,-1,-1
196,-1,215.184,324.377,62.419,118.314,0.695107,-1,-1,-1
197,-1,1375.99,293.009,240.25,663.891,0.998461,-1,-1,-1
197,-1,1050.73,313.579,104.64,244.854,0.985321,-1,-1,-1
197,-1,869.421,345.13,64.606,148.322,0.972427,-1,-1,-1
197,-1,1625.25,336.225,207.25,520.032,0.969692,-1,-1,-1
197,-1,476.459,284.513,86.376,199.206,0.838048,-1,-1,-1
197,-1,712.343,273.853,65.386,184.256,0.62363,-1,-1,-1
197,-1,836.592,343.904,45.451,136.268,0.549032,-1,-1,-1
198,-1,1391.13,310.51,220.17,627.106,0.997459,-1,-1,-1
198,-1,1602.04,329.35,219.69,583.046,0.982918,-1,-1,-1
198,-1,1063.83,298.789,89.53,269.429,0.975053,-1,-1,-1
198,-1,874.672,350.783,56.057,131.612,0.950358,-1,-1,-1
198,-1,503.008,289.847,79.246,218.354,0.939934,-1,-1,-1
198,-1,230.048,337.229,53.203,108.517,0.929647,-1,-1,-1
198,-1,699.261,318.911,55.169,139.3,0.818623,-1,-1,-1
198,-1,787.625,346.292,51.548,100.419,0.67887,-1,-1,-1
198,-1,835.646,331.868,43.51,141.949,0.587583,-1,-1,-1
199,-1,1376.51,315.831,218.91,598.945,0.998143,-1,-1,-1
199,-1,508.326,303.156,79.211,180.81,0.982862,-1,-1,-1
199,-1,1068.77,313.984,80.25,252.04,0.980706,-1,-1,-1
199,-1,1609.8,324.496,239.9,534.195,0.961199,-1,-1,-1
199,-1,876.774,355.026,53.766,140.774,0.944769,-1,-1,-1
199,-1,726.606,320.304,50.613,150.999,0.812148,-1,-1,-1
199,-1,220.411,329.897,53.138,104.928,0.766111,-1,-1,-1
199,-1,915.957,331.529,39.907,142.759,0.684163,-1,-1,-1
199,-1,755.269,325.119,45.885,146.801,0.666882,-1,-1,-1
200,-1,1397.63,285.018,197.41,641.734,0.998657,-1,-1,-1
200,-1,1068.81,309.178,88.29,240.311,0.990448,-1,-1,-1
200,-1,502.91,314.956,77.524,162.186,0.987447,-1,-1,-1
200,-1,1617.12,307.075,220.26,569.47,0.98486,-1,-1,-1
200,-1,227.242,335.638,54.324,123.939,0.972976,-1,-1,-1
200,-1,876.39,355.176,60.052,146.366,0.956137,-1,-1,-1
200,-1,791.176,333.967,46.761,137.165,0.800905,-1,-1,-1
200,-1,914.248,332.732,42.142,141.589,0.79321,-1,-1,-1
200,-1,728.009,322.553,41.096,130.019,0.754526,-1,-1,-1
200,-1,771.305,319.54,38.274,131.644,0.62736,-1,-1,-1
200,-1,387.577,272.408,109.116,291.373,0.520322,-1,-1,-1
201,-1,1368.23,259.371,211.47,687.868,0.997034,-1,-1,-1
201,-1,1076.18,310.778,92.57,251.426,0.992497,-1,-1,-1
201,-1,504.08,329.356,88.119,168.35,0.981498,-1,-1,-1
201,-1,873.713,354.414,59.742,136.135,0.969399,-1,-1,-1
201,-1,1604.29,307.335,251.98,529.44,0.956545,-1,-1,-1
201,-1,908.804,370.211,59.562,128.493,0.537957,-1,-1,-1
202,-1,1094,314.873,85.03,252.342,0.982022,-1,-1,-1
202,-1,873.042,350.658,83.096,154.961,0.978567,-1,-1,-1
202,-1,1385.49,308.49,186.36,591.864,0.973207,-1,-1,-1
202,-1,1596.61,324.258,247.09,591.273,0.970758,-1,-1,-1
202,-1,1644.07,316.05,115.23,113.423,0.810884,-1,-1,-1
203,-1,1387.41,282.078,206.23,671.14,0.997621,-1,-1,-1
203,-1,1092.93,313.376,90.31,271.352,0.992011,-1,-1,-1
203,-1,1612.28,329.332,214.14,650.911,0.985241,-1,-1,-1
203,-1,522.508,345.393,72.14,171.783,0.979885,-1,-1,-1
203,-1,896.231,359.391,68.35,159.794,0.976689,-1,-1,-1
203,-1,256.296,342.963,48.752,121.42,0.932553,-1,-1,-1
203,-1,104.537,367.775,47.642,85.396,0.928398,-1,-1,-1
203,-1,791.233,352.183,49.482,119.967,0.893421,-1,-1,-1
203,-1,862.062,367.169,45.727,135.047,0.718609,-1,-1,-1
203,-1,941.986,380.997,39.109,116.2,0.665332,-1,-1,-1
203,-1,759.319,323.178,59.986,154.942,0.597555,-1,-1,-1
203,-1,732.937,337.474,45.912,149.801,0.563003,-1,-1,-1
204,-1,1374.42,282.03,227.47,683.39,0.996257,-1,-1,-1
204,-1,1114.9,323.377,86.99,250.406,0.992356,-1,-1,-1
204,-1,1634.99,339.762,208.79,686.258,0.97237,-1,-1,-1
204,-1,534.77,349.772,59.552,157.36,0.960414,-1,-1,-1
204,-1,904.391,377.324,57.926,143.606,0.958593,-1,-1,-1
204,-1,269.131,337.982,51.737,135.714,0.908517,-1,-1,-1
204,-1,106.781,365.385,67.184,103.226,0.899742,-1,-1,-1
204,-1,820.73,355.875,41.48,122.228,0.857435,-1,-1,-1
204,-1,735.243,357.155,57.384,137.999,0.831331,-1,-1,-1
204,-1,1649.97,326.64,119.42,133.079,0.705143,-1,-1,-1
204,-1,799.722,344.057,40.597,130.202,0.692259,-1,-1,-1
204,-1,970.134,369.196,47.056,108.25,0.603588,-1,-1,-1
205,-1,1394.8,334.062,205.56,639.87,0.996637,-1,-1,-1
205,-1,1129.93,315.677,75.73,268.088,0.978036,-1,-1,-1
205,-1,910.614,383.899,61.747,141.468,0.958179,-1,-1,-1
205,-1,505.608,319.493,120.548,218.019,0.937077,-1,-1,-1
205,-1,1644.1,334.348,223.65,651.735,0.929529,-1,-1,-1
205,-1,1674.37,331.786,104.6,130.894,0.926266,-1,-1,-1
206,-1,1401.78,362.241,209.27,575.213,0.997538,-1,-1,-1
206,-1,1141.69,328.013,99.9,262.621,0.993828,-1,-1,-1
206,-1,1640.89,349.315,221.94,614.71,0.982359,-1,-1,-1
206,-1,556.871,327.915,67.838,171.313,0.977468,-1,-1,-1
206,-1,928.923,380.803,60.574,132.913,0.97639,-1,-1,-1
206,-1,817.207,363.884,48.753,132.164,0.885627,-1,-1,-1
206,-1,134.554,349.474,62.404,112.408,0.874001,-1,-1,-1
206,-1,1671.18,341.52,119.9,123.823,0.873444,-1,-1,-1
206,-1,843.3,376.616,47.115,118.455,0.843222,-1,-1,-1
206,-1,901.512,378.076,43.002,114.47,0.673407,-1,-1,-1
206,-1,317.672,354.531,60.108,92.816,0.53507,-1,-1,-1
207,-1,1402.75,325.322,198.64,654.523,0.996214,-1,-1,-1
207,-1,1134.38,341.064,130.61,261.723,0.992213,-1,-1,-1
207,-1,558.153,344.408,57.656,176.943,0.977799,-1,-1,-1
207,-1,928.087,377.149,65.712,146.997,0.975582,-1,-1,-1
207,-1,1660.98,377.184,215.15,585.187,0.960683,-1,-1,-1
207,-1,135.06,362.109,58.185,105.683,0.892718,-1,-1,-1
207,-1,828.425,364.965,68.865,125.323,0.858422,-1,-1,-1
207,-1,295.981,343.774,78.014,127.932,0.830877,-1,-1,-1
207,-1,1690.82,345.774,124.58,136.838,0.821207,-1,-1,-1
207,-1,962.979,370.001,51.411,124.668,0.79205,-1,-1,-1
207,-1,988.935,381.722,47.045,87.465,0.657743,-1,-1,-1
207,-1,799.914,348.871,51.615,136.817,0.609541,-1,-1,-1
207,-1,894.627,381.644,47.692,117.368,0.522114,-1,-1,-1
207,-1,766.48,316.96,52.571,169.439,0.517641,-1,-1,-1
208,-1,1626.98,383.511,246.29,582.13,0.995234,-1,-1,-1
208,-1,1404.99,315.02,191.25,687.1,0.994974,-1,-1,-1
208,-1,1172.36,335.398,79.08,269.413,0.990059,-1,-1,-1
208,-1,931.183,362.583,68.066,147.071,0.965574,-1,-1,-1
208,-1,549.804,334.556,70.223,193.448,0.918326,-1,-1,-1
208,-1,139.97,356.347,74.498,109.573,0.917772,-1,-1,-1
208,-1,843.186,332.774,34.754,142.173,0.883166,-1,-1,-1
208,-1,1679.4,345.961,119.85,147.68,0.772594,-1,-1,-1
209,-1,1388.56,305.094,220.21,728.326,0.997324,-1,-1,-1
209,-1,1154.34,332.121,105.38,259.023,0.992121,-1,-1,-1
209,-1,1637.45,402.421,235.44,545.979,0.991001,-1,-1,-1
209,-1,563.262,329.691,67.717,175.967,0.970447,-1,-1,-1
209,-1,149.834,357.112,71.114,100.196,0.951137,-1,-1,-1
209,-1,844.003,369.744,66.037,108.267,0.942844,-1,-1,-1
209,-1,957.659,382.67,58.311,127.731,0.937334,-1,-1,-1
209,-1,326.581,353.389,44.828,115.397,0.913892,-1,-1,-1
209,-1,920.567,392.739,58.427,118.526,0.887758,-1,-1,-1
209,-1,1696.5,335.192,116.66,151.14,0.767617,-1,-1,-1
209,-1,989.199,382.324,52.911,113.943,0.554032,-1,-1,-1
210,-1,1410.88,338.595,194.54,662.365,0.997579,-1,-1,-1
210,-1,1177.05,339.812,95.34,255.03,0.992803,-1,-1,-1
210,-1,913.728,369.317,105.322,163.616,0.978908,-1,-1,-1
210,-1,1659.11,360.976,221.99,600.268,0.976045,-1,-1,-1
210,-1,165.365,353.509,61.635,102.283,0.975964,-1,-1,-1
210,-1,566.063,334.585,76.725,178.381,0.95152,-1,-1,-1
210,-1,847.168,349.24,56.96,133.177,0.937503,-1,-1,-1
210,-1,333.274,351.184,45.517,126.818,0.923621,-1,-1,-1
210,-1,128.226,353.444,68.109,121.131,0.734881,-1,-1,-1
210,-1,985.172,374.926,61.528,129.077,0.599059,-1,-1,-1
211,-1,1679.46,314.121,204.98,651.591,0.997867,-1,-1,-1
211,-1,1414.87,323.722,187.14,681.518,0.995654,-1,-1,-1
211,-1,1182.81,319.914,94.08,281.018,0.9915,-1,-1,-1
211,-1,951.326,366.464,63.164,150.059,0.985528,-1,-1,-1
211,-1,341.307,372.901,58.017,130.849,0.982127,-1,-1,-1
211,-1,576.526,339.966,74.317,168.078,0.97463,-1,-1,-1
211,-1,163.95,345.564,63.479,110.144,0.948808,-1,-1,-1
211,-1,827.337,333.005,59.48,155.105,0.84221,-1,-1,-1
211,-1,1034.56,361.48,43.18,105.709,0.840707,-1,-1,-1
211,-1,861.181,359.355,62.361,111.6,0.814168,-1,-1,-1
211,-1,928.103,376.398,50.931,128.471,0.62158,-1,-1,-1
211,-1,799.624,314.523,42.045,163.84,0.588674,-1,-1,-1
211,-1,1693.8,328.294,134.52,137.437,0.550465,-1,-1,-1
212,-1,1411.06,327.977,203.75,655.335,0.998311,-1,-1,-1
212,-1,1187.53,320.167,97.28,283.244,0.992941,-1,-1,-1
212,-1,1684.46,310.34,216.06,645.796,0.98819,-1,-1,-1
212,-1,957.481,366.129,65.109,151.125,0.982831,-1,-1,-1
212,-1,346.159,369.38,59.052,128.398,0.977707,-1,-1,-1
212,-1,589.151,346.88,65.678,149.215,0.975457,-1,-1,-1
212,-1,168.598,351.007,57.398,101.576,0.940348,-1,-1,-1
212,-1,863.821,333.671,44.222,155.711,0.856788,-1,-1,-1
212,-1,1039.78,356.271,41.68,104.422,0.806804,-1,-1,-1
212,-1,821.905,328.975,52.613,176.509,0.778122,-1,-1,-1
212,-1,1701.24,325.717,129.34,166.017,0.560848,-1,-1,-1
212,-1,933.656,356.624,46.614,129.416,0.547417,-1,-1,-1
212,-1,1012.51,359.498,50.47,126.586,0.5038,-1,-1,-1
213,-1,1402.63,314.683,217.71,675.861,0.998523,-1,-1,-1
213,-1,1200.44,336.473,88.04,278.557,0.992116,-1,-1,-1
213,-1,586.519,354.85,65.749,155.89,0.981447,-1,-1,-1
213,-1,964.942,360.645,63.278,159.764,0.975276,-1,-1,-1
213,-1,349.241,363.327,53.497,119.881,0.973337,-1,-1,-1
213,-1,174.595,351.373,67.904,116.742,0.962408,-1,-1,-1
213,-1,1669.78,321.832,229.01,567.335,0.954935,-1,-1,-1
213,-1,876.38,352.871,47.881,152.988,0.853566,-1,-1,-1
213,-1,1006.96,368.102,43.54,133.54,0.652145,-1,-1,-1
213,-1,806.675,284.353,62.453,206.847,0.636129,-1,-1,-1
213,-1,1027.83,365.089,51.54,123.036,0.59538,-1,-1,-1
214,-1,1401.42,317.974,225.45,655.856,0.998639,-1,-1,-1
214,-1,1193.23,330.931,131.9,275.809,0.991602,-1,-1,-1
214,-1,583.026,358.02,77.343,152.021,0.982474,-1,-1,-1
214,-1,189.956,337.248,64.906,119.957,0.980149,-1,-1,-1
214,-1,943.547,368.08,93.993,166.387,0.975182,-1,-1,-1
214,-1,354.262,364.181,46.838,123.036,0.970867,-1,-1,-1
214,-1,1685.84,340.874,208.96,604.28,0.915511,-1,-1,-1
214,-1,857.917,333.664,50.895,169.908,0.82562,-1,-1,-1
214,-1,156.95,367.72,68.332,93.222,0.778137,-1,-1,-1
215,-1,1391.08,320.3,225.29,632.487,0.998953,-1,-1,-1
215,-1,1214.74,314.814,91.37,298.646,0.992009,-1,-1,-1
215,-1,188.177,347.228,69.676,129.473,0.983161,-1,-1,-1
215,-1,962.289,357.038,64.811,154.921,0.980832,-1,-1,-1
215,-1,354.542,376.549,56.397,108.124,0.952085,-1,-1,-1
215,-1,604.494,359.887,50.022,145.465,0.950385,-1,-1,-1
215,-1,1676.87,304.119,218.27,594.676,0.931303,-1,-1,-1
215,-1,812.875,285.961,59.605,202.114,0.787117,-1,-1,-1
215,-1,876.498,343.249,42.26,156.451,0.718799,-1,-1,-1
215,-1,1695.68,298.329,134.51,172.624,0.523148,-1,-1,-1
216,-1,1404.53,311.014,221.8,699.486,0.994017,-1,-1,-1
216,-1,1221.23,335.232,104.95,280.81,0.993942,-1,-1,-1
216,-1,970.925,357.129,76.585,183.029,0.977821,-1,-1,-1
216,-1,1680.37,304.472,220.77,614.529,0.951319,-1,-1,-1
216,-1,377.347,344.178,64.565,136.982,0.937496,-1,-1,-1
216,-1,202.74,325.429,58.892,136.493,0.783154,-1,-1,-1
216,-1,874.314,306.527,54.22,184.225,0.683233,-1,-1,-1
216,-1,581.718,302.525,90.922,216.51,0.55286,-1,-1,-1
216,-1,818.465,265.341,67.658,240.279,0.541552,-1,-1,-1
217,-1,1375.82,322.377,239.85,676.28,0.998404,-1,-1,-1
217,-1,1239.77,321.545,94.03,289.182,0.994663,-1,-1,-1
217,-1,979.816,368.681,64.004,157.107,0.984605,-1,-1,-1
217,-1,376.31,362.402,56.81,126.363,0.977014,-1,-1,-1
217,-1,599.707,347.608,65.816,153.002,0.974853,-1,-1,-1
217,-1,184.311,346.588,63.414,126.863,0.952277,-1,-1,-1
217,-1,1689.11,322.583,207.29,553.961,0.933569,-1,-1,-1
217,-1,1061.83,369.146,46.38,113.442,0.886025,-1,-1,-1
217,-1,808.672,318.198,56.492,164.088,0.874946,-1,-1,-1
217,-1,887.02,368.626,57.295,110.158,0.800129,-1,-1,-1
217,-1,856.35,330.94,51.448,164.089,0.661778,-1,-1,-1
217,-1,1019.67,371.706,48.46,126.675,0.524844,-1,-1,-1
218,-1,1378.46,339.389,263.77,681.711,0.997388,-1,-1,-1
218,-1,1224.12,341.55,118.16,276.209,0.994203,-1,-1,-1
218,-1,981.86,366.831,67.65,158.993,0.984567,-1,-1,-1
218,-1,1700.08,330.542,175.38,489.328,0.966721,-1,-1,-1
218,-1,388.113,360.211,52.04,113.737,0.947202,-1,-1,-1
218,-1,207.474,338.04,59.586,112.867,0.934675,-1,-1,-1
218,-1,625.408,357.238,61.733,143.309,0.930633,-1,-1,-1
218,-1,897.475,367.425,54.211,104.818,0.833098,-1,-1,-1
218,-1,870.554,352.111,49.506,125.946,0.631688,-1,-1,-1
219,-1,1395.71,337.136,243.16,663.724,0.997754,-1,-1,-1
219,-1,983.739,378.942,62.671,141.287,0.983494,-1,-1,-1
219,-1,592.17,345.426,78.586,157.815,0.970479,-1,-1,-1
219,-1,1241.22,331.344,100.31,307.31,0.967073,-1,-1,-1
219,-1,1691.98,347.417,208.51,517.009,0.944501,-1,-1,-1
219,-1,377.315,358.107,52.681,104.239,0.899673,-1,-1,-1
219,-1,910.651,367.342,51.499,104.814,0.840017,-1,-1,-1
219,-1,199.382,338.686,68.175,124.219,0.833923,-1,-1,-1
219,-1,837.956,319.502,56.237,176.537,0.774054,-1,-1,-1
219,-1,957.336,379.498,52.264,130.139,0.680345,-1,-1,-1
219,-1,1070.4,379.514,41.57,93.875,0.634649,-1,-1,-1
219,-1,891.573,353.107,39.468,133.568,0.616889,-1,-1,-1
220,-1,1380.67,336.954,241.76,671.186,0.998908,-1,-1,-1
220,-1,986.528,372.618,62.352,144.705,0.981954,-1,-1,-1
220,-1,1258.14,334.068,91.34,310.514,0.97974,-1,-1,-1
220,-1,603.322,330.549,68.8,174.8,0.972411,-1,-1,-1
220,-1,1680.02,348.072,219.47,543.862,0.962772,-1,-1,-1
220,-1,201.03,347.322,66.367,119.903,0.958221,-1,-1,-1
220,-1,910.515,356.867,35.775,122.268,0.877741,-1,-1,-1
220,-1,372.96,355.125,54.085,111.969,0.810667,-1,-1,-1
220,-1,826.021,317.583,53.468,156.651,0.710247,-1,-1,-1
220,-1,961.989,362.545,41.561,134.039,0.562684,-1,-1,-1
221,-1,1366.32,312.98,245.5,739.24,0.998021,-1,-1,-1
221,-1,607.788,344.75,70.548,172.282,0.971903,-1,-1,-1
221,-1,999.926,388.428,77.804,138.29,0.969592,-1,-1,-1
221,-1,1657.89,355.638,220.52,640.346,0.965124,-1,-1,-1
221,-1,1272.72,312.398,85.91,313.775,0.961737,-1,-1,-1
221,-1,202.734,340.841,63.544,124.321,0.956906,-1,-1,-1
221,-1,907.081,352.511,37.198,132.528,0.884287,-1,-1,-1
221,-1,821.95,292.185,69.392,194.2,0.884147,-1,-1,-1
221,-1,374.53,349.945,56.154,98.837,0.700968,-1,-1,-1
222,-1,1368.85,290.326,246.14,758.514,0.997686,-1,-1,-1
222,-1,996.183,381.962,66.897,151.941,0.981172,-1,-1,-1
222,-1,615.119,327.749,61.652,173.35,0.976565,-1,-1,-1
222,-1,1291.97,318.525,95.91,339.457,0.958312,-1,-1,-1
222,-1,210.085,334.057,60.554,111.742,0.947851,-1,-1,-1
222,-1,1659.75,329.08,250.49,681.95,0.945398,-1,-1,-1
222,-1,374.464,338.499,56.302,118.709,0.869698,-1,-1,-1
222,-1,890.819,364.021,57.006,113.444,0.839267,-1,-1,-1
222,-1,827.658,319.836,58.228,162.505,0.831868,-1,-1,-1
222,-1,1703.5,333.647,124.51,171.891,0.688312,-1,-1,-1
222,-1,1070.74,377.485,40.2,112.507,0.656712,-1,-1,-1
222,-1,180.31,358.653,52.443,83.595,0.589553,-1,-1,-1
222,-1,857.738,373.169,58.58,113.465,0.561625,-1,-1,-1
223,-1,1375.27,307.56,228.69,728.26,0.997645,-1,-1,-1
223,-1,1284.24,326.935,91.57,309.365,0.978349,-1,-1,-1
223,-1,607.515,331.468,77.531,206.027,0.976418,-1,-1,-1
223,-1,1656.79,337.603,203.21,687.147,0.971542,-1,-1,-1
223,-1,385.783,349.742,66.134,119.121,0.951722,-1,-1,-1
223,-1,205.836,332.745,63.27,124.629,0.9422,-1,-1,-1
223,-1,998.382,374.112,58.328,152.955,0.927361,-1,-1,-1
223,-1,828.257,298.627,68.08,187.507,0.904931,-1,-1,-1
223,-1,893.097,337.169,57.855,152.777,0.863749,-1,-1,-1
223,-1,177.524,355.062,56.632,87.773,0.613154,-1,-1,-1
223,-1,1066.28,367.657,40.99,115.384,0.512863,-1,-1,-1
223,-1,1670.7,333.326,177.16,211.351,0.510789,-1,-1,-1
224,-1,1364.62,332.599,249.38,695.381,0.998211,-1,-1,-1
224,-1,1641.49,323.111,248.91,652.744,0.984754,-1,-1,-1
224,-1,623.817,334.435,58.548,163.218,0.978955,-1,-1,-1
224,-1,1282.48,330.569,86.7,305.734,0.978825,-1,-1,-1
224,-1,997.132,362.763,58.328,163.86,0.971029,-1,-1,-1
224,-1,393.301,354.95,61.41,112.914,0.960075,-1,-1,-1
224,-1,203.085,353.49,60.787,114.914,0.934087,-1,-1,-1
224,-1,844.834,318.322,57.463,160.705,0.86155,-1,-1,-1
224,-1,900.543,353.444,55.845,115.457,0.807441,-1,-1,-1
224,-1,1687.75,332.104,143.53,169.615,0.514708,-1,-1,-1
225,-1,1353.19,312.409,248.57,702.331,0.998817,-1,-1,-1
225,-1,1642.72,331.012,225.46,661.758,0.98452,-1,-1,-1
225,-1,396.396,352.967,54.527,114.459,0.972795,-1,-1,-1
225,-1,1000.21,370.356,56.44,149.613,0.957338,-1,-1,-1
225,-1,1279.6,317.868,106.79,316.393,0.956673,-1,-1,-1
225,-1,625.166,345.801,58.593,143.625,0.951762,-1,-1,-1
225,-1,825.664,344.811,61.983,143.44,0.908277,-1,-1,-1
225,-1,224.491,326.001,63.39,138.408,0.884544,-1,-1,-1
225,-1,898.089,364.585,60.814,113.299,0.863832,-1,-1,-1
226,-1,1357.64,326.786,245.43,683.964,0.995795,-1,-1,-1
226,-1,1625.92,319.766,250.3,639.818,0.992319,-1,-1,-1
226,-1,998.521,381.382,59.919,145.857,0.977196,-1,-1,-1
226,-1,409.387,351.84,51.786,124.162,0.973028,-1,-1,-1
226,-1,619.395,340.422,61.736,152.538,0.969622,-1,-1,-1
226,-1,1283.24,321.837,120.88,364.935,0.968661,-1,-1,-1
226,-1,206.674,329.778,61.309,125.004,0.946053,-1,-1,-1
226,-1,900.054,361.956,60.544,106.638,0.810759,-1,-1,-1
226,-1,831.321,333.024,57.024,146.183,0.797338,-1,-1,-1
226,-1,855.892,376.281,68.764,117.27,0.713462,-1,-1,-1
227,-1,1336.46,315.912,273.18,715.758,0.994976,-1,-1,-1
227,-1,1622.96,342.655,268.3,560.043,0.988683,-1,-1,-1
227,-1,1001.64,369.438,65.8,156.458,0.986134,-1,-1,-1
227,-1,1292.12,319.596,136.44,340.487,0.962636,-1,-1,-1
227,-1,227.473,325.679,64.189,128.434,0.958301,-1,-1,-1
227,-1,827.158,314.349,65.037,163.087,0.947268,-1,-1,-1
227,-1,612.981,355.77,77.362,147.212,0.937687,-1,-1,-1
227,-1,398.772,348.278,67.563,114.328,0.814147,-1,-1,-1
227,-1,1099.68,363.893,39.22,104.557,0.772952,-1,-1,-1
227,-1,875.422,335.924,45.621,149.677,0.613883,-1,-1,-1
228,-1,1346.5,298.152,257.02,674.559,0.995632,-1,-1,-1
228,-1,627.133,361.856,55.587,144.327,0.98213,-1,-1,-1
228,-1,1619.54,310.437,243.16,679.93,0.977158,-1,-1,-1
228,-1,997.118,384.31,73.302,116.465,0.976574,-1,-1,-1
228,-1,413.896,357.126,48.487,111.591,0.946116,-1,-1,-1
228,-1,211.753,328.61,63.597,116.728,0.942106,-1,-1,-1
228,-1,1298.29,288.796,132.59,385.579,0.926717,-1,-1,-1
228,-1,1101.01,364.813,38.52,94.622,0.898026,-1,-1,-1
228,-1,836.781,285.574,69.046,205.754,0.836085,-1,-1,-1
228,-1,895.615,365.915,63.819,110.497,0.655828,-1,-1,-1
229,-1,1341.21,321.781,238.33,646.831,0.993435,-1,-1,-1
229,-1,1626.16,327.897,238.62,619.273,0.983246,-1,-1,-1
229,-1,617.485,335.791,53.393,183.383,0.982465,-1,-1,-1
229,-1,998.981,381.343,74.789,119.244,0.976671,-1,-1,-1
229,-1,220.698,325.87,58.218,127.644,0.933234,-1,-1,-1
229,-1,1104.62,363.839,35.04,95.841,0.905301,-1,-1,-1
229,-1,1299.39,295.502,125.31,395.631,0.898317,-1,-1,-1
229,-1,838.678,307.433,61.912,187.836,0.858461,-1,-1,-1
229,-1,406.537,360.737,52.364,111.969,0.787807,-1,-1,-1
229,-1,894.328,366.949,68.23,114.221,0.751881,-1,-1,-1
229,-1,934.236,370.114,54.93,112.895,0.585644,-1,-1,-1
230,-1,1351.83,323.203,244.83,669.88,0.997406,-1,-1,-1
230,-1,1633.05,325.553,254.72,618.482,0.987578,-1,-1,-1
230,-1,1022.99,356.377,56.87,146.629,0.982609,-1,-1,-1
230,-1,629.806,333.807,66.247,183.537,0.902364,-1,-1,-1
230,-1,820.728,345.253,72.523,140.328,0.797868,-1,-1,-1
230,-1,1331.25,308.325,126.12,418.766,0.708605,-1,-1,-1
230,-1,867.029,344.003,53.002,140.155,0.669214,-1,-1,-1
230,-1,1673.17,322.308,146.93,158.674,0.55107,-1,-1,-1
231,-1,1363.97,313.772,235.1,670.369,0.994056,-1,-1,-1
231,-1,1629.49,355.368,237.41,650.792,0.992069,-1,-1,-1
231,-1,1013.79,370.833,69.05,153.925,0.986216,-1,-1,-1
231,-1,608.537,324.934,76.464,202.2,0.984073,-1,-1,-1
231,-1,227.141,342.035,53.494,108.743,0.916373,-1,-1,-1
231,-1,423.223,325.652,54.999,133.831,0.819862,-1,-1,-1
231,-1,1098.47,372.99,66.91,96.262,0.79708,-1,-1,-1
231,-1,888.368,365.392,67.688,125.975,0.704384,-1,-1,-1
231,-1,939.56,358.673,42.695,137.601,0.634888,-1,-1,-1
231,-1,852.953,332.889,55.655,146.731,0.604324,-1,-1,-1
232,-1,1343.13,279.11,259.72,716.422,0.995451,-1,-1,-1
232,-1,1643.48,339.822,228.38,668.168,0.986841,-1,-1,-1
232,-1,1019.99,366.209,65.98,156.444,0.981414,-1,-1,-1
232,-1,622.075,318.226,82.145,201.329,0.954588,-1,-1,-1
232,-1,872.454,349.111,80.891,153.335,0.827802,-1,-1,-1
232,-1,454.657,334.041,67.252,165.485,0.721485,-1,-1,-1
232,-1,1119.4,365.43,40.7,104.675,0.595474,-1,-1,-1
232,-1,837.689,323.613,67.345,162.706,0.538253,-1,-1,-1
232,-1,427.235,344.482,69.4,94.078,0.532235,-1,-1,-1
232,-1,1675.41,328.199,141.63,144.916,0.523986,-1,-1,-1
233,-1,1344.31,298.272,255.56,681.311,0.995036,-1,-1,-1
233,-1,1636.09,315.504,209.21,658.349,0.992941,-1,-1,-1
233,-1,614.035,320.224,82.963,200.443,0.98789,-1,-1,-1
233,-1,1027.48,361.934,59.52,147.22,0.9724,-1,-1,-1
233,-1,231.651,352.864,56.06,92.349,0.914795,-1,-1,-1
233,-1,1130.63,363.259,43.79,85.133,0.780454,-1,-1,-1
233,-1,864.263,351.471,54.593,135.66,0.710283,-1,-1,-1
233,-1,938.82,354.923,41.623,143.554,0.705577,-1,-1,-1
233,-1,1115.76,356.788,34.9,120.712,0.669527,-1,-1,-1
233,-1,452.849,333.197,66.75,149.807,0.592415,-1,-1,-1
234,-1,1345.67,301.962,237.94,651.863,0.997617,-1,-1,-1
234,-1,1644.1,312.327,229.11,668.009,0.996512,-1,-1,-1
234,-1,630.412,329.16,79.9,184.776,0.977084,-1,-1,-1
234,-1,1029.9,350.951,61.67,148.184,0.964307,-1,-1,-1
234,-1,875.166,333.823,56.406,144.518,0.899756,-1,-1,-1
234,-1,257.836,340.842,53.599,97.29,0.814947,-1,-1,-1
234,-1,935.533,336.922,39.519,123.458,0.729678,-1,-1,-1
234,-1,440.911,329.258,56.448,133.214,0.729131,-1,-1,-1
234,-1,1136.77,351.102,40.91,88.533,0.626481,-1,-1,-1
234,-1,472.781,341.43,57.615,103.002,0.591704,-1,-1,-1
234,-1,834.522,348.815,71.286,137.229,0.563812,-1,-1,-1
235,-1,1648.87,323.956,219.46,653.987,0.998917,-1,-1,-1
235,-1,1344.9,307.952,268.74,670.55,0.997942,-1,-1,-1
235,-1,1010.5,356.446,94.08,157.174,0.984899,-1,-1,-1
235,-1,629.406,305.067,67.565,224.501,0.984645,-1,-1,-1
235,-1,1127.35,354.299,49.24,92.432,0.887513,-1,-1,-1
235,-1,259.607,327.33,55.182,118.854,0.870332,-1,-1,-1
235,-1,924.522,324.38,53.297,168.544,0.773702,-1,-1,-1
235,-1,876.513,312.943,56.615,170.668,0.735973,-1,-1,-1
235,-1,473.374,321.275,57.834,128.804,0.677249,-1,-1,-1
235,-1,5.22963,352.548,61.9807,181.87,0.617843,-1,-1,-1
235,-1,238.978,333.533,48.928,72.847,0.533224,-1,-1,-1
236,-1,1636.83,316.44,249.15,685.53,0.997349,-1,-1,-1
236,-1,1365.68,302.416,231.24,686.571,0.996205,-1,-1,-1
236,-1,1024.85,345.859,70.81,157.932,0.989243,-1,-1,-1
236,-1,650.439,323.325,64.64,170.017,0.985772,-1,-1,-1
236,-1,5.72248,356.555,60.6679,174.121,0.971368,-1,-1,-1
236,-1,261.249,337.016,56.46,96.193,0.904405,-1,-1,-1
236,-1,958.975,338.595,62.545,131.418,0.83056,-1,-1,-1
236,-1,929.19,335.195,55.817,135.098,0.828856,-1,-1,-1
236,-1,1132.4,349.726,46.56,99.65,0.820107,-1,-1,-1
236,-1,464.634,302.82,60.082,165.489,0.689008,-1,-1,-1
236,-1,842.184,340.511,65.736,127.825,0.680473,-1,-1,-1
237,-1,1378.6,281.713,230.42,699.599,0.997148,-1,-1,-1
237,-1,1662.88,303.846,228.51,684.758,0.99175,-1,-1,-1
237,-1,635.406,325.541,84.793,160.238,0.988502,-1,-1,-1
237,-1,1028.62,349.242,73.78,157.594,0.98644,-1,-1,-1
237,-1,943.051,337.382,55.097,138.743,0.867213,-1,-1,-1
237,-1,461.261,310.065,62.291,153.912,0.831437,-1,-1,-1
237,-1,868.154,336.269,60.346,135.637,0.814096,-1,-1,-1
237,-1,1141.62,335.827,43.18,119.485,0.800141,-1,-1,-1
237,-1,258.181,321.627,61.442,115.216,0.798088,-1,-1,-1
237,-1,10.4229,361.262,57.8099,152.177,0.790105,-1,-1,-1
238,-1,1365.15,290.521,227.59,672.426,0.996901,-1,-1,-1
238,-1,643.976,321.779,76.978,160.758,0.989031,-1,-1,-1
238,-1,1629.63,265.69,241.94,757.56,0.98733,-1,-1,-1
238,-1,1050.39,343.834,69.03,134.917,0.981941,-1,-1,-1
238,-1,490.836,325.177,62.23,120.997,0.906387,-1,-1,-1
238,-1,1127.22,348.88,53.96,94.82,0.875839,-1,-1,-1
238,-1,940.644,321.236,55.102,150.121,0.837663,-1,-1,-1
238,-1,259.999,313.078,60.001,128.943,0.808719,-1,-1,-1
238,-1,1007.19,341.371,68.78,142.361,0.727745,-1,-1,-1
238,-1,851.406,306.008,70.054,168.205,0.648042,-1,-1,-1
238,-1,6.63064,358.599,55.0547,151.767,0.630196,-1,-1,-1
238,-1,897.195,282.795,62.69,182.59,0.552916,-1,-1,-1
239,-1,1353.65,272.959,240.39,722.476,0.998552,-1,-1,-1
239,-1,1623.83,284.666,269.95,734.114,0.994606,-1,-1,-1
239,-1,645.76,322.381,76.506,160.667,0.988216,-1,-1,-1
239,-1,1034.6,341.85,69.66,155.238,0.987889,-1,-1,-1
239,-1,5.70795,333.289,59.9451,186.834,0.93535,-1,-1,-1
239,-1,495.259,318.644,64.95,120.685,0.910719,-1,-1,-1
239,-1,849.952,318.083,75.811,145.978,0.877852,-1,-1,-1
239,-1,248.829,307.883,59.975,124.886,0.849676,-1,-1,-1
239,-1,1127.45,354.172,49.01,93.327,0.818229,-1,-1,-1
239,-1,948.133,323.18,60.517,131.126,0.808661,-1,-1,-1
239,-1,908.163,314.369,51.595,138.842,0.633928,-1,-1,-1
240,-1,1365.34,271.286,221.52,695.078,0.997569,-1,-1,-1
240,-1,1656.21,276.331,227.18,677.429,0.990702,-1,-1,-1
240,-1,636.159,297.468,65.509,220.449,0.986371,-1,-1,-1
240,-1,1039.58,333.261,66.69,158.946,0.986032,-1,-1,-1
240,-1,4.69311,347.003,67.3861,177.189,0.958165,-1,-1,-1
240,-1,256.658,297.206,57.118,117.477,0.925557,-1,-1,-1
240,-1,942.463,319.212,59.637,148.323,0.862472,-1,-1,-1
240,-1,1143.26,343.94,38.08,109.613,0.844466,-1,-1,-1
240,-1,851.598,327.948,55.269,118.504,0.747578,-1,-1,-1
240,-1,916.544,315.587,50.615,139.191,0.687421,-1,-1,-1
240,-1,499.516,296.949,63.005,138.523,0.682247,-1,-1,-1
241,-1,1372.06,273.597,242.81,691.917,0.998815,-1,-1,-1
241,-1,644.272,312.258,75.904,195.378,0.987805,-1,-1,-1
241,-1,1664.76,279.457,228.25,737.183,0.985176,-1,-1,-1
241,-1,2.57921,340.039,59.451,193.525,0.976283,-1,-1,-1
241,-1,259.829,314.199,62.36,113.944,0.956083,-1,-1,-1
241,-1,1053.02,330.387,67.1,153.719,0.949807,-1,-1,-1
241,-1,499.3,310.862,62.236,140.612,0.936758,-1,-1,-1
241,-1,884.857,320.811,71.813,150.834,0.911312,-1,-1,-1
241,-1,935.784,326.271,57.777,145.047,0.868509,-1,-1,-1
241,-1,1150.03,347.008,39.52,103.535,0.769143,-1,-1,-1
242,-1,1375.56,283.808,222.86,701.577,0.998793,-1,-1,-1
242,-1,654.537,307.956,71.74,185.895,0.985525,-1,-1,-1
242,-1,1057.58,342.212,59.94,150.504,0.982022,-1,-1,-1
242,-1,1643.48,277.733,238.79,720.148,0.974014,-1,-1,-1
242,-1,1.83421,317.02,68.8071,213.632,0.9668,-1,-1,-1
242,-1,491.869,309.69,58.614,148.742,0.942521,-1,-1,-1
242,-1,892.755,303.857,64.983,155.476,0.918682,-1,-1,-1
242,-1,1156.14,333.535,40.02,91.026,0.915709,-1,-1,-1
242,-1,932.125,323.423,56.53,147.031,0.887342,-1,-1,-1
242,-1,264.118,317.824,55.662,116.267,0.774829,-1,-1,-1
243,-1,1369.14,261.853,251.01,735.53,0.997963,-1,-1,-1
243,-1,3.42948,324.323,78.6392,195.635,0.988404,-1,-1,-1
243,-1,651.38,319.329,72.662,167.945,0.986174,-1,-1,-1
243,-1,1058.37,343.592,65.71,146.454,0.985891,-1,-1,-1
243,-1,1666.79,307.161,240.14,644.595,0.976148,-1,-1,-1
243,-1,486.475,300.901,75.327,146.402,0.933449,-1,-1,-1
243,-1,898.656,299.515,79.341,165.804,0.905523,-1,-1,-1
243,-1,258.846,342.038,60.782,76.571,0.881137,-1,-1,-1
243,-1,1159.74,340.078,36.1,95.971,0.868018,-1,-1,-1
243,-1,956.095,317.814,46.225,154.869,0.82869,-1,-1,-1
244,-1,1378.49,257.086,250.19,743.134,0.998304,-1,-1,-1
244,-1,1058.6,338.636,59.15,122.894,0.969552,-1,-1,-1
244,-1,660.987,290.438,72.364,214.302,0.945029,-1,-1,-1
244,-1,1646.67,287.195,253.44,625.69,0.941752,-1,-1,-1
244,-1,917.974,258.13,74.023,212.575,0.853013,-1,-1,-1
244,-1,9.6188,332.812,63.2329,154.851,0.776216,-1,-1,-1
244,-1,272.33,298.769,71.062,124.652,0.6581,-1,-1,-1
245,-1,1356.31,261.541,267.62,755.609,0.998605,-1,-1,-1
245,-1,642.062,302.387,83.409,202.669,0.980667,-1,-1,-1
245,-1,1052.19,352.159,68.96,114.82,0.973669,-1,-1,-1
245,-1,8.49853,335.451,70.157,171.542,0.967108,-1,-1,-1
245,-1,1644.18,277.186,260.72,701.003,0.949628,-1,-1,-1
245,-1,891.52,273.49,66.718,200.349,0.788688,-1,-1,-1
245,-1,930.139,254.939,65.54,228.445,0.743157,-1,-1,-1
245,-1,955.411,335.242,63.889,127.612,0.562073,-1,-1,-1
246,-1,1349.14,250.874,290.58,757.626,0.997391,-1,-1,-1
246,-1,1080.45,328.12,56.81,150.592,0.988011,-1,-1,-1
246,-1,1649.67,315.855,260.93,662.737,0.986683,-1,-1,-1
246,-1,655.517,318.697,71.968,175.613,0.979561,-1,-1,-1
246,-1,9.04907,325.133,72.5363,199.662,0.979041,-1,-1,-1
246,-1,516.557,303.422,70.645,129.518,0.960812,-1,-1,-1
246,-1,279.891,303.745,54.64,119.506,0.907205,-1,-1,-1
246,-1,1167.1,340.12,41.58,106.86,0.905975,-1,-1,-1
246,-1,246.934,293.32,54.442,121.379,0.782604,-1,-1,-1
246,-1,946.727,314.491,46.473,136.076,0.740452,-1,-1,-1
246,-1,485.92,305.243,60.159,102.614,0.731656,-1,-1,-1
246,-1,886.82,318.005,69.83,131.946,0.680992,-1,-1,-1
246,-1,182.589,294.928,63.742,70.133,0.588124,-1,-1,-1
247,-1,1365.29,244.315,267.03,759.135,0.995829,-1,-1,-1
247,-1,1081.39,333.335,56.03,148.494,0.989893,-1,-1,-1
247,-1,644.225,290.382,84.499,205.351,0.986172,-1,-1,-1
247,-1,5.35637,326.21,72.7813,192.581,0.981785,-1,-1,-1
247,-1,1676.73,286.309,227.17,645.947,0.977315,-1,-1,-1
247,-1,510.446,299.551,72.431,137.613,0.953124,-1,-1,-1
247,-1,1160.4,345.08,45.86,96.179,0.865916,-1,-1,-1
247,-1,951.524,314.616,58.726,157.823,0.862547,-1,-1,-1
247,-1,248.1,296.699,52.855,123.423,0.794185,-1,-1,-1
247,-1,880.381,310.563,72.444,140.46,0.719399,-1,-1,-1
247,-1,284.123,313.418,55.086,97.997,0.680766,-1,-1,-1
247,-1,1526.11,286.084,67.7,332.736,0.506584,-1,-1,-1
248,-1,1360.8,263.643,274.86,770.087,0.996624,-1,-1,-1
248,-1,1072.38,337.664,58.07,141.022,0.992971,-1,-1,-1
248,-1,1664.09,319.515,250.09,690.395,0.986428,-1,-1,-1
248,-1,646.767,304.007,85.173,197.664,0.986162,-1,-1,-1
248,-1,3.65272,310.128,79.0918,226.7,0.982945,-1,-1,-1
248,-1,525.867,294.347,65.745,108.735,0.913244,-1,-1,-1
248,-1,1159.33,336.282,49.76,107.335,0.871247,-1,-1,-1
248,-1,963.223,296.378,57.917,165.94,0.852714,-1,-1,-1
248,-1,240.884,323.328,55.651,117.136,0.810539,-1,-1,-1
248,-1,273.438,305.332,56.443,130.567,0.795683,-1,-1,-1
248,-1,1532.55,291.588,74.93,351.926,0.754145,-1,-1,-1
248,-1,906.771,286.716,66.972,171.258,0.740757,-1,-1,-1
248,-1,492.324,318.049,74.298,136.54,0.585393,-1,-1,-1
249,-1,1360.84,279.504,279.09,736.506,0.996706,-1,-1,-1
249,-1,1069.99,340.224,69.93,163.327,0.99369,-1,-1,-1
249,-1,655.069,324.525,77.288,177.509,0.991827,-1,-1,-1
249,-1,5.97777,307.039,87.0393,233.196,0.988767,-1,-1,-1
249,-1,1637.85,300.12,274.5,715.81,0.988047,-1,-1,-1
249,-1,530.384,288.339,63.577,118.606,0.938159,-1,-1,-1
249,-1,959.527,312.336,42.093,155.439,0.88392,-1,-1,-1
249,-1,1526.73,287.897,86.95,317.992,0.857633,-1,-1,-1
249,-1,1162.04,339.936,48,104.203,0.856645,-1,-1,-1
249,-1,987.536,312.393,38.994,144.695,0.834259,-1,-1,-1
249,-1,272.532,306.595,59.259,121.093,0.806973,-1,-1,-1
249,-1,922.933,305.75,47.726,150.244,0.749335,-1,-1,-1
249,-1,246.879,294.503,53.056,124.116,0.749123,-1,-1,-1
249,-1,498.495,297.123,61.528,124.991,0.67696,-1,-1,-1
249,-1,1701.96,335.498,154.63,133.837,0.626641,-1,-1,-1
250,-1,1352.84,258.125,276.08,747.785,0.997635,-1,-1,-1
250,-1,1641.32,311.245,265.52,712.195,0.995172,-1,-1,-1
250,-1,1076.83,337.114,64.7,150.285,0.992332,-1,-1,-1
250,-1,13.6385,315.614,63.4149,206.167,0.991245,-1,-1,-1
250,-1,646.029,300.006,85.004,186.783,0.991038,-1,-1,-1
250,-1,519.442,280.636,80.37,130.836,0.961128,-1,-1,-1
250,-1,963.059,308.338,59.491,147.297,0.932637,-1,-1,-1
250,-1,1169.06,339.867,42.39,91.179,0.835113,-1,-1,-1
250,-1,1544.6,281.374,84.74,332.736,0.776989,-1,-1,-1
250,-1,273.749,288.755,59.505,132.991,0.740423,-1,-1,-1
250,-1,919.923,306.113,45.417,150.017,0.551411,-1,-1,-1
251,-1,1353.38,266.373,279.25,749.627,0.996353,-1,-1,-1
251,-1,1659.03,303.096,234.02,700.154,0.99354,-1,-1,-1
251,-1,18.8697,309.186,81.1893,192.692,0.992716,-1,-1,-1
251,-1,667.707,296.827,76.993,184.568,0.989488,-1,-1,-1
251,-1,1082.81,323.858,65.44,152.239,0.979618,-1,-1,-1
251,-1,1540.61,259.134,115.87,465.819,0.967269,-1,-1,-1
251,-1,515.858,285.427,74.709,134.293,0.956278,-1,-1,-1
251,-1,951.828,325.218,59.612,146.358,0.938108,-1,-1,-1
251,-1,918.538,308.816,55.015,153.372,0.837287,-1,-1,-1
251,-1,1167.8,339.245,63.48,99.666,0.584145,-1,-1,-1
251,-1,1700.48,297.292,135.15,160.342,0.570554,-1,-1,-1
251,-1,276.618,295.986,56.951,128.733,0.558009,-1,-1,-1
252,-1,1349.35,261.56,266.3,756.81,0.99698,-1,-1,-1
252,-1,1665.1,256.047,222.31,748.293,0.992842,-1,-1,-1
252,-1,665.145,293.945,81.49,189.866,0.988959,-1,-1,-1
252,-1,7.71539,305.438,90.4518,187.515,0.986203,-1,-1,-1
252,-1,1088.12,320.59,64.16,162.448,0.977086,-1,-1,-1
252,-1,1539.81,292.058,122.98,395.69,0.948439,-1,-1,-1
252,-1,954.874,311.006,58.286,139.901,0.931452,-1,-1,-1
252,-1,1183.26,331.532,53.06,109.922,0.902127,-1,-1,-1
252,-1,525.431,292.266,67.599,117.904,0.897054,-1,-1,-1
252,-1,275.096,284.133,57.767,120.991,0.847301,-1,-1,-1
252,-1,916.246,293.753,56.172,160.147,0.749162,-1,-1,-1
253,-1,1358.73,271.229,256.76,731.851,0.998145,-1,-1,-1
253,-1,1668.1,263.551,213.07,708.095,0.991401,-1,-1,-1
253,-1,9.14009,307.265,95.8429,203.106,0.986423,-1,-1,-1
253,-1,651.819,291.907,86.512,191.075,0.986113,-1,-1,-1
253,-1,1085.79,323.29,81.39,162.602,0.962965,-1,-1,-1
253,-1,1183.34,326.94,39.78,94.992,0.93895,-1,-1,-1
253,-1,1573.5,260.797,122.32,362.919,0.925119,-1,-1,-1
253,-1,960.417,305.072,61.993,151.25,0.919636,-1,-1,-1
253,-1,503.22,281.366,77.584,139.03,0.907974,-1,-1,-1
253,-1,920.445,298.574,51.401,159.082,0.697483,-1,-1,-1
253,-1,264.206,288.208,63.42,135.302,0.654778,-1,-1,-1
254,-1,1349.16,252.24,250.99,776.69,0.997591,-1,-1,-1
254,-1,1659.05,241.958,220.71,731.405,0.996694,-1,-1,-1
254,-1,677.129,293.915,78.211,200.298,0.984291,-1,-1,-1
254,-1,1086.86,330.594,73.38,158,0.983984,-1,-1,-1
254,-1,18.3905,298.748,83.8465,221.193,0.983689,-1,-1,-1
254,-1,1571.1,253.817,118.31,422.578,0.965169,-1,-1,-1
254,-1,1186.07,326.404,52.93,102.918,0.937773,-1,-1,-1
254,-1,979.893,317.626,45.147,153.811,0.927953,-1,-1,-1
254,-1,268.382,293.275,67.128,140.362,0.919067,-1,-1,-1
254,-1,509.331,287.893,67.441,100.292,0.898678,-1,-1,-1
254,-1,638.004,294.95,75.914,163.219,0.763626,-1,-1,-1
254,-1,923.253,313.152,55.476,148.82,0.721476,-1,-1,-1
255,-1,1346.26,220.398,251.79,763.758,0.997672,-1,-1,-1
255,-1,1678.81,281.804,216.27,702.364,0.996943,-1,-1,-1
255,-1,18.3961,307.11,79.7398,206.624,0.987338,-1,-1,-1
255,-1,671.125,285.007,80.865,220.42,0.986853,-1,-1,-1
255,-1,1086.31,348.712,63.36,122.408,0.968072,-1,-1,-1
255,-1,1604.74,251.183,115.92,343.202,0.962862,-1,-1,-1
255,-1,274.452,298.843,64.062,112.753,0.962177,-1,-1,-1
255,-1,952.947,301.808,71.053,171.005,0.954615,-1,-1,-1
255,-1,511.094,278.191,88.304,133.687,0.946469,-1,-1,-1
255,-1,897.272,274.235,77.02,191.043,0.673438,-1,-1,-1
255,-1,1716.21,299.793,134.18,127.268,0.656198,-1,-1,-1
255,-1,1189.31,322.09,47.34,131.392,0.569254,-1,-1,-1
256,-1,1360.41,251.336,254.66,734.387,0.999002,-1,-1,-1
256,-1,1675.1,278.379,231.12,697.931,0.994858,-1,-1,-1
256,-1,18.1031,322.182,87.1179,189.796,0.990613,-1,-1,-1
256,-1,666.201,276.337,87.773,235.947,0.988971,-1,-1,-1
256,-1,1618.69,245.161,126.72,457.683,0.976094,-1,-1,-1
256,-1,1092.7,318.403,83.53,167.122,0.974576,-1,-1,-1
256,-1,955.994,282.321,77.136,163.195,0.957026,-1,-1,-1
256,-1,1197.58,340.471,45.33,109.657,0.949119,-1,-1,-1
256,-1,278.416,307.692,65.137,108.653,0.941424,-1,-1,-1
256,-1,924.821,309.569,60.127,146.266,0.770837,-1,-1,-1
256,-1,512.318,280.39,74.01,118.931,0.653587,-1,-1,-1
256,-1,1741.42,276.541,113.67,138.271,0.622,-1,-1,-1
256,-1,1567.97,425.776,91.05,305.903,0.530809,-1,-1,-1
257,-1,1360.28,245.334,244.89,723.118,0.998534,-1,-1,-1
257,-1,1653.68,263.358,249.98,701.995,0.997134,-1,-1,-1
257,-1,22.7977,311.268,73.3818,202.243,0.991836,-1,-1,-1
257,-1,664.101,286.336,77.907,227.133,0.987604,-1,-1,-1
257,-1,290.862,301.077,54.858,129.076,0.977467,-1,-1,-1
257,-1,1100.11,326.022,60.18,140.39,0.964939,-1,-1,-1
257,-1,1201.9,323.354,42.85,116.966,0.93112,-1,-1,-1
257,-1,961.517,291.013,73.313,172.13,0.913976,-1,-1,-1
257,-1,1630.86,246.655,138.71,426.118,0.725392,-1,-1,-1
257,-1,925.427,297.938,68.811,161.413,0.533424,-1,-1,-1
258,-1,1371.46,274.565,241.57,730.905,0.996742,-1,-1,-1
258,-1,1647.03,262.207,265.66,616.219,0.995421,-1,-1,-1
258,-1,670.512,261.404,120.584,239.722,0.78736,-1,-1,-1
258,-1,1087.11,277.459,93.73,206.529,0.775707,-1,-1,-1
259,-1,1377.18,257.204,243.95,695.488,0.998696,-1,-1,-1
259,-1,1681.05,251.445,220.9,738.751,0.996851,-1,-1,-1
259,-1,25.4587,322.694,57.6716,177.654,0.991761,-1,-1,-1
259,-1,668.55,287.872,80.944,221.167,0.988512,-1,-1,-1
259,-1,1102.15,319.495,59.83,153.189,0.983604,-1,-1,-1
259,-1,277.64,297.338,65.805,143.297,0.971242,-1,-1,-1
259,-1,1647.78,239.682,133.47,542.787,0.88779,-1,-1,-1
259,-1,985.601,299.567,47.369,147.547,0.884297,-1,-1,-1
259,-1,1209.96,327.155,40,115.745,0.866397,-1,-1,-1
259,-1,1773.51,283.528,119.77,134.862,0.600882,-1,-1,-1
259,-1,920.995,276.898,69.991,181.848,0.585486,-1,-1,-1
260,-1,1370.73,259.843,255.18,735.618,0.997333,-1,-1,-1
260,-1,1687.16,206.223,217.23,825.997,0.997315,-1,-1,-1
260,-1,17.9907,319.665,90.1833,193.412,0.994678,-1,-1,-1
260,-1,663.69,291.72,95.43,182.96,0.992996,-1,-1,-1
260,-1,1117.38,319.995,60.9,157.661,0.982447,-1,-1,-1
260,-1,272.972,315.178,68.871,127.503,0.964962,-1,-1,-1
260,-1,979.516,313.407,66.354,139.436,0.93998,-1,-1,-1
260,-1,1208.46,323.462,40.39,126.881,0.766602,-1,-1,-1
260,-1,1232.77,304.264,38.67,102.569,0.746459,-1,-1,-1
260,-1,496.267,295.747,79.321,114.664,0.707724,-1,-1,-1
261,-1,1688.51,226.387,230.49,737.385,0.998067,-1,-1,-1
261,-1,1398.28,254.206,247.42,714.632,0.997987,-1,-1,-1
261,-1,37.0803,316.846,87.2887,191.402,0.995934,-1,-1,-1
261,-1,713.306,284.153,65.779,201.1,0.98467,-1,-1,-1
261,-1,1116.52,323.046,66.17,118.715,0.974194,-1,-1,-1
261,-1,997.702,299.926,45.848,154.179,0.947167,-1,-1,-1
261,-1,275.439,291.838,63.225,127.606,0.921114,-1,-1,-1
261,-1,1230.43,322.365,38.71,107.776,0.91281,-1,-1,-1
261,-1,956.18,295.21,58.12,156.426,0.686059,-1,-1,-1
261,-1,544.019,273.358,72.329,137.479,0.651791,-1,-1,-1
261,-1,1731.13,234.872,126.17,106.48,0.507994,-1,-1,-1
262,-1,1702.48,208.122,210.65,769.311,0.998448,-1,-1,-1
262,-1,1393.28,253.985,271.33,685.916,0.997952,-1,-1,-1
262,-1,46.4494,320.763,61.1266,165.753,0.990918,-1,-1,-1
262,-1,1125.13,325.369,63.02,127.967,0.983322,-1,-1,-1
262,-1,708.346,275.932,71.523,210.357,0.983218,-1,-1,-1
262,-1,975.495,240.232,72.285,218.696,0.894802,-1,-1,-1
262,-1,1228.97,308.095,44.43,104.862,0.848684,-1,-1,-1
262,-1,553.98,288.214,69.238,100.816,0.815517,-1,-1,-1
262,-1,295.794,301.242,63.643,104.772,0.697634,-1,-1,-1
263,-1,1411.06,250.141,267.83,715.552,0.996345,-1,-1,-1
263,-1,1721.19,226.157,197.81,685.665,0.99592,-1,-1,-1
263,-1,38.161,308.67,84.463,181.135,0.995285,-1,-1,-1
263,-1,701.259,294.046,70.087,173.655,0.98753,-1,-1,-1
263,-1,1122.07,320.376,61.66,136.14,0.973595,-1,-1,-1
263,-1,538.091,279.808,64.479,122.512,0.921018,-1,-1,-1
263,-1,981.032,285.426,59.958,165.608,0.920361,-1,-1,-1
263,-1,1220.53,307.398,45.46,104.07,0.825774,-1,-1,-1
263,-1,295.314,283.762,70.319,130.178,0.816582,-1,-1,-1
264,-1,1413.31,242.649,269.04,736.529,0.997443,-1,-1,-1
264,-1,1723.07,212.292,195.93,727.148,0.997278,-1,-1,-1
264,-1,37.525,303.14,81.122,184.024,0.994748,-1,-1,-1
264,-1,702.483,270.828,77.592,219.704,0.988939,-1,-1,-1
264,-1,1144.18,329.171,64.58,130.251,0.985456,-1,-1,-1
264,-1,524.824,271.806,81.66,145.01,0.977419,-1,-1,-1
264,-1,983.514,282.266,67.426,158.758,0.933925,-1,-1,-1
264,-1,1230.18,306.031,44.02,109.92,0.871923,-1,-1,-1
264,-1,298.491,294.507,65.73,105.578,0.863671,-1,-1,-1
264,-1,949.274,304.548,65.936,143.965,0.577141,-1,-1,-1
265,-1,1423.62,230.272,253.3,745.951,0.998071,-1,-1,-1
265,-1,1721.49,140.645,197.51,872.785,0.996272,-1,-1,-1
265,-1,30.8406,298.543,89.4894,200.749,0.994004,-1,-1,-1
265,-1,700.895,268.93,78.62,219.338,0.988971,-1,-1,-1
265,-1,1147.05,298.059,62.17,164.337,0.987147,-1,-1,-1
265,-1,518.539,273.853,82.578,140.23,0.969525,-1,-1,-1
265,-1,950.117,279.986,70.493,166.563,0.958373,-1,-1,-1
265,-1,1222.59,323.729,74.11,91.085,0.931796,-1,-1,-1
265,-1,996.308,290.575,57.322,149.643,0.92206,-1,-1,-1
265,-1,297.474,289.852,61.234,100.578,0.892506,-1,-1,-1
266,-1,1433.1,236.81,267.75,742.922,0.998218,-1,-1,-1
266,-1,1736.84,219.288,182.16,802.732,0.998069,-1,-1,-1
266,-1,36.9457,296.713,75.0393,180.399,0.991877,-1,-1,-1
266,-1,1145.47,296.578,66.16,148.73,0.98828,-1,-1,-1
266,-1,701.601,265.332,82.753,217.62,0.986754,-1,-1,-1
266,-1,945.586,246.534,78.654,223.386,0.943763,-1,-1,-1
266,-1,516.122,265.769,74.436,138.132,0.932276,-1,-1,-1
266,-1,1243.02,304.087,41.92,95.435,0.932032,-1,-1,-1
266,-1,305.243,275.462,58.678,131.422,0.8835,-1,-1,-1
266,-1,992.602,267.473,61.188,170.654,0.878895,-1,-1,-1
266,-1,4.16045,282.083,60.4678,216.561,0.749376,-1,-1,-1
267,-1,1433.3,247.825,250.79,716.175,0.998636,-1,-1,-1
267,-1,1738.42,221.258,180.58,798.532,0.996707,-1,-1,-1
267,-1,37.4273,293.402,75.2057,179.228,0.993919,-1,-1,-1
267,-1,697.784,246.783,70.111,250.613,0.986627,-1,-1,-1
267,-1,1149.61,298.917,64,159.513,0.97701,-1,-1,-1
267,-1,1244.98,307.484,41.55,97.369,0.925993,-1,-1,-1
267,-1,994.26,279.617,60.57,156.001,0.921772,-1,-1,-1
267,-1,309.131,281.194,57.393,121.193,0.90299,-1,-1,-1
267,-1,950.761,272.883,71.439,193.232,0.888826,-1,-1,-1
267,-1,515.989,275.504,76.595,123.866,0.8111,-1,-1,-1
267,-1,549.298,243.778,75.031,125.709,0.79116,-1,-1,-1
268,-1,1451.89,248.055,262.47,712.382,0.998963,-1,-1,-1
268,-1,1755.93,224.146,163.07,793.304,0.994059,-1,-1,-1
268,-1,42.3633,310.731,88.6177,163.302,0.99271,-1,-1,-1
268,-1,697.987,245.74,69.96,243.337,0.987142,-1,-1,-1
268,-1,1148.96,302.817,65.12,151.812,0.97457,-1,-1,-1
268,-1,306.534,267.644,50.679,117.855,0.972994,-1,-1,-1
268,-1,1246.07,301.843,44.22,99.999,0.945644,-1,-1,-1
268,-1,1014.69,292.305,46.33,127.697,0.908948,-1,-1,-1
268,-1,512.369,268.351,82.774,153.893,0.86671,-1,-1,-1
268,-1,974.062,288.912,65.768,150.889,0.768898,-1,-1,-1
268,-1,547.733,245.251,76.02,127.147,0.727319,-1,-1,-1
269,-1,1441.71,235.092,253.21,712.78,0.998619,-1,-1,-1
269,-1,23.5824,298.82,104.797,191.001,0.993658,-1,-1,-1
269,-1,1759.47,202.6,159.53,796.922,0.991328,-1,-1,-1
269,-1,706.771,251.366,78.325,225.977,0.982919,-1,-1,-1
269,-1,1142.02,321.889,80.3,101.885,0.972754,-1,-1,-1
269,-1,1244.33,301.926,46.38,103.318,0.942305,-1,-1,-1
269,-1,981.051,279.972,70.619,158.888,0.942181,-1,-1,-1
269,-1,523.775,269.246,82.175,155.767,0.931685,-1,-1,-1
269,-1,312.691,278.08,55.74,120.736,0.872157,-1,-1,-1
270,-1,1450.98,224.577,280.74,704.121,0.9987,-1,-1,-1
270,-1,1762.93,202.961,156.07,791.504,0.994381,-1,-1,-1
270,-1,35.1613,288.261,70.5307,182.378,0.979702,-1,-1,-1
270,-1,701.91,252.774,74.15,220.018,0.976889,-1,-1,-1
270,-1,993.645,269.964,67.055,165.443,0.963225,-1,-1,-1
270,-1,1144.09,303.2,74.97,147.926,0.957446,-1,-1,-1
270,-1,307.293,283.108,62.918,109.742,0.941732,-1,-1,-1
270,-1,1246.44,298.841,43.53,103.418,0.929476,-1,-1,-1
270,-1,536.978,264.289,80.207,120.76,0.908396,-1,-1,-1
270,-1,948.816,255.874,70.184,182.491,0.610223,-1,-1,-1
271,-1,1447.19,218.542,270.39,746.34,0.998114,-1,-1,-1
271,-1,1759.09,238.597,159.91,761.713,0.995061,-1,-1,-1
271,-1,28.6935,291.539,94.9175,196.884,0.994191,-1,-1,-1
271,-1,708.715,266.712,76.398,214.528,0.984183,-1,-1,-1
271,-1,1142.54,318.852,79.8,117.433,0.977309,-1,-1,-1
271,-1,975.896,271.077,83.484,169.723,0.954256,-1,-1,-1
271,-1,303.78,271.7,57.658,137.564,0.938336,-1,-1,-1
271,-1,1244.16,300.213,45.65,118.3,0.920324,-1,-1,-1
271,-1,509.228,272.956,85.797,127.989,0.664788,-1,-1,-1
271,-1,560.993,272.754,69.379,133.385,0.593594,-1,-1,-1
272,-1,1440.38,242.791,271.49,737.452,0.995221,-1,-1,-1
272,-1,1751.94,253.574,167.06,709.204,0.992287,-1,-1,-1
272,-1,36.8497,301.352,74.4933,197.515,0.986336,-1,-1,-1
272,-1,692.012,263.017,88.941,229.844,0.985141,-1,-1,-1
272,-1,1143.36,305.267,68.68,134.041,0.984975,-1,-1,-1
272,-1,973.187,182.51,89.703,265.67,0.920987,-1,-1,-1
272,-1,1249.45,281.735,44.43,111.037,0.867727,-1,-1,-1
272,-1,296.676,283.733,66.631,115.687,0.819708,-1,-1,-1
272,-1,508.774,268.003,82.98,128.675,0.533093,-1,-1,-1
273,-1,1434.92,241.074,277.26,750.87,0.998386,-1,-1,-1
273,-1,1755.77,238.053,163.23,749.963,0.994972,-1,-1,-1
273,-1,704.301,272.26,77.022,204.836,0.988347,-1,-1,-1
273,-1,42.1416,296.946,65.3264,173.236,0.988194,-1,-1,-1
273,-1,1143.52,317.941,70.07,137.216,0.983249,-1,-1,-1
273,-1,984.46,264.233,69.09,182.28,0.955539,-1,-1,-1
273,-1,528.223,270.798,87.68,143.703,0.939839,-1,-1,-1
273,-1,1243.47,290.158,52.4,109.598,0.865314,-1,-1,-1
273,-1,286.709,278.687,53.821,139.445,0.817728,-1,-1,-1
273,-1,944.937,266.426,68.293,179.292,0.688329,-1,-1,-1
273,-1,502.739,301.204,64.391,130.223,0.538793,-1,-1,-1
274,-1,1437.95,230.329,301.67,753.157,0.997851,-1,-1,-1
274,-1,1762.27,243.006,156.73,740.324,0.995345,-1,-1,-1
274,-1,697.804,260.802,79.359,221.851,0.986883,-1,-1,-1
274,-1,43.7071,302.904,58.9619,178.027,0.985118,-1,-1,-1
274,-1,1139.06,314.801,79.75,141.425,0.985085,-1,-1,-1
274,-1,973.042,253.628,83.258,200.397,0.932241,-1,-1,-1
274,-1,1242.32,301.969,38.85,95.918,0.919211,-1,-1,-1
274,-1,545.093,273.332,64.895,123.565,0.853756,-1,-1,-1
274,-1,286.49,301.697,61.036,90.716,0.825641,-1,-1,-1
274,-1,499.907,270.274,75.079,129.02,0.825499,-1,-1,-1
274,-1,925.413,218.839,73.743,222.757,0.631982,-1,-1,-1
275,-1,1457.16,265.594,265.12,740.836,0.998767,-1,-1,-1
275,-1,1763.52,241.974,155.48,747.544,0.99368,-1,-1,-1
275,-1,20.4976,289.471,81.6284,201.24,0.989669,-1,-1,-1
275,-1,1136.21,306.895,81.2,152.362,0.987954,-1,-1,-1
275,-1,692.354,259.162,98.294,222.262,0.987911,-1,-1,-1
275,-1,284.116,281.974,60.508,125.487,0.954986,-1,-1,-1
275,-1,941.506,234.057,88.694,207.17,0.943352,-1,-1,-1
275,-1,485.371,282.102,84.097,166.511,0.905523,-1,-1,-1
275,-1,1244.53,282.999,46.1,117.601,0.814132,-1,-1,-1
275,-1,990.031,270.08,65.149,153.349,0.695714,-1,-1,-1
275,-1,170.355,218.96,53.183,157.588,0.628453,-1,-1,-1
276,-1,1436.67,241.631,270.77,725.581,0.998256,-1,-1,-1
276,-1,1761.2,225.504,157.8,800.446,0.993419,-1,-1,-1
276,-1,669.226,270.534,94.784,227.845,0.991894,-1,-1,-1
276,-1,26.0955,302.846,82.7585,186.46,0.985218,-1,-1,-1
276,-1,1131.84,294.035,77.77,172.615,0.981052,-1,-1,-1
276,-1,484.859,280.021,74.648,133.938,0.974567,-1,-1,-1
276,-1,282.782,286.278,58.915,110.028,0.94929,-1,-1,-1
276,-1,953.094,233.703,97.126,224.898,0.940944,-1,-1,-1
276,-1,1240.56,295.803,37.47,127.43,0.786625,-1,-1,-1
276,-1,559.961,282.657,65.406,112.925,0.65887,-1,-1,-1
277,-1,1439.46,243.303,269.1,713.344,0.999384,-1,-1,-1
277,-1,1737.59,256.998,181.41,760.752,0.995905,-1,-1,-1
277,-1,7.92861,301.541,73.0169,222.298,0.991934,-1,-1,-1
277,-1,677.21,269.792,67.118,218.773,0.987864,-1,-1,-1
277,-1,1126.66,304.255,72.63,150.798,0.981286,-1,-1,-1
277,-1,481.39,292.229,81.649,142.854,0.937935,-1,-1,-1
277,-1,1218.91,303.506,40.41,111.321,0.912601,-1,-1,-1
277,-1,254.626,308.51,67.504,101.187,0.893383,-1,-1,-1
277,-1,991.868,269.732,50.102,154.484,0.827741,-1,-1,-1
277,-1,940.411,276.096,71.889,160.816,0.825921,-1,-1,-1
277,-1,1245.09,296.568,38.7,103.315,0.708585,-1,-1,-1
277,-1,563.848,291.947,65.085,85.57,0.60531,-1,-1,-1
277,-1,1170.34,306.896,49.96,140.036,0.526416,-1,-1,-1
278,-1,1413.74,240.418,293.21,711.848,0.999431,-1,-1,-1
278,-1,1735.54,236.589,183.46,785.541,0.994402,-1,-1,-1
278,-1,4.77826,303.47,85.1695,203.266,0.989555,-1,-1,-1
278,-1,671.229,268.258,61.675,208.092,0.98629,-1,-1,-1
278,-1,1122.21,299.52,74.3,168.467,0.982801,-1,-1,-1
278,-1,464.651,289.179,86.821,209.317,0.956693,-1,-1,-1
278,-1,260.4,293.79,61.041,128.457,0.92798,-1,-1,-1
278,-1,980.482,293.923,48.718,133.175,0.920718,-1,-1,-1
278,-1,936.738,274.239,76.632,166.92,0.843581,-1,-1,-1
278,-1,1222.26,299.737,39.25,102.052,0.799486,-1,-1,-1
278,-1,498.845,282.311,69.637,117.68,0.728084,-1,-1,-1
278,-1,1165.88,312.215,60.83,134.245,0.566641,-1,-1,-1
279,-1,1406.21,217.383,285.52,755.811,0.999182,-1,-1,-1
279,-1,645.29,274.146,81.176,206.139,0.993191,-1,-1,-1
279,-1,1710.48,209.862,208.52,819.178,0.992956,-1,-1,-1
279,-1,1117.32,303.139,77.58,161.485,0.981926,-1,-1,-1
279,-1,3.30136,305.52,45.413,188.362,0.974792,-1,-1,-1
279,-1,448.43,295.167,86.466,176.99,0.967852,-1,-1,-1
279,-1,915.328,251.4,71.795,185.041,0.9001,-1,-1,-1
279,-1,252.89,280.437,50.439,125.66,0.884297,-1,-1,-1
279,-1,1209.71,298.982,43.94,125.591,0.82728,-1,-1,-1
279,-1,963.257,271.827,58.023,147.375,0.571949,-1,-1,-1
280,-1,1422.59,239.996,273.21,750.129,0.998811,-1,-1,-1
280,-1,1738.46,212.948,180.54,817.002,0.992886,-1,-1,-1
280,-1,644.335,289.905,58.716,195.809,0.989968,-1,-1,-1
280,-1,0,300.825,51.1313,194.124,0.975479,-1,-1,-1
280,-1,1102.91,320.794,95.06,146.801,0.969121,-1,-1,-1
280,-1,450.962,290.166,76.552,225.823,0.958031,-1,-1,-1
280,-1,227.116,315.428,58.799,81.822,0.921167,-1,-1,-1
280,-1,1164.7,297.32,40.03,156.196,0.757905,-1,-1,-1
280,-1,1209.8,305.587,39.11,117.861,0.709095,-1,-1,-1
280,-1,1077.26,315.096,73,112.287,0.705988,-1,-1,-1
280,-1,908.734,256.933,66.951,188.104,0.677694,-1,-1,-1
280,-1,536.618,282.49,57.082,126.078,0.668525,-1,-1,-1
280,-1,969.659,280.534,42.531,123.988,0.636695,-1,-1,-1
280,-1,1782.97,230.708,117.72,159.501,0.621363,-1,-1,-1
281,-1,1402.74,211.102,300.08,729.907,0.998862,-1,-1,-1
281,-1,1700.01,208.208,218.99,769.88,0.996225,-1,-1,-1
281,-1,614.71,260.944,89.007,212.983,0.993141,-1,-1,-1
281,-1,1099.95,305.536,65.34,136.742,0.987926,-1,-1,-1
281,-1,210.645,291.473,58.693,115.793,0.891658,-1,-1,-1
281,-1,428.209,282.45,77.226,228.549,0.885125,-1,-1,-1
281,-1,1196.45,298.085,42.85,109.694,0.848894,-1,-1,-1
281,-1,507.597,281.547,61.649,115.255,0.810629,-1,-1,-1
281,-1,1142.17,302.174,49.81,137.827,0.700193,-1,-1,-1
281,-1,912.312,271.173,56.546,164.075,0.691204,-1,-1,-1
281,-1,962.835,275.439,45.015,141.688,0.60052,-1,-1,-1
282,-1,1394.21,218.906,297.15,702.73,0.998943,-1,-1,-1
282,-1,1696.25,195.629,222.75,774.928,0.995288,-1,-1,-1
282,-1,613.817,268.771,81.606,212.606,0.990177,-1,-1,-1
282,-1,1100.96,303.883,58.95,141.63,0.970402,-1,-1,-1
282,-1,1184.99,289.18,40.36,103.261,0.933153,-1,-1,-1
282,-1,886.592,286.88,65.811,149.401,0.930111,-1,-1,-1
282,-1,418.021,280.337,70.356,138.316,0.912482,-1,-1,-1
282,-1,927.394,285.427,63.127,159.253,0.898938,-1,-1,-1
282,-1,183.166,292.997,57.488,116.25,0.89828,-1,-1,-1
282,-1,1063.02,303.863,55.89,127.069,0.797743,-1,-1,-1
282,-1,499.175,289.988,70.341,93.436,0.791379,-1,-1,-1
282,-1,1150.07,289.332,40.61,130.433,0.502402,-1,-1,-1
283,-1,1385.37,204.796,304.76,757.71,0.99844,-1,-1,-1
283,-1,1702.29,158.307,216.71,849.543,0.996529,-1,-1,-1
283,-1,600.968,245.34,69.523,233.453,0.990438,-1,-1,-1
283,-1,1107.12,309.718,53.47,115.981,0.952322,-1,-1,-1
283,-1,191.044,291.657,63.055,129.478,0.936681,-1,-1,-1
283,-1,1070.39,318.76,66.05,123.707,0.918928,-1,-1,-1
283,-1,930.461,287.924,60.274,146.928,0.914462,-1,-1,-1
283,-1,404.726,287.154,69.929,204.774,0.884418,-1,-1,-1
283,-1,1185.96,294.588,37.19,110.076,0.842138,-1,-1,-1
283,-1,496.803,268.529,69.319,113.692,0.832531,-1,-1,-1
283,-1,881.969,268.933,58.755,155.076,0.801194,-1,-1,-1
284,-1,1403.91,209.046,311.65,706.151,0.998272,-1,-1,-1
284,-1,1698.51,218.56,220.49,733.191,0.994877,-1,-1,-1
284,-1,587.929,271.944,93.352,205.585,0.993922,-1,-1,-1
284,-1,1081.16,290.976,71.43,157.86,0.96139,-1,-1,-1
284,-1,389.202,275.733,69.729,158.395,0.936348,-1,-1,-1
284,-1,195.449,292.578,54.94,130.239,0.894596,-1,-1,-1
284,-1,937.523,280.964,53.606,117.72,0.866725,-1,-1,-1
284,-1,1172.44,297.864,40,119.143,0.816848,-1,-1,-1
284,-1,494.962,275.729,58.124,111.611,0.79515,-1,-1,-1
284,-1,1048.25,304.913,67.51,92.167,0.68568,-1,-1,-1
284,-1,860.616,276.452,65.194,150.035,0.598457,-1,-1,-1
284,-1,1118.23,314.619,69.21,85.264,0.596016,-1,-1,-1
285,-1,1413.57,200.937,291.06,719.591,0.99834,-1,-1,-1
285,-1,1695.21,218.847,223.79,722.86,0.996262,-1,-1,-1
285,-1,580.088,267.511,83.571,210.63,0.989621,-1,-1,-1
285,-1,1076.44,303.067,70.49,133.454,0.972923,-1,-1,-1
285,-1,391.242,288.024,80.794,190.378,0.962609,-1,-1,-1
285,-1,497.073,273.808,56.625,122.152,0.905812,-1,-1,-1
285,-1,941.362,291.107,42.892,104.33,0.886745,-1,-1,-1
285,-1,1168.73,296.692,47.7,123.705,0.87791,-1,-1,-1
285,-1,1037.01,317.207,74.19,105.195,0.857689,-1,-1,-1
285,-1,168.594,315.96,65.989,95.077,0.782828,-1,-1,-1
285,-1,864.919,271.522,57.006,147.264,0.753027,-1,-1,-1
285,-1,900.426,259.546,77.312,166.307,0.541607,-1,-1,-1
286,-1,1402.78,190.892,276.27,734.96,0.99862,-1,-1,-1
286,-1,1695.09,234.837,218.3,732.005,0.994678,-1,-1,-1
286,-1,571.525,277.564,91.363,201.369,0.986878,-1,-1,-1
286,-1,384.733,268.848,78.78,186.67,0.9464,-1,-1,-1
286,-1,1079.51,309.176,52.38,111.802,0.933477,-1,-1,-1
286,-1,844.641,266.895,83.553,166.965,0.909699,-1,-1,-1
286,-1,151.824,286.394,64.293,105.861,0.899109,-1,-1,-1
286,-1,1056.5,320.856,48.01,91.853,0.893442,-1,-1,-1
286,-1,1112.69,305.183,40.31,118.128,0.696247,-1,-1,-1
286,-1,1038.59,300.209,41.91,96.834,0.659916,-1,-1,-1
287,-1,1705.82,209.613,212.89,762.695,0.998319,-1,-1,-1
287,-1,1408.72,223.905,289.72,668.367,0.997952,-1,-1,-1
287,-1,567.03,269.872,102.605,208.343,0.977689,-1,-1,-1
287,-1,1088.36,297.606,49.49,124.028,0.973845,-1,-1,-1
287,-1,154.967,260.526,64.227,169.128,0.92409,-1,-1,-1
287,-1,858.226,235.465,91.563,221.677,0.804761,-1,-1,-1
287,-1,364.526,283.762,86.983,217.597,0.804489,-1,-1,-1
287,-1,1049.34,310.267,60.35,86.754,0.775155,-1,-1,-1
287,-1,1752.67,204.824,127.23,171.766,0.664121,-1,-1,-1
287,-1,1115.18,303.995,45.58,127.737,0.655481,-1,-1,-1
288,-1,1427.1,200.09,267.34,705.807,0.998357,-1,-1,-1
288,-1,1692.05,209.503,225.12,780.471,0.998102,-1,-1,-1
288,-1,564.521,278.513,79.918,191.456,0.992039,-1,-1,-1
288,-1,1077.95,312.445,66.71,108.035,0.96659,-1,-1,-1
288,-1,863.476,288.248,58.22,143.271,0.937226,-1,-1,-1
288,-1,925.515,289.39,60.545,123.012,0.825669,-1,-1,-1
288,-1,354.245,279.3,80.086,244.296,0.821308,-1,-1,-1
288,-1,1159.4,312.202,45.78,98.414,0.791525,-1,-1,-1
288,-1,164.903,275.29,48.833,128.938,0.764232,-1,-1,-1
288,-1,894.412,272.137,55.946,155.602,0.750664,-1,-1,-1
288,-1,1058.98,301.315,38.15,114.434,0.74036,-1,-1,-1
288,-1,1031.23,289.627,44.87,100.755,0.602402,-1,-1,-1
289,-1,1681.21,198.983,237.79,737.898,0.998019,-1,-1,-1
289,-1,1443.52,215.957,257.98,688.845,0.99606,-1,-1,-1
289,-1,554.541,264.588,76.717,187.268,0.966919,-1,-1,-1
289,-1,1086.06,304.138,80.34,127.987,0.946264,-1,-1,-1
289,-1,149.943,248.467,69.224,173.066,0.932065,-1,-1,-1
289,-1,842.137,230.709,110.608,212.009,0.676806,-1,-1,-1
290,-1,1415.97,195.33,257.43,760.076,0.997967,-1,-1,-1
290,-1,1684.72,208.846,234.28,729.777,0.997453,-1,-1,-1
290,-1,351.011,280.856,68.046,198.449,0.974299,-1,-1,-1
290,-1,1068.95,271.708,69.53,148.189,0.972938,-1,-1,-1
290,-1,559.958,270.145,62.111,164.05,0.967712,-1,-1,-1
290,-1,863.09,294.852,59.7,135.659,0.959527,-1,-1,-1
290,-1,153.388,288.689,57.729,106.363,0.916122,-1,-1,-1
290,-1,1049.15,287.754,34,101.874,0.838162,-1,-1,-1
290,-1,918.433,289.726,39.935,123.534,0.800737,-1,-1,-1
290,-1,826.878,296.731,54.846,135.099,0.675844,-1,-1,-1
290,-1,1138.94,291.165,57.82,121.171,0.614793,-1,-1,-1
291,-1,1436.65,215.894,265.04,725.458,0.998199,-1,-1,-1
291,-1,1700.8,191.081,218.2,740.956,0.994556,-1,-1,-1
291,-1,1086.08,300.438,63.76,129.861,0.965349,-1,-1,-1
291,-1,556.386,273.74,70.196,191.171,0.96506,-1,-1,-1
291,-1,857.054,279.648,67.717,157.639,0.960078,-1,-1,-1
291,-1,147.873,275.65,67.828,121.084,0.942291,-1,-1,-1
291,-1,368.457,271.334,71.256,198.786,0.942278,-1,-1,-1
291,-1,917.614,279.636,42.526,132.616,0.861188,-1,-1,-1
291,-1,1031.08,290.619,53.71,129.201,0.783871,-1,-1,-1
291,-1,1151.27,281.586,57.52,110.743,0.576906,-1,-1,-1
292,-1,1446.36,188.157,269.42,697.871,0.998258,-1,-1,-1
292,-1,1719.96,162.308,199.04,814.087,0.991952,-1,-1,-1
292,-1,362.295,240.71,79.349,234.718,0.98457,-1,-1,-1
292,-1,542.899,277.073,75.862,155.09,0.973382,-1,-1,-1
292,-1,1084.07,294.585,70.34,133.461,0.946726,-1,-1,-1
292,-1,852.048,272.29,70.854,162.676,0.937967,-1,-1,-1
292,-1,894.692,278.436,64.117,146.631,0.905418,-1,-1,-1
292,-1,158.888,287.839,56.201,126.938,0.845663,-1,-1,-1
292,-1,1049.69,284.197,42.24,104.137,0.844844,-1,-1,-1
292,-1,1159.11,266.952,61.71,100.53,0.739029,-1,-1,-1
292,-1,526.61,258.569,55.102,122.805,0.654631,-1,-1,-1
293,-1,1462.59,165.933,237.98,748.3,0.998216,-1,-1,-1
293,-1,1706.64,151.36,212.36,794.957,0.994147,-1,-1,-1
293,-1,533.236,259.071,73.23,139.107,0.971649,-1,-1,-1
293,-1,331.872,258.163,80,257.324,0.970913,-1,-1,-1
293,-1,1077.85,285.57,53.86,115.564,0.943566,-1,-1,-1
293,-1,910.776,271.528,47.136,121.995,0.922993,-1,-1,-1
293,-1,855.646,267.068,67.192,153.285,0.922339,-1,-1,-1
293,-1,1113.86,271.381,62.54,137.188,0.911862,-1,-1,-1
293,-1,155.117,284.526,57.287,127.62,0.877511,-1,-1,-1
293,-1,1170.97,264.517,45.86,138.55,0.854692,-1,-1,-1
293,-1,1042.74,274.772,62.73,100.945,0.66239,-1,-1,-1
293,-1,818.275,289.685,70.236,152.75,0.538937,-1,-1,-1
294,-1,1465.73,181.016,253.82,730.221,0.999027,-1,-1,-1
294,-1,1725.49,170.115,193.51,775.427,0.997711,-1,-1,-1
294,-1,337.706,230.253,93.899,281.784,0.972555,-1,-1,-1
294,-1,534.685,257.907,69.728,139.96,0.957408,-1,-1,-1
294,-1,1091.18,273.701,61.21,145.69,0.947465,-1,-1,-1
294,-1,152.184,291.987,64.088,96.959,0.936449,-1,-1,-1
294,-1,855.122,263.233,70.364,145.113,0.927197,-1,-1,-1
294,-1,909.37,262.766,51.945,125.505,0.893255,-1,-1,-1
294,-1,1159.85,266.102,60.74,117.528,0.861458,-1,-1,-1
294,-1,1133.22,269.929,54.36,142.257,0.817319,-1,-1,-1
294,-1,1051.18,273.395,39.52,124.503,0.683371,-1,-1,-1
295,-1,1471.46,183.395,253.68,716.851,0.998259,-1,-1,-1
295,-1,1738,166.733,181,758.775,0.997655,-1,-1,-1
295,-1,336.328,236.1,94.62,263.501,0.97925,-1,-1,-1
295,-1,522.15,240.499,82.196,135.828,0.95982,-1,-1,-1
295,-1,1101.97,278.342,50.3,122.775,0.945547,-1,-1,-1
295,-1,855.439,270.341,69.238,137.876,0.925559,-1,-1,-1
295,-1,147.629,265.097,59.532,136.259,0.920057,-1,-1,-1
295,-1,922.87,257.952,55.852,133.7,0.902257,-1,-1,-1
295,-1,1047.34,274.077,41.78,109.72,0.84825,-1,-1,-1
295,-1,1148.57,269.757,57.07,126.587,0.784895,-1,-1,-1
295,-1,1069.58,269.357,42.78,129.49,0.775725,-1,-1,-1
296,-1,1477.05,162.699,245.85,753.553,0.999036,-1,-1,-1
296,-1,1755.22,149.573,163.78,733.89,0.997551,-1,-1,-1
296,-1,333.851,228.159,94.288,263.938,0.973839,-1,-1,-1
296,-1,512.393,242.074,86.174,147.685,0.972406,-1,-1,-1
296,-1,1100.95,279.749,54.87,119.032,0.960137,-1,-1,-1
296,-1,915.785,257.398,61.673,144.426,0.901853,-1,-1,-1
296,-1,142.394,264.086,59.006,126.529,0.895676,-1,-1,-1
296,-1,1054.24,286.893,46.06,106.63,0.865291,-1,-1,-1
296,-1,850.411,259.023,65.396,154.621,0.845457,-1,-1,-1
296,-1,1140.2,262.418,63.33,131.926,0.835772,-1,-1,-1
296,-1,1165.4,269.731,68.64,84.183,0.663783,-1,-1,-1
296,-1,781.276,262.558,53.727,147.946,0.513052,-1,-1,-1
297,-1,1478.97,145.834,258.99,752.279,0.998681,-1,-1,-1
297,-1,1755.74,116.427,163.26,839.057,0.996799,-1,-1,-1
297,-1,328.723,248.682,103.596,255.118,0.987312,-1,-1,-1
297,-1,1116.48,282.184,51.29,126.988,0.966953,-1,-1,-1
297,-1,513.08,236.028,78.814,172.177,0.949793,-1,-1,-1
297,-1,152.53,264.969,56.137,130.77,0.93974,-1,-1,-1
297,-1,923.77,253.781,54.878,140.243,0.929551,-1,-1,-1
297,-1,1060.1,266.814,36.28,116.771,0.898357,-1,-1,-1
297,-1,846.254,256.473,63.642,160.674,0.875124,-1,-1,-1
297,-1,1146.16,277.638,44.28,110.235,0.806477,-1,-1,-1
297,-1,1180.8,266.44,40.74,114.597,0.784483,-1,-1,-1
298,-1,1490.98,166.979,245.73,732.71,0.997913,-1,-1,-1
298,-1,1750.67,112.184,168.33,838.219,0.996397,-1,-1,-1
298,-1,323.261,231.082,104.257,279.874,0.988187,-1,-1,-1
298,-1,1117.51,285.532,51.77,123.89,0.965241,-1,-1,-1
298,-1,516.8,246.892,76.284,153.676,0.938921,-1,-1,-1
298,-1,923.569,263.444,56.478,132.108,0.934243,-1,-1,-1
298,-1,839.784,263.564,66.087,163.796,0.905084,-1,-1,-1
298,-1,142.249,279.656,55.38,104.297,0.873095,-1,-1,-1
298,-1,1063.23,267.447,52.88,121.866,0.872913,-1,-1,-1
298,-1,1145.58,280.076,44.28,108.976,0.8165,-1,-1,-1
298,-1,1181.83,268.253,41.69,114.234,0.764513,-1,-1,-1
298,-1,874.454,248.694,65.626,153.079,0.689743,-1,-1,-1
299,-1,1489,164.005,261.35,741.505,0.998281,-1,-1,-1
299,-1,1769.65,135.891,149.35,801.784,0.995843,-1,-1,-1
299,-1,342.767,239.624,88.051,257.381,0.984082,-1,-1,-1
299,-1,527.142,249.222,72.995,150.368,0.980437,-1,-1,-1
299,-1,1100.36,270.581,61.61,148.766,0.965659,-1,-1,-1
299,-1,133.494,283.243,60.444,112.972,0.943106,-1,-1,-1
299,-1,916.759,252.859,50.93,129.019,0.914872,-1,-1,-1
299,-1,1059.48,260.507,46.68,118.243,0.911995,-1,-1,-1
299,-1,844.656,239.668,54.432,168.216,0.878315,-1,-1,-1
299,-1,1143.87,284.443,47.99,112.718,0.808393,-1,-1,-1
299,-1,1195.13,270.724,40.39,116.318,0.79113,-1,-1,-1
299,-1,867.043,228.047,74.826,162.751,0.760167,-1,-1,-1
299,-1,1172.12,263.661,40.53,118.634,0.57161,-1,-1,-1
300,-1,1495.28,151.654,240.67,738.248,0.997124,-1,-1,-1
300,-1,1769.04,163.461,149.96,744.94,0.996861,-1,-1,-1
300,-1,502.431,237.16,80.871,167.379,0.981624,-1,-1,-1
300,-1,320.201,232.03,94.768,241.618,0.978715,-1,-1,-1
300,-1,1114.67,269.636,50.6,135.101,0.954357,-1,-1,-1
300,-1,846.09,243.872,64.878,176.142,0.923685,-1,-1,-1
300,-1,1034.16,283,56.45,114.648,0.919246,-1,-1,-1
300,-1,931.661,254.783,39.506,115.318,0.892112,-1,-1,-1
300,-1,129.98,279.57,58.351,110.69,0.879424,-1,-1,-1
300,-1,1064.04,257.796,51.24,129.747,0.85517,-1,-1,-1
300,-1,1147.97,282.344,55.27,113.447,0.799126,-1,-1,-1
300,-1,1194.4,266.573,38.4,112.507,0.748024,-1,-1,-1
301,-1,1482.03,161.669,271.48,752.681,0.997324,-1,-1,-1
301,-1,1760.87,166.792,158.13,775.598,0.994955,-1,-1,-1
301,-1,306.986,212.769,111.736,277.336,0.9863,-1,-1,-1
301,-1,495.203,225.519,88.821,165.242,0.983318,-1,-1,-1
301,-1,1106.97,280.174,65.07,124.657,0.957501,-1,-1,-1
301,-1,129.378,208.714,81.237,183.061,0.95038,-1,-1,-1
301,-1,900.14,240.022,68.324,176.477,0.935745,-1,-1,-1
301,-1,827.236,225.209,71.705,213.768,0.849213,-1,-1,-1
301,-1,1044.08,270.115,58.23,97.527,0.830134,-1,-1,-1
301,-1,1166.78,284.099,38.11,100.596,0.628279,-1,-1,-1
301,-1,1190.96,260.068,44.82,115.75,0.594212,-1,-1,-1
302,-1,1484.63,180.355,275.15,728.043,0.998708,-1,-1,-1
302,-1,1755.99,170.78,163.01,778.93,0.994731,-1,-1,-1
302,-1,302.676,248.94,97.194,231.925,0.993551,-1,-1,-1
302,-1,499.615,243.616,72.804,152.283,0.968603,-1,-1,-1
302,-1,1102.43,266.786,61.49,144.746,0.967248,-1,-1,-1
302,-1,905.248,248.882,71.486,146.866,0.960151,-1,-1,-1
302,-1,832.641,266.896,72.614,160.656,0.95814,-1,-1,-1
302,-1,131.672,256.762,57.471,128.125,0.945029,-1,-1,-1
302,-1,1137.74,286.171,61.96,120.639,0.897856,-1,-1,-1
302,-1,1053.79,259.782,41.38,118.034,0.896473,-1,-1,-1
302,-1,1186.52,275.12,37.46,110.582,0.707254,-1,-1,-1
302,-1,1070.45,284.282,60.94,93.209,0.625242,-1,-1,-1
302,-1,740.87,263.677,54.545,127.723,0.622578,-1,-1,-1
302,-1,1167.82,252.384,37.62,118.79,0.57244,-1,-1,-1
303,-1,1486.08,191.304,268.43,726.79,0.996739,-1,-1,-1
303,-1,298.401,242.32,97.348,236.275,0.996008,-1,-1,-1
303,-1,1773.26,204.565,145.74,704.886,0.993142,-1,-1,-1
303,-1,489.629,237.798,81.142,142.78,0.98154,-1,-1,-1
303,-1,1129.44,290.753,53.23,114.437,0.958462,-1,-1,-1
303,-1,909.223,253.915,62.074,129.07,0.954949,-1,-1,-1
303,-1,822.161,272.652,79.018,150.274,0.936565,-1,-1,-1
303,-1,140.031,247.439,50.92,148.017,0.931319,-1,-1,-1
303,-1,1050.98,272.449,51.87,127.712,0.928851,-1,-1,-1
303,-1,1163.64,258.9,40.23,125.68,0.641356,-1,-1,-1
303,-1,1096.63,263.473,58.3,142.756,0.542677,-1,-1,-1
304,-1,1485.62,200.906,272.98,726.448,0.997323,-1,-1,-1
304,-1,286.43,242.965,103.656,272.375,0.993387,-1,-1,-1
304,-1,1775.54,165.492,143.46,798.324,0.989612,-1,-1,-1
304,-1,483.355,229.886,73.233,144.385,0.977287,-1,-1,-1
304,-1,134.21,263.382,54.397,135.634,0.970337,-1,-1,-1
304,-1,1130.13,286.846,52.37,115.023,0.954025,-1,-1,-1
304,-1,1047.25,271.214,55.17,124.915,0.938107,-1,-1,-1
304,-1,906.108,254.028,64.577,158.879,0.936614,-1,-1,-1
304,-1,835.462,269.893,62.3,162.578,0.906225,-1,-1,-1
304,-1,732.484,288.085,61.867,118.879,0.83116,-1,-1,-1
304,-1,1186.16,267.533,42.35,123.147,0.763276,-1,-1,-1
304,-1,1087.44,269.746,52.59,137.217,0.630997,-1,-1,-1
304,-1,1164.23,254.362,41.26,124.482,0.627366,-1,-1,-1
304,-1,103.409,267.929,53.287,116.742,0.561588,-1,-1,-1
305,-1,1480.41,174.201,255.78,776.537,0.997482,-1,-1,-1
305,-1,274.321,245.143,107.686,225.098,0.991675,-1,-1,-1
305,-1,1773.85,174.734,145.15,810.61,0.991297,-1,-1,-1
305,-1,818.939,266.909,79.074,174.32,0.973606,-1,-1,-1
305,-1,480.52,241.74,71.219,129.57,0.959528,-1,-1,-1
305,-1,1106.84,285.7,55.74,128.441,0.958773,-1,-1,-1
305,-1,908.47,255.813,62.186,144.701,0.943954,-1,-1,-1
305,-1,117.148,262.979,57.106,126.574,0.940459,-1,-1,-1
305,-1,1036.64,285.841,42.04,99.023,0.934443,-1,-1,-1
305,-1,1135.37,271.101,67.09,129.648,0.899254,-1,-1,-1
305,-1,591.115,251.812,59.854,108.287,0.852174,-1,-1,-1
305,-1,1055.87,259.391,49.21,140.114,0.815419,-1,-1,-1
305,-1,735.858,264.876,56.452,126.287,0.757565,-1,-1,-1
305,-1,1187.67,266.404,45.02,130.185,0.713682,-1,-1,-1
306,-1,1774.17,168.709,144.83,818.062,0.99854,-1,-1,-1
306,-1,1467.45,179.525,271.53,786.033,0.997048,-1,-1,-1
306,-1,266.7,236.882,112.243,241.617,0.98035,-1,-1,-1
306,-1,815.712,258.919,86.886,177.681,0.979686,-1,-1,-1
306,-1,472.121,230.34,72.614,144.945,0.962354,-1,-1,-1
306,-1,1119.96,291.817,62.54,124.72,0.956517,-1,-1,-1
306,-1,111.039,276.314,50.31,105.475,0.947239,-1,-1,-1
306,-1,1035.77,278.953,54.67,119.728,0.932481,-1,-1,-1
306,-1,901.103,255.918,44.995,126.761,0.898112,-1,-1,-1
306,-1,578.103,248.323,68.05,127.51,0.890843,-1,-1,-1
306,-1,1158.95,285.321,36.71,101.628,0.836193,-1,-1,-1
306,-1,1087.37,276.391,64.94,114.957,0.699275,-1,-1,-1
306,-1,1186.63,269.605,45.84,121.675,0.597329,-1,-1,-1
306,-1,726.715,256.187,53.28,129.639,0.582346,-1,-1,-1
307,-1,1478.7,204.735,265.92,726.67,0.997863,-1,-1,-1
307,-1,1751.1,168.399,167.9,837.681,0.995115,-1,-1,-1
307,-1,804.185,257.332,73.835,183.7,0.98309,-1,-1,-1
307,-1,455.385,220.621,69.023,132.492,0.977669,-1,-1,-1
307,-1,265.344,245.916,89.688,234.813,0.973677,-1,-1,-1
307,-1,1113.97,277.617,63.39,120.731,0.94565,-1,-1,-1
307,-1,910.443,267.033,53.272,124.441,0.942433,-1,-1,-1
307,-1,90.607,269.129,66.852,102.994,0.941137,-1,-1,-1
307,-1,1028.96,282.066,53.45,105.716,0.938295,-1,-1,-1
307,-1,569.428,249.121,73.072,125.75,0.856049,-1,-1,-1
307,-1,725.841,255.432,51.804,141.293,0.6688,-1,-1,-1
307,-1,1160.88,275.286,40.37,108.697,0.564821,-1,-1,-1
308,-1,1476.57,178.464,261.91,779.807,0.996309,-1,-1,-1
308,-1,1748.16,180.471,170.84,779.925,0.992513,-1,-1,-1
308,-1,242.873,238.25,115.769,234.04,0.980208,-1,-1,-1
308,-1,107.286,251.165,47.198,135.175,0.976234,-1,-1,-1
308,-1,451.154,230.904,67.108,112.777,0.96916,-1,-1,-1
308,-1,807.802,256.487,66.104,171.158,0.967725,-1,-1,-1
308,-1,899.996,254.014,61.273,138.883,0.958038,-1,-1,-1
308,-1,1026.98,281.288,55.87,108.554,0.95654,-1,-1,-1
308,-1,1098.51,289.419,78.9,126.574,0.940934,-1,-1,-1
308,-1,557.433,238.75,72.163,115.307,0.805097,-1,-1,-1
308,-1,704.489,256.746,67.485,139.592,0.587576,-1,-1,-1
308,-1,1052.06,258.354,78.78,151.339,0.505955,-1,-1,-1
309,-1,1451.05,170.283,289.78,742.88,0.993923,-1,-1,-1
309,-1,1760.08,161.764,158.92,853.326,0.992477,-1,-1,-1
309,-1,805.024,257.735,87.958,170.966,0.977244,-1,-1,-1
309,-1,1026.62,282.112,43.48,106.299,0.96467,-1,-1,-1
309,-1,240.053,224.93,114.475,257.852,0.963549,-1,-1,-1
309,-1,80.7735,255.234,64.9745,134.493,0.9571,-1,-1,-1
309,-1,437.577,212.219,58.159,124.918,0.956628,-1,-1,-1
309,-1,1114.66,279.076,54.65,111.828,0.937842,-1,-1,-1
309,-1,900.198,254.828,43.442,132.619,0.932109,-1,-1,-1
309,-1,567.689,242.426,60.288,108.023,0.811356,-1,-1,-1
309,-1,1048.38,260.04,50.39,147.937,0.685845,-1,-1,-1
309,-1,720.94,265.775,49.914,119.879,0.665906,-1,-1,-1
309,-1,1146.62,263.232,55.56,120.554,0.549117,-1,-1,-1
310,-1,1454.32,168.218,253.77,761.618,0.998012,-1,-1,-1
310,-1,1755.28,167.62,163.72,866.82,0.993705,-1,-1,-1
310,-1,795.262,258.656,80.156,181.973,0.980749,-1,-1,-1
310,-1,431.612,217.026,68.209,142.269,0.974244,-1,-1,-1
310,-1,1003.4,283.404,64,103.992,0.968263,-1,-1,-1
310,-1,1093.61,277.825,59.16,134.529,0.956324,-1,-1,-1
310,-1,79.8341,255.786,56.8089,134.569,0.943067,-1,-1,-1
310,-1,895.072,266.025,55.28,140.333,0.915439,-1,-1,-1
310,-1,566.701,236.373,60.083,103.491,0.862275,-1,-1,-1
310,-1,218.31,265.495,77.329,195.329,0.8618,-1,-1,-1
310,-1,1125.95,264.31,56.39,133.536,0.8523,-1,-1,-1
310,-1,259.94,235.024,84.304,225.411,0.661072,-1,-1,-1
311,-1,1479.09,186.852,253.34,735.791,0.994651,-1,-1,-1
311,-1,783.659,254.759,87.521,175.18,0.987593,-1,-1,-1
311,-1,1760.33,113.558,158.67,918.862,0.985963,-1,-1,-1
311,-1,424.954,229.384,80.772,145.581,0.978895,-1,-1,-1
311,-1,1019.09,263.854,53.48,122.904,0.972082,-1,-1,-1
311,-1,59.1099,278.725,77.6141,122.076,0.967132,-1,-1,-1
311,-1,1108.71,280.413,60.19,118.948,0.942487,-1,-1,-1
311,-1,214.576,242.803,104.083,230.03,0.903342,-1,-1,-1
311,-1,549.083,243.073,69.179,110.492,0.89183,-1,-1,-1
311,-1,1080.01,277.964,46.71,126.252,0.87711,-1,-1,-1
311,-1,903.298,264.711,40.438,129.287,0.81747,-1,-1,-1
312,-1,1473.99,176.398,270.09,727.09,0.997714,-1,-1,-1
312,-1,779.22,265.2,85.12,163.98,0.991294,-1,-1,-1
312,-1,1776.14,179.633,142.86,839.177,0.986288,-1,-1,-1
312,-1,65.6594,272.474,63.1966,114.726,0.974765,-1,-1,-1
312,-1,1017.6,267.207,56.9,129.981,0.973874,-1,-1,-1
312,-1,422.658,232.114,83.839,153.587,0.969547,-1,-1,-1
312,-1,1093.64,287.283,56.51,123.765,0.945445,-1,-1,-1
312,-1,1130.23,292.045,42.22,108.641,0.924623,-1,-1,-1
312,-1,221.489,256.692,88.781,206.053,0.821114,-1,-1,-1
312,-1,891.344,276.9,53.043,115.862,0.706453,-1,-1,-1
312,-1,198.318,269.101,60.226,155.083,0.638262,-1,-1,-1
312,-1,565.548,260.846,77.432,166.046,0.618009,-1,-1,-1
312,-1,1050.51,259.176,53.22,135.465,0.601301,-1,-1,-1
312,-1,538.109,247.191,72.535,120.903,0.50014,-1,-1,-1
313,-1,1500.33,191.385,232.82,721.279,0.997868,-1,-1,-1
313,-1,774.099,271.308,81.423,151.634,0.988598,-1,-1,-1
313,-1,1764.26,158.682,154.74,893.198,0.987692,-1,-1,-1
313,-1,58.422,270.596,66.863,130.759,0.982973,-1,-1,-1
313,-1,406.679,246.787,89.478,127.147,0.979214,-1,-1,-1
313,-1,1112.54,275.285,52.06,136.046,0.929014,-1,-1,-1
313,-1,1014.63,278.872,67.07,109.221,0.88766,-1,-1,-1
313,-1,228.205,269.107,99.031,248.741,0.884483,-1,-1,-1
313,-1,197.433,276.24,67.544,168.505,0.748849,-1,-1,-1
313,-1,1139.61,266.967,58.36,132.412,0.616554,-1,-1,-1
314,-1,1499.11,169.622,216.96,755.526,0.9957,-1,-1,-1
314,-1,1779.44,200.682,139.56,782.938,0.99303,-1,-1,-1
314,-1,786.988,269.102,72.566,161.086,0.980304,-1,-1,-1
314,-1,67.6789,266.206,52.9191,143.235,0.950272,-1,-1,-1
314,-1,1102.49,253.474,60.92,171.396,0.890695,-1,-1,-1
314,-1,404.96,249.385,80.229,119.434,0.880699,-1,-1,-1
314,-1,1136.37,274.499,61.56,146.221,0.636193,-1,-1,-1
314,-1,29.5892,262.743,65.4068,129.836,0.552211,-1,-1,-1
315,-1,1486.91,188.558,260.49,732.695,0.99758,-1,-1,-1
315,-1,55.625,283.706,75.266,108.593,0.986135,-1,-1,-1
315,-1,411.172,236.808,72.579,154.356,0.982429,-1,-1,-1
315,-1,1022.38,277.307,53.04,126.626,0.974083,-1,-1,-1
315,-1,771.695,270.591,77.233,155.524,0.969389,-1,-1,-1
315,-1,1782.39,160.707,136.61,866.623,0.963209,-1,-1,-1
315,-1,1118.78,274.683,44.1,147.509,0.954479,-1,-1,-1
315,-1,1153.19,279.751,49.45,128.514,0.752769,-1,-1,-1
315,-1,871.761,270.251,63.346,135.875,0.730982,-1,-1,-1
315,-1,1081.61,280.009,57.82,142.236,0.720948,-1,-1,-1
315,-1,200.501,244.202,99.925,231.771,0.668831,-1,-1,-1
316,-1,1503.09,164.824,245.7,794.823,0.99764,-1,-1,-1
316,-1,395.983,238.265,80.433,140.98,0.981511,-1,-1,-1
316,-1,183.89,275.787,100.505,215.012,0.978893,-1,-1,-1
316,-1,1021.3,274.958,45.87,130.524,0.975104,-1,-1,-1
316,-1,56.7201,292.118,69.9329,109.811,0.971138,-1,-1,-1
316,-1,773.42,271.77,65.925,182.833,0.967446,-1,-1,-1
316,-1,1116.9,293.146,49.4,120.776,0.94369,-1,-1,-1
316,-1,1783.65,258.067,129.5,516.345,0.894051,-1,-1,-1
316,-1,1048.52,267.109,46.81,131.357,0.700608,-1,-1,-1
316,-1,904.411,282.558,43.577,98.729,0.658118,-1,-1,-1
317,-1,1527.78,184.781,237.43,784.832,0.997524,-1,-1,-1
317,-1,784.368,274.064,66.632,192.186,0.987092,-1,-1,-1
317,-1,408.681,245.113,77.123,139.264,0.983647,-1,-1,-1
317,-1,189.917,285.52,89.733,222.296,0.97731,-1,-1,-1
317,-1,1029.63,261.634,45.64,137.796,0.960366,-1,-1,-1
317,-1,1127,278.413,53.64,156.433,0.959633,-1,-1,-1
317,-1,900.676,284.462,45.165,121.062,0.94683,-1,-1,-1
317,-1,76.6974,291.087,44.2226,120.049,0.916526,-1,-1,-1
317,-1,1808.42,241.984,110.03,567.751,0.886411,-1,-1,-1
317,-1,1164.91,273.232,39.18,138.967,0.6573,-1,-1,-1
317,-1,840.837,265.456,47.595,153.946,0.60251,-1,-1,-1
318,-1,1529.8,192.578,234.88,811.282,0.994193,-1,-1,-1
318,-1,772.344,277.185,72.938,174.59,0.990135,-1,-1,-1
318,-1,408.078,241.782,81.272,142.184,0.983728,-1,-1,-1
318,-1,191.008,262.538,90.043,195.092,0.976219,-1,-1,-1
318,-1,1129.15,294.444,52.69,120.614,0.953099,-1,-1,-1
318,-1,1030.69,262.825,61.47,131.158,0.948753,-1,-1,-1
318,-1,64.2356,308.618,66.4214,101.521,0.934025,-1,-1,-1
318,-1,1826.16,290.268,92.84,562.524,0.932223,-1,-1,-1
318,-1,900.539,277.105,51.474,127.905,0.861801,-1,-1,-1
318,-1,1165.41,266.867,42.24,138.659,0.772427,-1,-1,-1
319,-1,1551.93,178.24,247.67,831.38,0.997418,-1,-1,-1
319,-1,189.855,270.074,100.576,240.081,0.991486,-1,-1,-1
319,-1,779.602,276.762,76.588,201.152,0.988002,-1,-1,-1
319,-1,411.453,245.578,75.432,140.705,0.979819,-1,-1,-1
319,-1,1030.81,284.773,59.68,111.406,0.942331,-1,-1,-1
319,-1,1131.43,287.294,51.08,136.393,0.935868,-1,-1,-1
319,-1,897.081,269.121,50.493,144.19,0.927797,-1,-1,-1
319,-1,65.622,281.072,67.455,127.367,0.89099,-1,-1,-1
319,-1,1167.53,290.344,40.9,127.834,0.696693,-1,-1,-1
319,-1,157.615,270.608,58.781,187.974,0.637915,-1,-1,-1
319,-1,1841.6,316.807,76.92,498.796,0.501721,-1,-1,-1
320,-1,1559.12,164.21,213.68,819.693,0.993434,-1,-1,-1
320,-1,779.114,273,77.497,194.475,0.989981,-1,-1,-1
320,-1,406.659,232.132,70.252,155.882,0.981501,-1,-1,-1
320,-1,191.474,281.581,96.48,197.238,0.981249,-1,-1,-1
320,-1,1139.54,285.547,57.23,130.583,0.945126,-1,-1,-1
320,-1,1036.3,290.566,57.68,105.84,0.942848,-1,-1,-1
320,-1,77.1711,289.71,55.4219,127.197,0.927337,-1,-1,-1
320,-1,894.425,258.101,68.103,141.437,0.918541,-1,-1,-1
320,-1,1101.67,287.32,58.77,151.05,0.839207,-1,-1,-1
320,-1,569.597,293.994,61.923,70.698,0.581535,-1,-1,-1
320,-1,1868.09,355.16,50.91,271.812,0.521512,-1,-1,-1
321,-1,1555.32,168.261,246.15,788.69,0.998349,-1,-1,-1
321,-1,781.479,273.637,73.561,190.514,0.990031,-1,-1,-1
321,-1,182.173,259.905,94.985,246.527,0.982172,-1,-1,-1
321,-1,409.164,249.013,70.576,128.286,0.968683,-1,-1,-1
321,-1,1039.73,260.546,59.37,127.42,0.963182,-1,-1,-1
321,-1,1127.24,279.085,62.39,137.543,0.956623,-1,-1,-1
321,-1,79.1621,292.786,55.7319,128.72,0.930931,-1,-1,-1
321,-1,894.886,264.998,48.865,119.472,0.910845,-1,-1,-1
321,-1,1866.16,344.311,52.84,366.951,0.714011,-1,-1,-1
321,-1,1158.78,268.447,72.66,132.157,0.68079,-1,-1,-1
322,-1,1575.19,163.227,234.82,768.006,0.998052,-1,-1,-1
322,-1,198.481,264.909,87.956,195.529,0.979102,-1,-1,-1
322,-1,1052.22,258.493,53.88,133.399,0.976891,-1,-1,-1
322,-1,81.4528,282.84,60.4462,131.62,0.964706,-1,-1,-1
322,-1,1144.59,281.01,66.62,129.921,0.96216,-1,-1,-1
322,-1,409.037,249.183,68.504,123.187,0.956762,-1,-1,-1
322,-1,770.312,272.537,94.369,188.598,0.931484,-1,-1,-1
322,-1,907.294,260.717,56.519,123.35,0.906604,-1,-1,-1
322,-1,1195.64,266.474,40.67,116.352,0.732694,-1,-1,-1
322,-1,835.104,261.998,51.001,170.94,0.638789,-1,-1,-1
322,-1,186.194,240.113,70.878,110.73,0.508775,-1,-1,-1
323,-1,1574.2,157.761,231.16,785.558,0.998202,-1,-1,-1
323,-1,769.213,264.495,75.639,207.003,0.979939,-1,-1,-1
323,-1,1053.56,257.457,53.32,130.077,0.979663,-1,-1,-1
323,-1,414.34,259.347,71.404,103.236,0.97694,-1,-1,-1
323,-1,197.227,268.578,83.922,198.655,0.975093,-1,-1,-1
323,-1,1148.78,289.153,59.68,124.576,0.961706,-1,-1,-1
323,-1,74.0011,282.958,69.3589,136.413,0.94131,-1,-1,-1
323,-1,910.285,263.164,45.134,122.711,0.863055,-1,-1,-1
323,-1,839.747,261.415,50.91,161.122,0.61007,-1,-1,-1
323,-1,568.56,267.605,63.223,69.961,0.540337,-1,-1,-1
323,-1,159.133,257.792,73.902,198.024,0.501977,-1,-1,-1
324,-1,1589.43,143.018,250,764.104,0.997684,-1,-1,-1
324,-1,177.129,257.931,87.6,217.375,0.982986,-1,-1,-1
324,-1,1061.4,251.057,50.6,137.734,0.977847,-1,-1,-1
324,-1,780.877,263.532,63.985,223.454,0.977635,-1,-1,-1
324,-1,399.383,237.487,70.318,128.637,0.977317,-1,-1,-1
324,-1,90.2884,276.248,69.3316,148.719,0.958929,-1,-1,-1
324,-1,1145.68,286.802,53.07,125.109,0.951942,-1,-1,-1
324,-1,1178.68,272.54,52.36,135.961,0.895355,-1,-1,-1
324,-1,916.294,248.644,43.314,113.017,0.806557,-1,-1,-1
324,-1,572.484,248.313,68.413,89.09,0.614511,-1,-1,-1
325,-1,1587.56,150.154,250.38,784.034,0.998396,-1,-1,-1
325,-1,192.889,259.695,84.389,210.25,0.981393,-1,-1,-1
325,-1,393.185,236.075,70.314,136.664,0.977266,-1,-1,-1
325,-1,774.141,258.904,71.07,230.14,0.975948,-1,-1,-1
325,-1,79.5266,274.78,68.2524,144.196,0.952408,-1,-1,-1
325,-1,1153.76,278.863,57.12,126.253,0.948659,-1,-1,-1
325,-1,1057.37,278.318,59.43,123.956,0.93421,-1,-1,-1
325,-1,573.936,246.987,62.541,95.53,0.837849,-1,-1,-1
325,-1,918.698,236.393,44.431,134.352,0.836479,-1,-1,-1
325,-1,1194.91,260.789,41.55,138.343,0.772258,-1,-1,-1
325,-1,1221.09,268.604,44.2,120.204,0.594061,-1,-1,-1
325,-1,155.087,255.732,67.158,197.497,0.57723,-1,-1,-1
326,-1,1603.85,162.295,264.36,780.282,0.998384,-1,-1,-1
326,-1,773.525,249.448,72.817,236.451,0.976338,-1,-1,-1
326,-1,387.774,236.725,77.785,133.194,0.975091,-1,-1,-1
326,-1,191,260.765,88.72,202.856,0.967565,-1,-1,-1
326,-1,1056.11,248.03,60.09,140.123,0.964918,-1,-1,-1
326,-1,1147.2,279.794,63.78,132.095,0.941137,-1,-1,-1
326,-1,69.2209,277.517,70.3801,114.217,0.910935,-1,-1,-1
326,-1,1191.67,271.235,44.23,130.244,0.838201,-1,-1,-1
326,-1,1217.2,264.652,45.17,120.538,0.835266,-1,-1,-1
326,-1,931.886,231.453,57.733,159.321,0.828616,-1,-1,-1
326,-1,566.405,260.897,66.013,80.981,0.694525,-1,-1,-1
326,-1,151.455,259.301,74.835,194.92,0.601209,-1,-1,-1
326,-1,877.495,238.459,66.468,151.105,0.560263,-1,-1,-1
327,-1,1613.88,160.108,271.49,766.167,0.997901,-1,-1,-1
327,-1,176.395,255.034,94.989,249.888,0.98791,-1,-1,-1
327,-1,774.629,243.801,93.481,232.899,0.987338,-1,-1,-1
327,-1,397.543,240.637,72.083,131.834,0.97691,-1,-1,-1
327,-1,1054.83,266.712,60.14,123.096,0.966549,-1,-1,-1
327,-1,1161.39,279.107,53.25,139.674,0.922948,-1,-1,-1
327,-1,928.406,263.922,42.993,108.821,0.893895,-1,-1,-1
327,-1,1192.07,280.879,45.88,122.351,0.888751,-1,-1,-1
327,-1,89.5954,287.204,63.5216,129.554,0.778757,-1,-1,-1
327,-1,863.424,245.045,66.22,130.02,0.778029,-1,-1,-1
327,-1,1217.34,265.378,45.1,114.897,0.757364,-1,-1,-1
327,-1,833.062,262.388,56.391,170.671,0.666137,-1,-1,-1
327,-1,141.542,277.409,75.043,231.897,0.565377,-1,-1,-1
328,-1,1636.6,148.943,269.68,813.594,0.998375,-1,-1,-1
328,-1,758.617,255.705,105.637,240.63,0.994662,-1,-1,-1
328,-1,399.046,244.939,73.879,139.337,0.966966,-1,-1,-1
328,-1,160.838,261.494,86.433,229.936,0.937349,-1,-1,-1
328,-1,1071.76,280.049,52.04,117.651,0.930712,-1,-1,-1
328,-1,1155.92,279.019,64.91,143.832,0.921095,-1,-1,-1
328,-1,81.3452,286.054,61.1448,130.5,0.869238,-1,-1,-1
328,-1,929.463,223.558,53.519,164.13,0.800147,-1,-1,-1
328,-1,57.3947,305.317,52.4773,103.784,0.614199,-1,-1,-1
328,-1,1185.7,266.28,75.21,141.176,0.521055,-1,-1,-1
329,-1,1645.97,178.302,251.73,796.002,0.997959,-1,-1,-1
329,-1,168.733,274.214,97.945,249.758,0.989167,-1,-1,-1
329,-1,763.663,241.742,87.183,225.8,0.984884,-1,-1,-1
329,-1,388.808,244.743,72.905,140.533,0.975409,-1,-1,-1
329,-1,1061.12,255.262,68.5,155.235,0.963218,-1,-1,-1
329,-1,925.842,267.392,50.99,134.714,0.938282,-1,-1,-1
329,-1,1172.4,282.553,64.78,135.225,0.928306,-1,-1,-1
329,-1,1214.7,269.299,56.02,134.859,0.914676,-1,-1,-1
329,-1,1139.71,261.846,60.6,161.233,0.807091,-1,-1,-1
329,-1,87.8762,278.923,62.1938,135.274,0.799273,-1,-1,-1
329,-1,876.77,271.225,54.369,124.337,0.79904,-1,-1,-1
329,-1,120.196,272.681,60.639,187.478,0.681207,-1,-1,-1
330,-1,1652.4,189.711,266.6,791.551,0.999107,-1,-1,-1
330,-1,764.959,235.072,87.632,253.341,0.981685,-1,-1,-1
330,-1,396.048,259.179,81.765,121.611,0.977886,-1,-1,-1
330,-1,158.706,256.345,103.06,232.341,0.974111,-1,-1,-1
330,-1,1071.08,263.494,64.97,144.13,0.97355,-1,-1,-1
330,-1,1164.87,282.518,51.46,126.315,0.94734,-1,-1,-1
330,-1,1196.57,274.595,58.86,125.083,0.935662,-1,-1,-1
330,-1,934.863,265.761,44.684,103.556,0.924916,-1,-1,-1
330,-1,79.7195,297.114,77.5515,118.365,0.891419,-1,-1,-1
330,-1,851.775,267.16,61.669,128.254,0.699218,-1,-1,-1
331,-1,1639.9,169.738,276.8,796.732,0.998879,-1,-1,-1
331,-1,172.373,262.651,85.198,267.437,0.990792,-1,-1,-1
331,-1,770.775,250.851,90.56,221.333,0.987698,-1,-1,-1
331,-1,400.145,239.208,72.326,137.242,0.980454,-1,-1,-1
331,-1,1073.69,264.36,63.32,143.075,0.975247,-1,-1,-1
331,-1,1172.51,283.422,50.3,121.99,0.948574,-1,-1,-1
331,-1,935.282,266.971,47.955,116.866,0.936372,-1,-1,-1
331,-1,1208.23,268.313,60.15,133.908,0.891701,-1,-1,-1
331,-1,97.6056,276.752,61.9104,148.49,0.851124,-1,-1,-1
331,-1,869.233,242.206,63.828,130.176,0.7866,-1,-1,-1
331,-1,1116.45,277.037,41.78,130.352,0.532074,-1,-1,-1
331,-1,134.917,303.598,75.921,184.684,0.507722,-1,-1,-1
332,-1,1646.97,172.699,272.03,791.994,0.999205,-1,-1,-1
332,-1,149.757,259.336,106.982,252.008,0.988295,-1,-1,-1
332,-1,775.065,253.604,84.605,220.715,0.985596,-1,-1,-1
332,-1,383.899,262.047,74.172,100.976,0.976816,-1,-1,-1
332,-1,1077.25,261.661,60.56,143.035,0.975991,-1,-1,-1
332,-1,1180.33,277.427,59.31,142.663,0.955769,-1,-1,-1
332,-1,931.934,242.634,65.013,152.071,0.940687,-1,-1,-1
332,-1,1221.2,282.705,46.72,123.176,0.889805,-1,-1,-1
332,-1,99.3161,272.787,60.7869,159.637,0.758171,-1,-1,-1
333,-1,1642.34,188.46,276.66,810.407,0.998853,-1,-1,-1
333,-1,129.022,255.556,124.459,252.652,0.993986,-1,-1,-1
333,-1,762.302,247.148,82.229,231.778,0.985357,-1,-1,-1
333,-1,386.459,240.121,79.552,145.111,0.980092,-1,-1,-1
333,-1,1090.94,274.056,48.44,112.479,0.974345,-1,-1,-1
333,-1,1181.8,276.316,59.7,143.641,0.955331,-1,-1,-1
333,-1,926.683,248.851,64.493,153.566,0.947187,-1,-1,-1
333,-1,1227.79,277.503,43.96,126.119,0.716186,-1,-1,-1
333,-1,106.875,266.032,54.735,182.662,0.697012,-1,-1,-1
333,-1,540.582,273.734,70.049,99.821,0.507653,-1,-1,-1
334,-1,1653.22,151.434,265.78,874.216,0.999013,-1,-1,-1
334,-1,134.252,277.375,103.495,252.823,0.989888,-1,-1,-1
334,-1,773.469,253.088,80.694,216.147,0.981079,-1,-1,-1
334,-1,383.66,246.981,79.639,136.331,0.978942,-1,-1,-1
334,-1,1088.82,263.731,51.14,123.963,0.973161,-1,-1,-1
334,-1,1185.57,280.345,52.05,139.28,0.96592,-1,-1,-1
334,-1,936.699,257.667,60.06,156.154,0.95284,-1,-1,-1
334,-1,1219.84,290.342,46.91,123.802,0.881013,-1,-1,-1
334,-1,103.172,263.684,71.5,211.487,0.783284,-1,-1,-1
334,-1,82.3245,267.269,49.8565,164.858,0.564679,-1,-1,-1
334,-1,29.362,288.02,44.9856,96.266,0.514341,-1,-1,-1
335,-1,1664.13,155.233,254.87,865.197,0.998857,-1,-1,-1
335,-1,132.93,251.332,92.385,258.261,0.993889,-1,-1,-1
335,-1,376.007,245.254,86.352,145.664,0.983361,-1,-1,-1
335,-1,753.674,283.436,82.637,193.532,0.977129,-1,-1,-1
335,-1,1074.96,255.88,64.2,151.359,0.974667,-1,-1,-1
335,-1,1178.15,284.525,62.54,131.496,0.960179,-1,-1,-1
335,-1,942.793,253.533,54.886,148.861,0.935097,-1,-1,-1
335,-1,1228.04,289.533,42.43,115.82,0.793653,-1,-1,-1
335,-1,81.5613,265.052,46.0747,161.241,0.679093,-1,-1,-1
335,-1,1112.28,265.529,48.94,132.488,0.643294,-1,-1,-1
335,-1,33.5096,287.131,39.3528,99.271,0.558219,-1,-1,-1
336,-1,1672.77,174.146,246.23,809.373,0.99898,-1,-1,-1
336,-1,107.63,264.623,122.606,241.057,0.992682,-1,-1,-1
336,-1,744.232,275.053,88.996,208.539,0.984967,-1,-1,-1
336,-1,375.317,250.2,84.622,142.416,0.980847,-1,-1,-1
336,-1,1180.03,287.67,62.33,138.351,0.973707,-1,-1,-1
336,-1,1074.88,265.745,64.61,145.209,0.972718,-1,-1,-1
336,-1,938.382,258.795,56.576,144.956,0.946966,-1,-1,-1
336,-1,77.1897,267.672,66.3263,172.489,0.685217,-1,-1,-1
336,-1,856.546,246.533,70.422,135.126,0.65037,-1,-1,-1
337,-1,1687.7,175.26,231.3,817.153,0.998299,-1,-1,-1
337,-1,91.6059,245.629,114.403,274.289,0.991014,-1,-1,-1
337,-1,736.578,252.93,91.962,221.047,0.989828,-1,-1,-1
337,-1,362.638,247.669,81.636,133.976,0.978731,-1,-1,-1
337,-1,1170.94,285.483,60.46,140.946,0.975561,-1,-1,-1
337,-1,1078.02,264.382,47.78,131.623,0.968619,-1,-1,-1
337,-1,935.304,251.442,53.771,158.028,0.947365,-1,-1,-1
337,-1,861.835,248.678,63.406,144.188,0.756968,-1,-1,-1
337,-1,55.9442,277.46,62.0998,180.422,0.715801,-1,-1,-1
338,-1,1662.46,200.066,256.54,738.616,0.998461,-1,-1,-1
338,-1,67.1688,249.551,116.886,279.391,0.987648,-1,-1,-1
338,-1,732.521,255.422,78.661,231.155,0.985796,-1,-1,-1
338,-1,381.173,242.881,69.768,137.183,0.978799,-1,-1,-1
338,-1,1156.48,296.865,73.45,124.178,0.975717,-1,-1,-1
338,-1,1074.25,262.771,61.91,139.481,0.961557,-1,-1,-1
338,-1,923.446,281.717,73.444,108.408,0.950458,-1,-1,-1
338,-1,847.476,242.072,54.916,119.659,0.60956,-1,-1,-1
338,-1,29.7383,246.473,77.8897,216.052,0.517021,-1,-1,-1
339,-1,1672.45,189.345,246.55,761.051,0.998922,-1,-1,-1
339,-1,55.4731,266.299,126.7,245.664,0.984103,-1,-1,-1
339,-1,353.66,246.351,81.424,126.181,0.981486,-1,-1,-1
339,-1,727.631,242.391,93.412,255.414,0.97652,-1,-1,-1
339,-1,1054.76,272.002,80.9,137.279,0.973713,-1,-1,-1
339,-1,1170.73,291.101,57.65,143.699,0.972191,-1,-1,-1
339,-1,925.733,280.726,51.468,123.597,0.952399,-1,-1,-1
339,-1,1138.59,294.839,55.06,136.284,0.675211,-1,-1,-1
339,-1,41.3695,286.416,58.6685,167.236,0.644689,-1,-1,-1
340,-1,1689.48,184.829,229.52,796.216,0.996829,-1,-1,-1
340,-1,66.3415,255.474,113.02,265.551,0.994365,-1,-1,-1
340,-1,728.847,233.125,91.206,265.234,0.981841,-1,-1,-1
340,-1,353.357,251.794,88.713,125.055,0.980318,-1,-1,-1
340,-1,1156.22,305.714,61.88,128.12,0.971665,-1,-1,-1
340,-1,1063.11,270.098,61.84,148.787,0.936933,-1,-1,-1
340,-1,1191.59,284.187,49.48,138.67,0.910868,-1,-1,-1
340,-1,929.911,293.341,48.771,118.685,0.836666,-1,-1,-1
340,-1,20.4594,245.308,86.4216,254.486,0.789681,-1,-1,-1
340,-1,841.721,278.899,66.655,108.926,0.557146,-1,-1,-1
341,-1,1691.08,174.776,227.92,808.74,0.997927,-1,-1,-1
341,-1,42.9307,278.75,137.299,262.24,0.990781,-1,-1,-1
341,-1,717.356,239.039,96.064,257.749,0.986817,-1,-1,-1
341,-1,349.338,256.709,90.622,145.541,0.97737,-1,-1,-1
341,-1,1157.61,295.129,79.37,140.83,0.972951,-1,-1,-1
341,-1,1054,282.53,67.36,135.663,0.961926,-1,-1,-1
341,-1,919.881,277.696,56.944,132.589,0.792963,-1,-1,-1
341,-1,9.15534,262.129,80.8698,260.923,0.781035,-1,-1,-1
342,-1,1697,179.755,222,841.295,0.996205,-1,-1,-1
342,-1,43.7646,276.996,101.512,268.372,0.995251,-1,-1,-1
342,-1,701.867,263.307,105.809,237.521,0.987681,-1,-1,-1
342,-1,347.11,286.089,92.78,115.801,0.979913,-1,-1,-1
342,-1,1159.52,296.93,71.77,143.91,0.95384,-1,-1,-1
342,-1,1058.52,281.59,73.96,146.836,0.950666,-1,-1,-1
342,-1,923.29,285.425,45.802,133.126,0.907052,-1,-1,-1
342,-1,587.964,274.721,62.154,112.659,0.770247,-1,-1,-1
342,-1,841.299,290.113,55.851,111.252,0.606121,-1,-1,-1
342,-1,560.962,284.38,51.571,104.149,0.523883,-1,-1,-1
343,-1,1699.82,203.552,219.18,817.708,0.998063,-1,-1,-1
343,-1,702.01,259.391,96.375,235.375,0.988417,-1,-1,-1
343,-1,339.848,264.01,100.869,144.618,0.976757,-1,-1,-1
343,-1,1061.25,313.708,60.08,118.507,0.969572,-1,-1,-1
343,-1,28.8125,274.781,104.083,264.725,0.967515,-1,-1,-1
343,-1,1151.88,306.043,67.32,129.043,0.939036,-1,-1,-1
343,-1,1202.02,310.52,43.52,129.471,0.555285,-1,-1,-1
344,-1,1718.84,229.964,200.16,797.426,0.997368,-1,-1,-1
344,-1,696.252,262.537,105.446,246.523,0.992771,-1,-1,-1
344,-1,14.7785,270.713,123.724,270.792,0.991766,-1,-1,-1
344,-1,340.467,267.836,97.616,131.802,0.979093,-1,-1,-1
344,-1,1073.05,287.26,66.33,134.385,0.95623,-1,-1,-1
344,-1,1152.98,298.299,72.98,145.328,0.955553,-1,-1,-1
344,-1,929.5,314.516,57.446,105.674,0.890128,-1,-1,-1
344,-1,1194.93,294.727,65.56,138.885,0.619546,-1,-1,-1
344,-1,835.734,276.855,65.506,115.486,0.524628,-1,-1,-1
345,-1,1725.04,203.29,193.96,818.11,0.995659,-1,-1,-1
345,-1,13.6228,281.622,108.478,259.844,0.995538,-1,-1,-1
345,-1,692.916,261.003,103.488,255.641,0.989322,-1,-1,-1
345,-1,341.612,285.734,105.307,128.038,0.978017,-1,-1,-1
345,-1,1062.32,305.12,69.67,141.206,0.952701,-1,-1,-1
345,-1,1155.9,304.373,64.35,143.839,0.937702,-1,-1,-1
345,-1,921.775,282.243,41.811,135.653,0.519663,-1,-1,-1
346,-1,1725.23,193.155,193.77,813.705,0.996099,-1,-1,-1
346,-1,8.96955,271.382,114.618,271.877,0.99593,-1,-1,-1
346,-1,685.987,253.73,100.325,268.057,0.987367,-1,-1,-1
346,-1,331.473,275.957,90.357,144.086,0.985573,-1,-1,-1
346,-1,1055.02,297.879,73.17,142.919,0.968625,-1,-1,-1
346,-1,1151.72,309.63,67.5,138.577,0.920859,-1,-1,-1
346,-1,1208.87,310.674,42.89,133.091,0.552403,-1,-1,-1
347,-1,1726.28,186.599,192.72,892.401,0.99535,-1,-1,-1
347,-1,7.77141,270.554,98.7296,297.062,0.992271,-1,-1,-1
347,-1,330.83,269.9,114.848,131.411,0.983638,-1,-1,-1
347,-1,1060.07,285.787,74.92,152.27,0.982309,-1,-1,-1
347,-1,694.779,252.076,103.232,301.656,0.981129,-1,-1,-1
347,-1,1153.36,312.027,69.29,131.553,0.963096,-1,-1,-1
347,-1,917.308,297.62,58.682,146.307,0.7993,-1,-1,-1
347,-1,829.704,293.048,63.248,111.572,0.575287,-1,-1,-1
347,-1,548.093,298.766,65.934,118.933,0.534655,-1,-1,-1
348,-1,1738.46,203.54,180.54,872.57,0.996527,-1,-1,-1
348,-1,0.738144,267.755,81.2445,281.91,0.988636,-1,-1,-1
348,-1,682.967,276.9,111.321,266.905,0.986831,-1,-1,-1
348,-1,335.586,266.122,108.201,153.901,0.979095,-1,-1,-1
348,-1,1055.03,309.599,76.86,155.518,0.964379,-1,-1,-1
348,-1,1156.17,310.391,73.57,135.874,0.942085,-1,-1,-1
348,-1,830.902,287.972,65.451,102.577,0.815066,-1,-1,-1
348,-1,917.989,296.787,46.78,134.457,0.80825,-1,-1,-1
348,-1,555.461,301.236,57.731,106.97,0.713,-1,-1,-1
349,-1,1757.71,179.189,161.29,882.471,0.993103,-1,-1,-1
349,-1,689.855,272.014,95.776,264.749,0.99195,-1,-1,-1
349,-1,337.397,269.171,100.675,138.704,0.988615,-1,-1,-1
349,-1,7.02609,281.806,74.93,192.371,0.969062,-1,-1,-1
349,-1,1064.89,313.59,82.79,132.241,0.963033,-1,-1,-1
349,-1,1149.81,315.599,71.21,146.879,0.943424,-1,-1,-1
349,-1,553.585,301.761,59.011,108.75,0.872526,-1,-1,-1
349,-1,912.039,292.806,41.496,129.784,0.815551,-1,-1,-1
349,-1,830.451,296.181,62.216,112.572,0.607957,-1,-1,-1
350,-1,1757.43,185.692,161.57,870.098,0.989852,-1,-1,-1
350,-1,334.336,264.122,111.285,139.807,0.986303,-1,-1,-1
350,-1,669.898,260.908,122.683,280.634,0.981394,-1,-1,-1
350,-1,9.17935,279.871,67.2631,180.959,0.977126,-1,-1,-1
350,-1,1064.51,281.953,61.04,163.973,0.95247,-1,-1,-1
350,-1,1154.53,312.077,68.03,148.787,0.945694,-1,-1,-1
350,-1,565.719,279.087,62.197,121.066,0.890409,-1,-1,-1
350,-1,912.877,262.727,44.36,167.958,0.860864,-1,-1,-1
350,-1,837.805,286.784,63.528,126.671,0.635208,-1,-1,-1
351,-1,665.275,261.716,104.203,283.651,0.991436,-1,-1,-1
351,-1,331.72,272.865,113.879,141.702,0.986185,-1,-1,-1
351,-1,16.9591,292.901,66.3246,146.443,0.976889,-1,-1,-1
351,-1,1757.17,161.254,161.83,877.736,0.975981,-1,-1,-1
351,-1,1070.58,288.12,63.51,134.828,0.960347,-1,-1,-1
351,-1,1134.13,338.372,79.4,115.875,0.918922,-1,-1,-1
351,-1,560.049,283.044,66.456,114.339,0.867494,-1,-1,-1
351,-1,892.269,279.258,57.03,145.968,0.807323,-1,-1,-1
351,-1,823.919,297.056,72.303,111.285,0.552749,-1,-1,-1
352,-1,1748.76,218.932,170.24,841.878,0.996223,-1,-1,-1
352,-1,664.383,251.037,87.847,285.465,0.988753,-1,-1,-1
352,-1,335.549,260.44,114.882,153.644,0.980832,-1,-1,-1
352,-1,1063.84,295.006,74.8,157.754,0.973162,-1,-1,-1
352,-1,1151.22,305.017,75.36,160.244,0.938885,-1,-1,-1
352,-1,10.8669,281.788,55.0517,160.927,0.938546,-1,-1,-1
352,-1,911.777,305.674,52.613,131.171,0.928721,-1,-1,-1
352,-1,843.459,298.463,55.597,126.666,0.88448,-1,-1,-1
352,-1,553.322,288.49,52.976,116.019,0.502118,-1,-1,-1
353,-1,1742.77,216.423,176.23,779.026,0.991703,-1,-1,-1
353,-1,1065.17,303.887,70.93,145.648,0.987292,-1,-1,-1
353,-1,653.582,255.645,109.665,308.925,0.985501,-1,-1,-1
353,-1,316.561,251.399,120.781,164.812,0.979667,-1,-1,-1
353,-1,7.91372,288.924,70.0843,171.317,0.965973,-1,-1,-1
353,-1,1140.27,318.32,61.6,146.702,0.950719,-1,-1,-1
353,-1,840.894,301.141,57.036,119.885,0.938242,-1,-1,-1
353,-1,912.501,300.114,44.566,130.075,0.907918,-1,-1,-1
353,-1,537.842,309.682,63.845,112.536,0.750803,-1,-1,-1
353,-1,1170.67,328.561,77.81,99.276,0.633854,-1,-1,-1
353,-1,869.118,273.307,71.045,170.514,0.504953,-1,-1,-1
354,-1,659.515,271.361,85.335,276.798,0.991044,-1,-1,-1
354,-1,1744.86,206.074,174.14,827.606,0.988593,-1,-1,-1
354,-1,346.047,271.241,102.45,150.911,0.986072,-1,-1,-1
354,-1,1144.01,339.019,64.71,114.089,0.960483,-1,-1,-1
354,-1,8.7372,297.686,56.7642,168.41,0.957961,-1,-1,-1
354,-1,1061.21,323.771,57.73,116.812,0.957682,-1,-1,-1
354,-1,908.469,301.771,48.316,136.828,0.93029,-1,-1,-1
354,-1,848.758,299,54.476,126.462,0.923807,-1,-1,-1
354,-1,1233.76,321.47,50.22,127.435,0.696276,-1,-1,-1
354,-1,542.358,296.512,65.178,115.264,0.652118,-1,-1,-1
355,-1,626.965,257.809,119.047,307.155,0.992874,-1,-1,-1
355,-1,1753.22,177.191,165.78,889.319,0.991425,-1,-1,-1
355,-1,325.749,264.367,116.45,143.252,0.987849,-1,-1,-1
355,-1,1063.89,309.478,68.87,144.662,0.981172,-1,-1,-1
355,-1,2.6438,298.499,73.3229,179.286,0.976178,-1,-1,-1
355,-1,1153.42,331.274,59.3,117.879,0.974135,-1,-1,-1
355,-1,843.963,297.023,59.44,139.341,0.958746,-1,-1,-1
355,-1,899.192,294.625,55.801,158.984,0.916543,-1,-1,-1
355,-1,1246.48,325.545,41.71,108.269,0.784911,-1,-1,-1
356,-1,640.368,274.527,110.316,315.868,0.991568,-1,-1,-1
356,-1,1726.76,154.488,192.24,906.612,0.984336,-1,-1,-1
356,-1,6.52387,303.796,67.3135,158.263,0.967591,-1,-1,-1
356,-1,1058.91,330.386,60.17,119.594,0.962169,-1,-1,-1
356,-1,320.811,261.71,129.443,131.134,0.959981,-1,-1,-1
356,-1,1154.1,328.904,58.42,147.327,0.895274,-1,-1,-1
356,-1,841.816,294.044,67.466,108.662,0.797195,-1,-1,-1
357,-1,604.815,285.605,140.951,282.054,0.993717,-1,-1,-1
357,-1,1733.1,198.686,185.9,841.954,0.992853,-1,-1,-1
357,-1,326.654,275.065,119.173,164.04,0.990851,-1,-1,-1
357,-1,1055.16,335.607,73.75,119.761,0.980666,-1,-1,-1
357,-1,0,317.002,65.4492,171.981,0.975635,-1,-1,-1
357,-1,1140.06,330.807,70.88,148.398,0.964176,-1,-1,-1
357,-1,824.656,308.52,74.68,133.447,0.96288,-1,-1,-1
357,-1,907.569,320.695,46.138,111.802,0.919372,-1,-1,-1
357,-1,1244.31,327.046,44.34,121.37,0.649486,-1,-1,-1
358,-1,1717.81,183.619,201.19,858.861,0.9937,-1,-1,-1
358,-1,611.666,264.897,107.303,316.444,0.99226,-1,-1,-1
358,-1,323.853,280.204,118.982,160.095,0.990291,-1,-1,-1
358,-1,1056.45,327.271,68.48,122.701,0.978911,-1,-1,-1
358,-1,1134.64,329.393,66.31,157.298,0.96521,-1,-1,-1
358,-1,0,300.97,61.5582,180.569,0.9557,-1,-1,-1
358,-1,843.362,331.365,60.834,115.503,0.93306,-1,-1,-1
358,-1,901.9,319.988,35.556,118.886,0.875636,-1,-1,-1
358,-1,1239.46,331.724,47.42,116.8,0.749688,-1,-1,-1
358,-1,486.913,300.566,61.911,116.307,0.518661,-1,-1,-1
359,-1,595.229,264.878,113.887,345.917,0.993361,-1,-1,-1
359,-1,1739.47,157.078,179.53,906.112,0.993353,-1,-1,-1
359,-1,328.652,285.928,97.224,147.58,0.992714,-1,-1,-1
359,-1,1054.86,315.804,74.56,160.854,0.977785,-1,-1,-1
359,-1,1153.55,335.072,55.79,136.066,0.97408,-1,-1,-1
359,-1,897.215,332.653,56.802,119.001,0.892697,-1,-1,-1
359,-1,1225.51,332.279,64.63,105.518,0.856902,-1,-1,-1
359,-1,838.983,329.598,59.504,129.053,0.836595,-1,-1,-1
359,-1,507.1,307.466,54.502,134.791,0.521498,-1,-1,-1
360,-1,588.508,279.168,127.364,300.845,0.991529,-1,-1,-1
360,-1,322.017,285.139,93.788,162.12,0.990236,-1,-1,-1
360,-1,1735.87,187.881,183.13,873.529,0.987701,-1,-1,-1
360,-1,1054.08,319.709,69.76,162.287,0.979029,-1,-1,-1
360,-1,1139.68,332.149,68.71,162.197,0.978822,-1,-1,-1
360,-1,893.818,306.13,51.309,154.828,0.836028,-1,-1,-1
360,-1,1245.64,316.725,46.29,134.629,0.625998,-1,-1,-1
360,-1,831.957,295.998,71.842,164.44,0.619412,-1,-1,-1
361,-1,591.099,261.864,111.118,348.377,0.992988,-1,-1,-1
361,-1,1745.12,150.968,173.88,923.642,0.991572,-1,-1,-1
361,-1,344.909,290.468,85.271,146.199,0.990529,-1,-1,-1
361,-1,1133.71,343.6,64.47,142.956,0.979637,-1,-1,-1
361,-1,1052.53,324.035,72.31,158.293,0.979,-1,-1,-1
361,-1,905.735,316.513,58.467,110.734,0.896666,-1,-1,-1
361,-1,509.004,319.434,43.758,110.248,0.737754,-1,-1,-1
361,-1,892.994,305.593,34.653,141.562,0.648893,-1,-1,-1
361,-1,1240.84,335.818,40.47,108.101,0.643204,-1,-1,-1
361,-1,817.12,311.191,61.352,130.275,0.528436,-1,-1,-1
362,-1,566.043,269.477,130.103,341.819,0.993131,-1,-1,-1
362,-1,311.339,280.006,114.983,173.07,0.989375,-1,-1,-1
362,-1,1760.8,311.197,158.2,745.283,0.980794,-1,-1,-1
362,-1,1049.19,330.503,73.64,149.686,0.980136,-1,-1,-1
362,-1,1147.37,353.134,59.56,130.849,0.97918,-1,-1,-1
362,-1,1241.32,346.698,59.3,103.929,0.94163,-1,-1,-1
362,-1,900.159,324.539,36.374,108.552,0.874415,-1,-1,-1
362,-1,814.563,320.025,56.413,105.078,0.864439,-1,-1,-1
362,-1,502.181,322.037,48.714,116.947,0.717668,-1,-1,-1
362,-1,840.854,328.128,59.223,128.938,0.62339,-1,-1,-1
363,-1,572.701,274.467,99.588,360.965,0.993336,-1,-1,-1
363,-1,311.491,268.445,113.344,178.025,0.992392,-1,-1,-1
363,-1,1747.5,243.363,171.5,830.827,0.985006,-1,-1,-1
363,-1,1130.97,352.998,67.16,125.905,0.979943,-1,-1,-1
363,-1,1049.66,332.435,73.62,148.249,0.979241,-1,-1,-1
363,-1,1245.43,324.807,45.12,118.907,0.926634,-1,-1,-1
363,-1,811.668,314.853,59.753,108.256,0.857028,-1,-1,-1
363,-1,896.887,329.298,39.981,114.345,0.826981,-1,-1,-1
363,-1,492.07,314.31,55.085,119.238,0.633562,-1,-1,-1
364,-1,571.988,292.323,104.684,330.192,0.992347,-1,-1,-1
364,-1,314.229,261.529,106.829,175.204,0.99161,-1,-1,-1
364,-1,1050.42,330.958,72.98,139.006,0.989352,-1,-1,-1
364,-1,1769.56,132.112,149.44,944.568,0.98927,-1,-1,-1
364,-1,1128.8,351.939,66.44,124.072,0.976045,-1,-1,-1
364,-1,1244.68,333.258,47.07,110.706,0.908064,-1,-1,-1
364,-1,904.942,300.82,38.362,139.556,0.807435,-1,-1,-1
364,-1,795.055,308.113,75.54,128.417,0.752015,-1,-1,-1
364,-1,855.723,318.168,50.967,141.7,0.610375,-1,-1,-1
365,-1,554.952,288.564,117.865,354.152,0.993258,-1,-1,-1
365,-1,1774.09,123.191,144.91,955.809,0.99177,-1,-1,-1
365,-1,320.942,257.427,97.38,194.042,0.988653,-1,-1,-1
365,-1,1138.61,347.001,59.55,126.939,0.980337,-1,-1,-1
365,-1,1042.19,338.903,73.65,140.805,0.980057,-1,-1,-1
365,-1,794.668,319.756,63.003,107.099,0.92484,-1,-1,-1
365,-1,1236.58,329.939,55.25,122.168,0.913943,-1,-1,-1
365,-1,884.311,304.015,58.282,150.93,0.814245,-1,-1,-1
365,-1,842.264,291.087,64.08,161.357,0.715247,-1,-1,-1
366,-1,544.271,278.308,119.744,352.585,0.995237,-1,-1,-1
366,-1,321.137,260.168,95.79,200.659,0.989069,-1,-1,-1
366,-1,1776.48,180.442,142.52,893.278,0.984979,-1,-1,-1
366,-1,1139.59,348.013,57.47,128.504,0.980771,-1,-1,-1
366,-1,1048.39,330.32,73.45,155.601,0.977137,-1,-1,-1
366,-1,1239.6,329.339,55.4,123.47,0.912353,-1,-1,-1
366,-1,797.24,314.36,69.876,126.496,0.824547,-1,-1,-1
366,-1,873.354,292.865,61.616,154.275,0.728919,-1,-1,-1
367,-1,542.466,283.16,106.117,343.324,0.991492,-1,-1,-1
367,-1,315.401,268.564,108.145,176.771,0.99091,-1,-1,-1
367,-1,1776.62,150.733,142.38,891.567,0.988199,-1,-1,-1
367,-1,1051.75,343.598,64.84,132.12,0.981329,-1,-1,-1
367,-1,1130.33,351.942,61.37,130.525,0.969534,-1,-1,-1
367,-1,1243.19,344.827,55.15,112.924,0.934724,-1,-1,-1
367,-1,806.753,325.861,63.558,117.522,0.760056,-1,-1,-1
367,-1,892.324,333.492,63.391,119.93,0.756376,-1,-1,-1
367,-1,856.393,327.668,53.086,138.765,0.648656,-1,-1,-1
368,-1,536.435,270.763,104.14,360.944,0.993817,-1,-1,-1
368,-1,1051.71,331.366,75.38,145.815,0.990755,-1,-1,-1
368,-1,308.247,270.628,121.637,174.654,0.99007,-1,-1,-1
368,-1,1147.25,350.05,48.46,133.565,0.967506,-1,-1,-1
368,-1,1247.18,340.557,54.3,116.703,0.941397,-1,-1,-1
368,-1,893.55,327.155,51.685,102.482,0.807421,-1,-1,-1
368,-1,1765.84,135.029,151.46,858.287,0.76945,-1,-1,-1
368,-1,810.496,319.631,60.518,93.106,0.751029,-1,-1,-1
369,-1,514.376,277.891,145.453,347.882,0.995799,-1,-1,-1
369,-1,295.155,283.99,130.692,162.556,0.968012,-1,-1,-1
369,-1,1137.3,331.278,71.39,126.326,0.966228,-1,-1,-1
369,-1,1045.53,351.822,61.35,114.733,0.889524,-1,-1,-1
370,-1,529.963,247.872,103.874,419.277,0.997633,-1,-1,-1
370,-1,318.517,271.814,111.127,197.176,0.990032,-1,-1,-1
370,-1,1056.01,320.188,69.91,152.573,0.982768,-1,-1,-1
370,-1,1136.4,347.798,68.15,144.428,0.975251,-1,-1,-1
370,-1,1806.79,349.17,112.21,402.319,0.916553,-1,-1,-1
370,-1,901.555,298.748,40.509,153.707,0.804549,-1,-1,-1
370,-1,1254.53,326.598,38.19,113.692,0.705839,-1,-1,-1
370,-1,823.807,294.84,51.586,148.66,0.649676,-1,-1,-1
371,-1,520.138,266.727,139.673,377.089,0.995033,-1,-1,-1
371,-1,325.777,296.067,106.855,178.291,0.992755,-1,-1,-1
371,-1,1048.72,327.051,92.95,152.28,0.97908,-1,-1,-1
371,-1,1138.62,341.354,77.49,138.282,0.950078,-1,-1,-1
371,-1,893.208,323.725,71.621,141.939,0.85832,-1,-1,-1
371,-1,1269.3,329.182,41.8,113.623,0.843825,-1,-1,-1
371,-1,1801.15,117.118,117.85,961.882,0.705953,-1,-1,-1
372,-1,514.363,243.805,140.664,420.215,0.995412,-1,-1,-1
372,-1,1070.59,327.487,77.69,149.811,0.991248,-1,-1,-1
372,-1,344.446,276.85,104.215,173.808,0.986762,-1,-1,-1
372,-1,1142.74,328.79,78.04,147.496,0.962694,-1,-1,-1
372,-1,1291.14,324.217,41.34,106.221,0.900867,-1,-1,-1
372,-1,902.506,328.991,57.429,107.611,0.770172,-1,-1,-1
373,-1,508.843,261.93,145.592,387.068,0.995585,-1,-1,-1
373,-1,1079.33,322.3,72.62,154.786,0.989963,-1,-1,-1
373,-1,349.92,267.748,111.932,186.21,0.988433,-1,-1,-1
373,-1,1162.06,334.43,59.37,122.271,0.957052,-1,-1,-1
373,-1,906.165,289.325,51.43,156.786,0.885164,-1,-1,-1
373,-1,1283.3,320.342,44.54,120.522,0.833068,-1,-1,-1
374,-1,510.308,274.037,152.184,401.231,0.996819,-1,-1,-1
374,-1,360.59,272.338,90.118,195.816,0.98394,-1,-1,-1
374,-1,1080.4,313.45,78.83,171.146,0.983118,-1,-1,-1
374,-1,1158.29,336.642,77.51,124.304,0.966785,-1,-1,-1
374,-1,1286.18,312.788,45.13,106.576,0.899653,-1,-1,-1
374,-1,918.21,305.38,48.171,139.609,0.778394,-1,-1,-1
374,-1,839.467,293.465,59.003,121.633,0.508497,-1,-1,-1
375,-1,501.621,265.183,162.094,389.529,0.997729,-1,-1,-1
375,-1,1091.1,325.414,68.77,130.73,0.982755,-1,-1,-1
375,-1,379.263,280.816,88.66,150.292,0.978239,-1,-1,-1
375,-1,1185.81,339.49,51.19,129.188,0.970669,-1,-1,-1
375,-1,833.847,297.408,68.199,110.507,0.768118,-1,-1,-1
375,-1,919.103,289.372,54.003,148.494,0.658859,-1,-1,-1
375,-1,1299.02,297.031,52.41,126.651,0.526249,-1,-1,-1
376,-1,509.317,277.965,144.219,407.723,0.996023,-1,-1,-1
376,-1,1091.8,314.602,66.11,163.389,0.987619,-1,-1,-1
376,-1,368.419,260.754,99.791,211.655,0.980529,-1,-1,-1
376,-1,1179.91,328.68,43.15,121.426,0.958577,-1,-1,-1
376,-1,1306.48,307.589,52.6,130.927,0.929964,-1,-1,-1
376,-1,920.396,312.065,62.257,133.27,0.848298,-1,-1,-1
376,-1,836.911,315.657,47.873,81.04,0.840768,-1,-1,-1
377,-1,488.205,257.032,157.639,417.869,0.997558,-1,-1,-1
377,-1,373.464,240.655,116.6,354.287,0.987108,-1,-1,-1
377,-1,1092.29,310.684,78.58,158.645,0.981447,-1,-1,-1
377,-1,933.801,306.614,60.484,116.304,0.947788,-1,-1,-1
377,-1,1159.79,316.973,69.19,143.545,0.946582,-1,-1,-1
377,-1,1307.3,318.588,51.41,113.283,0.896315,-1,-1,-1
377,-1,837.859,296.478,54.692,114.094,0.85617,-1,-1,-1
378,-1,471.836,255.023,156.409,442.861,0.997625,-1,-1,-1
378,-1,1102.17,308.59,71.2,149.993,0.98525,-1,-1,-1
378,-1,382.324,256.094,97.038,239.448,0.954757,-1,-1,-1
378,-1,932.872,309.381,37.895,121.789,0.930047,-1,-1,-1
378,-1,1180.34,307.875,78.23,148.886,0.921026,-1,-1,-1
378,-1,836.631,298.276,65.4,117.73,0.886022,-1,-1,-1
379,-1,467.284,242.223,173.995,457.518,0.997769,-1,-1,-1
379,-1,1102.76,311.525,74.09,161.851,0.9853,-1,-1,-1
379,-1,387.031,269.549,112.765,343.728,0.970841,-1,-1,-1
379,-1,1176.1,313.211,68.74,137.203,0.934284,-1,-1,-1
379,-1,936.518,302.116,48.692,143.255,0.892282,-1,-1,-1
379,-1,838.016,300.739,63.213,111.538,0.890846,-1,-1,-1
380,-1,464.226,256.612,165.066,415.837,0.996598,-1,-1,-1
380,-1,1113.61,318.501,69.39,135.539,0.983386,-1,-1,-1
380,-1,1184.57,318.62,59.4,147.798,0.95155,-1,-1,-1
380,-1,387.671,255.309,79.42,230.758,0.94534,-1,-1,-1
380,-1,859.469,291.932,65.378,122.376,0.787604,-1,-1,-1
380,-1,943.238,300.435,49.617,122.245,0.761409,-1,-1,-1
380,-1,829.499,293.999,52.362,107.424,0.72752,-1,-1,-1
380,-1,407.531,225.112,103.25,445.911,0.6385,-1,-1,-1
381,-1,1114.76,302.508,70.54,145.407,0.991647,-1,-1,-1
381,-1,480.523,263.458,128.45,403.266,0.991027,-1,-1,-1
381,-1,1185.18,307.712,67.51,136.914,0.953896,-1,-1,-1
381,-1,392.658,248.335,98.652,246.29,0.92552,-1,-1,-1
381,-1,931.413,309.876,55.909,114.925,0.886058,-1,-1,-1
381,-1,849.031,306.62,58.735,106.443,0.873692,-1,-1,-1
382,-1,447.066,263.268,127.645,404.508,0.98582,-1,-1,-1
382,-1,1116.14,303.069,70.02,172.802,0.981386,-1,-1,-1
382,-1,1163.36,309.305,90.67,136.32,0.958705,-1,-1,-1
382,-1,930.714,299.827,60.152,144.705,0.899781,-1,-1,-1
382,-1,385.086,270.812,84.041,216.36,0.780019,-1,-1,-1
383,-1,417.294,256.733,191.497,411.525,0.994162,-1,-1,-1
383,-1,1123.86,294.91,57.83,160.147,0.982407,-1,-1,-1
383,-1,1180.02,324.09,64.01,147.758,0.971619,-1,-1,-1
383,-1,1207.58,304.516,60.12,125.489,0.698458,-1,-1,-1
383,-1,934.355,259.027,47.349,175.197,0.544048,-1,-1,-1
383,-1,582.023,301.653,57.928,121.777,0.517657,-1,-1,-1
384,-1,437.35,254.661,131.757,456.929,0.99001,-1,-1,-1
384,-1,1211.55,318.198,59.25,142.69,0.970556,-1,-1,-1
384,-1,1114.55,322.601,58.05,139.499,0.952181,-1,-1,-1
384,-1,1166.91,342.147,76.49,101.379,0.88234,-1,-1,-1
384,-1,856.494,295.688,67.535,113.467,0.686632,-1,-1,-1
384,-1,1153.19,315.776,45.21,142.383,0.586148,-1,-1,-1
385,-1,414.148,239.277,149.372,435.068,0.997547,-1,-1,-1
385,-1,1194.36,324.811,52.11,130.403,0.980994,-1,-1,-1
385,-1,937.321,294.227,58.919,147.231,0.934742,-1,-1,-1
385,-1,1129.1,330.758,51.2,118.463,0.925353,-1,-1,-1
385,-1,559.288,302.817,79.133,130.884,0.84142,-1,-1,-1
385,-1,856.288,303.43,70.28,134.195,0.779058,-1,-1,-1
385,-1,1160.55,331.128,45.85,116.421,0.544592,-1,-1,-1
386,-1,409.635,235.249,148.897,466.167,0.997228,-1,-1,-1
386,-1,1204.17,327.817,57.57,118.608,0.977005,-1,-1,-1
386,-1,1114.98,327.277,68.04,131.053,0.92774,-1,-1,-1
386,-1,854.434,292.866,82.326,140.46,0.844248,-1,-1,-1
386,-1,925.909,281.507,56.203,162.204,0.809262,-1,-1,-1
386,-1,566.954,296.744,61.45,136.845,0.76438,-1,-1,-1
386,-1,1168.68,306.947,67.22,130.944,0.679486,-1,-1,-1
387,-1,361.074,215.125,180.099,498.461,0.998394,-1,-1,-1
387,-1,1183.2,344.385,81.37,109.336,0.974257,-1,-1,-1
387,-1,1128.69,333.782,61.87,135.8,0.915625,-1,-1,-1
387,-1,867.624,277.813,72,191.057,0.819473,-1,-1,-1
387,-1,569.174,298.321,71.967,135.712,0.755408,-1,-1,-1
387,-1,919.715,276.184,73.76,175.553,0.729013,-1,-1,-1
388,-1,348.591,238.855,192.665,484.962,0.99856,-1,-1,-1
388,-1,1165.63,324.701,87.98,138.033,0.973079,-1,-1,-1
388,-1,548.133,315.618,80.267,112.847,0.953424,-1,-1,-1
388,-1,1110.24,332.303,66.23,134.697,0.923202,-1,-1,-1
388,-1,854.754,304.466,76.158,152.656,0.9095,-1,-1,-1
388,-1,927.799,311.501,53.353,120.707,0.871489,-1,-1,-1
389,-1,334.062,237.754,190.439,484.34,0.998998,-1,-1,-1
389,-1,1159.96,326.318,90.87,136.212,0.976438,-1,-1,-1
389,-1,854.128,306.451,73.171,137.165,0.934007,-1,-1,-1
389,-1,1110.6,336.562,61.43,124.078,0.93375,-1,-1,-1
389,-1,552.302,301.452,77.867,128.003,0.93018,-1,-1,-1
389,-1,928.758,307.082,48.031,113.717,0.836503,-1,-1,-1
390,-1,295.14,214.042,221.825,504.762,0.999174,-1,-1,-1
390,-1,1157.51,321.8,91.89,136.352,0.974468,-1,-1,-1
390,-1,536.873,302.384,82.56,124.802,0.957703,-1,-1,-1
390,-1,855.81,295.958,56.675,125.064,0.931691,-1,-1,-1
390,-1,1111.28,335.054,58.97,121.694,0.902855,-1,-1,-1
390,-1,933.707,297.873,62.522,132.341,0.891565,-1,-1,-1
390,-1,580.428,308.82,57.821,87.714,0.508405,-1,-1,-1
391,-1,309.957,225.554,189.877,513.608,0.998966,-1,-1,-1
391,-1,1160.59,318.342,88.21,127.963,0.96841,-1,-1,-1
391,-1,549.165,300.644,71.213,107.807,0.947392,-1,-1,-1
391,-1,847.944,293.729,65.156,138.988,0.941067,-1,-1,-1
391,-1,1113.29,330.152,56.99,124.447,0.905494,-1,-1,-1
391,-1,926.206,309.274,44.93,117.091,0.890763,-1,-1,-1
392,-1,244.427,254.724,242.202,494.092,0.999086,-1,-1,-1
392,-1,1166.61,317.156,77.22,131.5,0.968727,-1,-1,-1
392,-1,537.156,300.864,92.121,115.106,0.954876,-1,-1,-1
392,-1,843.557,296.937,64.562,124.768,0.952857,-1,-1,-1
392,-1,1117.94,321.203,57.45,138.223,0.901618,-1,-1,-1
392,-1,928.896,292.917,45.146,121.452,0.85618,-1,-1,-1
393,-1,255.58,244.645,244.249,492.594,0.996865,-1,-1,-1
393,-1,844.236,284.702,69.652,147.358,0.962756,-1,-1,-1
393,-1,1169.82,316.471,70.2,130.775,0.962641,-1,-1,-1
393,-1,535.6,300.915,94.591,118.249,0.959395,-1,-1,-1
393,-1,1117.27,321.602,57.6,139.632,0.908972,-1,-1,-1
393,-1,924.775,300.099,49.582,139.477,0.905521,-1,-1,-1
394,-1,255.845,212.871,217.357,554.838,0.996666,-1,-1,-1
394,-1,850.937,302.628,59.921,129.857,0.971642,-1,-1,-1
394,-1,527.566,318.751,81.413,97.122,0.959357,-1,-1,-1
394,-1,1165.65,324.312,64.88,148.84,0.952711,-1,-1,-1
394,-1,383.202,278.16,96.206,342.79,0.899993,-1,-1,-1
394,-1,1130.99,300.44,59.52,171.832,0.89515,-1,-1,-1
394,-1,938.923,302.191,46.246,128.757,0.890706,-1,-1,-1
395,-1,225.539,216.387,216.069,538.311,0.997021,-1,-1,-1
395,-1,531.866,303.462,86.889,130.489,0.96485,-1,-1,-1
395,-1,840.622,303.082,68.196,135.342,0.961798,-1,-1,-1
395,-1,377.658,271.631,106.836,350.532,0.959147,-1,-1,-1
395,-1,1181.02,326.145,53.34,134.68,0.945392,-1,-1,-1
395,-1,1131.74,310.744,57.32,163.221,0.902202,-1,-1,-1
395,-1,933.857,303.335,53.731,128.175,0.835008,-1,-1,-1
395,-1,1106.35,319.326,52.72,133.093,0.740613,-1,-1,-1
396,-1,199.935,219.135,216.388,558.7,0.995015,-1,-1,-1
396,-1,830.358,297.001,80.472,140.603,0.978065,-1,-1,-1
396,-1,387.346,281.394,93.402,313.686,0.973778,-1,-1,-1
396,-1,539.415,301.846,80.342,125.095,0.962992,-1,-1,-1
396,-1,1181.67,313.359,57.92,132.656,0.941587,-1,-1,-1
396,-1,1124.84,334.6,55.57,121.867,0.921877,-1,-1,-1
396,-1,931.459,307.986,55.211,133.965,0.823777,-1,-1,-1
397,-1,229.384,229.343,137.443,541.775,0.995136,-1,-1,-1
397,-1,353.979,250.03,122.563,315.618,0.94883,-1,-1,-1
397,-1,1197.65,331.319,62.14,113.756,0.939452,-1,-1,-1
397,-1,1156.27,324.316,64.13,141.302,0.925239,-1,-1,-1
397,-1,858.124,237.604,92.941,211.005,0.757483,-1,-1,-1
398,-1,205.985,199.919,145.21,607.547,0.996707,-1,-1,-1
398,-1,357.952,255.932,114.83,325.13,0.989389,-1,-1,-1
398,-1,854.218,298.786,65.727,127.342,0.962226,-1,-1,-1
398,-1,1145.6,313.434,84.14,166.342,0.95823,-1,-1,-1
398,-1,531.614,297.471,95.623,134.687,0.953121,-1,-1,-1
398,-1,937.533,311.247,55.098,111.791,0.90367,-1,-1,-1
398,-1,1199.58,315.181,57.77,132.624,0.881271,-1,-1,-1
399,-1,195.157,220.493,157.291,553.426,0.99639,-1,-1,-1
399,-1,375.244,254.808,100.477,301.177,0.988487,-1,-1,-1
399,-1,1146.49,315.335,64.88,136.363,0.943391,-1,-1,-1
399,-1,527.824,309.871,83.581,126.205,0.935879,-1,-1,-1
399,-1,1183.81,331.205,53.5,134.756,0.914716,-1,-1,-1
399,-1,851.999,268.724,89.544,204.331,0.749125,-1,-1,-1
400,-1,148.088,188.779,162.433,606.889,0.997023,-1,-1,-1
400,-1,374.625,251.888,101.86,327.454,0.99351,-1,-1,-1
400,-1,1149,308.408,66.8,161.694,0.9605,-1,-1,-1
400,-1,1189.08,321.724,57.25,135.869,0.946347,-1,-1,-1
400,-1,539.612,294.361,88.598,111.22,0.941505,-1,-1,-1
400,-1,853.206,294.599,68.251,138.89,0.895036,-1,-1,-1
400,-1,937.98,306.828,61.52,134.87,0.708727,-1,-1,-1
401,-1,144.421,196.62,128.27,574.654,0.997322,-1,-1,-1
401,-1,349.943,254.345,112.632,238.082,0.991464,-1,-1,-1
401,-1,1154.47,307.772,56.68,143.275,0.958331,-1,-1,-1
401,-1,1189.01,323.093,56.3,133.625,0.935009,-1,-1,-1
401,-1,854.645,285.616,78.207,170.561,0.819084,-1,-1,-1
401,-1,540.316,291.699,83.343,120.995,0.552556,-1,-1,-1
402,-1,93.3067,152.359,198.338,675.518,0.997716,-1,-1,-1
402,-1,349.755,238.73,137.942,341.525,0.983665,-1,-1,-1
402,-1,1202.02,303.195,60.84,140.704,0.969404,-1,-1,-1
402,-1,544.524,285.109,80.642,125.345,0.950117,-1,-1,-1
402,-1,1153.56,314.292,65.41,132.366,0.938362,-1,-1,-1
402,-1,855.179,294.918,69.395,140.273,0.829623,-1,-1,-1
402,-1,924.537,257.764,77.343,185.797,0.823585,-1,-1,-1
403,-1,66.8901,189.729,218.765,619.302,0.996204,-1,-1,-1
403,-1,352.297,244.808,124.17,324.402,0.99487,-1,-1,-1
403,-1,1176.87,309.291,77.71,146.631,0.969808,-1,-1,-1
403,-1,851.312,283.189,77.313,156.665,0.906182,-1,-1,-1
403,-1,534.402,319.824,72.674,98.013,0.905722,-1,-1,-1
403,-1,939.847,296.149,66.943,137.831,0.89682,-1,-1,-1
403,-1,1140.54,308.251,62.99,136.253,0.857968,-1,-1,-1
404,-1,43.7184,166.976,234.698,633.368,0.994979,-1,-1,-1
404,-1,345.366,236.981,132.3,346.492,0.990597,-1,-1,-1
404,-1,1186.45,288.954,73.62,151.749,0.983883,-1,-1,-1
404,-1,536.747,292.911,73.42,118.883,0.944162,-1,-1,-1
404,-1,871.161,271.152,65.521,179.22,0.879851,-1,-1,-1
404,-1,1156,302.656,59.27,150.267,0.871572,-1,-1,-1
404,-1,925.788,280.943,64.425,144.801,0.769029,-1,-1,-1
405,-1,20.718,165.534,230.839,654.707,0.996648,-1,-1,-1
405,-1,341.704,251.437,134.865,346.572,0.99326,-1,-1,-1
405,-1,1174.07,292.445,75.88,168.315,0.97859,-1,-1,-1
405,-1,854.95,286.024,74.695,167.385,0.971732,-1,-1,-1
405,-1,538.404,280.246,79.949,122.607,0.959914,-1,-1,-1
405,-1,966.414,269.296,51.566,136.641,0.63457,-1,-1,-1
405,-1,925.452,259.755,69.553,170.569,0.543578,-1,-1,-1
406,-1,7.6218,155.268,230.533,701.743,0.996194,-1,-1,-1
406,-1,350.415,246.576,125.88,344.048,0.990296,-1,-1,-1
406,-1,1181.81,289.938,81.71,151.693,0.978536,-1,-1,-1
406,-1,853.201,283.846,70.752,156.149,0.967032,-1,-1,-1
406,-1,531.42,278.812,86.394,132.001,0.9625,-1,-1,-1
406,-1,1154.89,311.896,57.34,142.479,0.920269,-1,-1,-1
406,-1,933.343,266.585,66.817,174.285,0.75183,-1,-1,-1
407,-1,324.294,226.74,139.071,359.372,0.991036,-1,-1,-1
407,-1,1178.33,287.43,78.94,158.403,0.989696,-1,-1,-1
407,-1,0,156.85,166.488,708.944,0.989119,-1,-1,-1
407,-1,539.745,288.905,74.055,118.182,0.96585,-1,-1,-1
407,-1,858.941,283.477,69.054,169.815,0.918729,-1,-1,-1
407,-1,1155.63,273.047,54.21,165.002,0.663453,-1,-1,-1
407,-1,931.221,307.668,63.858,123.261,0.651134,-1,-1,-1
408,-1,327.638,231.317,126.514,345.797,0.992953,-1,-1,-1
408,-1,1169.24,288.833,86.19,174.224,0.987326,-1,-1,-1
408,-1,858.089,288.895,65.118,149.866,0.974647,-1,-1,-1
408,-1,0,193.381,105.613,559.048,0.970643,-1,-1,-1
408,-1,538.617,302.746,76.471,105.262,0.905038,-1,-1,-1
408,-1,964.828,287.994,50.872,118.504,0.630091,-1,-1,-1
409,-1,345.601,223.803,106.701,382.951,0.994503,-1,-1,-1
409,-1,1195.39,300.721,68.68,145.513,0.983485,-1,-1,-1
409,-1,863.508,268.344,63.793,169.743,0.97046,-1,-1,-1
409,-1,536.385,296.023,75.1,113.256,0.963848,-1,-1,-1
409,-1,1151.76,313.518,75.79,137.61,0.941338,-1,-1,-1
409,-1,0.180622,202.885,90.1436,547.05,0.924557,-1,-1,-1
409,-1,968.716,292.168,45.964,121.193,0.705869,-1,-1,-1
410,-1,329.759,229.692,125.39,347.844,0.994164,-1,-1,-1
410,-1,1180.92,286.779,77.1,160.425,0.989908,-1,-1,-1
410,-1,533.014,279.637,81.773,130.365,0.96738,-1,-1,-1
410,-1,874.342,266.732,63.097,165.053,0.937596,-1,-1,-1
410,-1,958.951,315.09,57.739,99.577,0.674914,-1,-1,-1
410,-1,697.067,278.327,49.821,100.369,0.608493,-1,-1,-1
411,-1,333.807,229.467,115.145,347.885,0.994907,-1,-1,-1
411,-1,1174.64,295.397,72.88,150.089,0.990841,-1,-1,-1
411,-1,537.987,276.262,78.154,114.488,0.978294,-1,-1,-1
411,-1,863.047,278.037,71.206,160.402,0.887742,-1,-1,-1
411,-1,918.445,237.295,83.285,190.493,0.715746,-1,-1,-1
412,-1,327.369,231.582,121.829,381.511,0.994188,-1,-1,-1
412,-1,1193.3,297.092,71.11,159.505,0.990786,-1,-1,-1
412,-1,863.223,270.655,73.016,193.086,0.975417,-1,-1,-1
412,-1,528.307,297.416,82.586,120.097,0.951894,-1,-1,-1
412,-1,708.728,261.818,50.693,104.259,0.599193,-1,-1,-1
413,-1,320.73,221.475,139.455,403.443,0.992583,-1,-1,-1
413,-1,1184.66,286.183,79.68,189.163,0.992119,-1,-1,-1
413,-1,862.544,299.76,69.747,163.036,0.976218,-1,-1,-1
413,-1,529.88,286.25,79.212,136.203,0.96941,-1,-1,-1
413,-1,730.114,242.863,67.504,124.59,0.807314,-1,-1,-1
413,-1,715.081,287.081,49.592,93.516,0.617964,-1,-1,-1
413,-1,947.433,266.618,68.367,166.409,0.525592,-1,-1,-1
414,-1,296.052,244.038,146.228,374.509,0.993811,-1,-1,-1
414,-1,1191.63,309.547,70.24,177.694,0.988662,-1,-1,-1
414,-1,862.511,291.369,67.421,167.923,0.95526,-1,-1,-1
414,-1,534.538,295.408,75.966,134.324,0.948482,-1,-1,-1
414,-1,715.394,290.953,53.486,93.587,0.62276,-1,-1,-1
414,-1,286.086,277.891,61.389,188.341,0.600426,-1,-1,-1
415,-1,327.466,255.889,120.015,355.769,0.994887,-1,-1,-1
415,-1,1195.03,297.891,77.5,179.885,0.990623,-1,-1,-1
415,-1,534.065,292.493,81.473,115.387,0.964834,-1,-1,-1
415,-1,860.653,302.78,71.334,170.038,0.962851,-1,-1,-1
415,-1,719.407,278.367,53.264,90.937,0.593864,-1,-1,-1
416,-1,320.015,259.569,132.158,353.987,0.995725,-1,-1,-1
416,-1,1179.96,294.664,72.76,178.512,0.99031,-1,-1,-1
416,-1,527.767,296.11,76.271,136.905,0.969215,-1,-1,-1
416,-1,862.888,294.269,67.441,170.717,0.958132,-1,-1,-1
416,-1,741.895,260.349,64.174,120.022,0.691701,-1,-1,-1
416,-1,950.561,291.871,48.491,143.185,0.678135,-1,-1,-1
416,-1,711.589,288.578,52.238,100.03,0.566635,-1,-1,-1
417,-1,307.314,257.872,147.134,356.602,0.996036,-1,-1,-1
417,-1,1178.82,308.386,70.5,171.707,0.987928,-1,-1,-1
417,-1,529.515,314.542,75.635,128.112,0.964587,-1,-1,-1
417,-1,863.947,296.577,67.084,163.994,0.956392,-1,-1,-1
417,-1,745.171,257.401,60.085,111.685,0.653621,-1,-1,-1
417,-1,716.493,275.958,55.996,84.8,0.608743,-1,-1,-1
417,-1,947.775,263.667,69.415,180.23,0.574468,-1,-1,-1
418,-1,298.845,237.268,137.364,380.54,0.99403,-1,-1,-1
418,-1,1180.99,301.454,82.25,194.888,0.98888,-1,-1,-1
418,-1,528.903,324.813,74.656,119.15,0.967052,-1,-1,-1
418,-1,865.618,308.498,66.854,153.418,0.943855,-1,-1,-1
418,-1,254.25,291.14,51.669,158.519,0.74858,-1,-1,-1
418,-1,941.972,265.66,72.208,170.427,0.655031,-1,-1,-1
419,-1,307.595,249.641,144.613,370.053,0.997129,-1,-1,-1
419,-1,1179.07,303.85,74.65,183.876,0.989424,-1,-1,-1
419,-1,860.086,293.408,71.454,160.456,0.957735,-1,-1,-1
419,-1,520.1,309.951,74.815,132.291,0.951235,-1,-1,-1
419,-1,950.25,300.074,49.691,135.694,0.713661,-1,-1,-1
419,-1,247.022,332.395,60.24,108.756,0.584315,-1,-1,-1
420,-1,309.181,263.684,138.813,356.949,0.997191,-1,-1,-1
420,-1,1175.92,302.207,74.32,181.601,0.990998,-1,-1,-1
420,-1,857.64,291.131,72.402,158.384,0.95331,-1,-1,-1
420,-1,524.794,336.595,79.986,88.656,0.94859,-1,-1,-1
420,-1,961.715,301.325,55.355,139.692,0.871322,-1,-1,-1
420,-1,714.72,274.619,59.14,90.642,0.567041,-1,-1,-1
420,-1,744.215,261.267,61.79,114.197,0.502194,-1,-1,-1
421,-1,296.638,250.21,162.828,388.805,0.997679,-1,-1,-1
421,-1,1189.52,290.532,74.67,209.186,0.9884,-1,-1,-1
421,-1,511.046,306.146,82.356,134.058,0.973507,-1,-1,-1
421,-1,856.039,297.695,72.386,162.211,0.964939,-1,-1,-1
421,-1,961.794,304.11,52.306,134.979,0.890555,-1,-1,-1
421,-1,233.494,328.311,52.2,135.07,0.884627,-1,-1,-1
422,-1,302.529,251.415,157.195,380.352,0.997831,-1,-1,-1
422,-1,1190.55,284.742,83.67,221.122,0.986561,-1,-1,-1
422,-1,519.154,313.168,80.658,130.358,0.960245,-1,-1,-1
422,-1,852.304,311.296,74.335,170.784,0.957128,-1,-1,-1
422,-1,948.926,299.204,46.509,145.202,0.84943,-1,-1,-1
422,-1,222.578,327.098,59.475,130.381,0.642485,-1,-1,-1
423,-1,303.035,251.796,163.674,380.354,0.99773,-1,-1,-1
423,-1,1192.13,282.528,80.27,210.616,0.98259,-1,-1,-1
423,-1,870.142,312.587,60.983,156.336,0.939929,-1,-1,-1
423,-1,526.044,323.255,69.772,110.566,0.939104,-1,-1,-1
423,-1,201.83,331.782,72.449,130.659,0.846826,-1,-1,-1
423,-1,950.883,310.764,45.787,129.463,0.714657,-1,-1,-1
424,-1,312.815,281.086,139.014,347.162,0.99554,-1,-1,-1
424,-1,1188.3,291.517,70.61,210.469,0.985703,-1,-1,-1
424,-1,525.184,329.33,75.147,98.396,0.94123,-1,-1,-1
424,-1,194.724,311.771,68.284,162.088,0.830514,-1,-1,-1
424,-1,921.286,251.126,71.386,181.365,0.571089,-1,-1,-1
425,-1,319.201,251.478,144.834,395.618,0.995895,-1,-1,-1
425,-1,1183.23,293.516,66.85,199.258,0.986602,-1,-1,-1
425,-1,202.454,316.907,66.697,158.272,0.864925,-1,-1,-1
425,-1,934.554,252.526,83.466,201.496,0.751511,-1,-1,-1
425,-1,858.745,292.283,72.278,171.135,0.737116,-1,-1,-1
425,-1,503.592,332.372,92.278,114.276,0.72452,-1,-1,-1
426,-1,329.639,262.806,127.791,363.49,0.995003,-1,-1,-1
426,-1,1188.2,300.098,65.39,185.968,0.990987,-1,-1,-1
426,-1,854.38,307.391,75.659,139.609,0.738135,-1,-1,-1
427,-1,335.341,266.257,132.477,383.431,0.99501,-1,-1,-1
427,-1,1189.07,288.919,61.38,209.235,0.981113,-1,-1,-1
427,-1,934.471,294.944,76.389,170.963,0.870342,-1,-1,-1
427,-1,857.202,315.682,74.755,158.181,0.800002,-1,-1,-1
428,-1,313.776,256.935,189.275,392.686,0.997309,-1,-1,-1
428,-1,1196.47,276.95,80.61,237.53,0.983237,-1,-1,-1
428,-1,858.819,305.576,74.37,139.397,0.958105,-1,-1,-1
428,-1,535.718,327.482,75.293,126.639,0.769707,-1,-1,-1
428,-1,970.92,302.122,46.88,139.178,0.543205,-1,-1,-1
429,-1,332.341,259.144,141.813,388.027,0.996679,-1,-1,-1
429,-1,1200.52,289.932,71.56,212.628,0.98179,-1,-1,-1
429,-1,858.865,331.879,65.342,141.303,0.87557,-1,-1,-1
429,-1,896.049,317.604,55.276,132.916,0.67477,-1,-1,-1
430,-1,335.228,241.783,151.769,388.329,0.997471,-1,-1,-1
430,-1,1197.18,293.745,90.76,233.465,0.986854,-1,-1,-1
430,-1,863.438,302.313,67.156,159.463,0.917844,-1,-1,-1
430,-1,517.761,302.865,81.686,141.558,0.863179,-1,-1,-1
430,-1,964.73,298.177,45.51,142.573,0.722016,-1,-1,-1
430,-1,239.587,351.94,69.137,118.384,0.556691,-1,-1,-1
430,-1,106.577,255.681,59.622,195.197,0.556544,-1,-1,-1
430,-1,903.569,311.553,49.518,131.915,0.539803,-1,-1,-1
431,-1,333.964,252.253,157.048,392.789,0.997479,-1,-1,-1
431,-1,1196.79,271.083,84.84,246.842,0.985805,-1,-1,-1
431,-1,253.008,332.259,67.213,141.839,0.942165,-1,-1,-1
431,-1,859.236,326.966,58.154,123.117,0.936608,-1,-1,-1
431,-1,533.714,341.835,56.582,113.944,0.868016,-1,-1,-1
431,-1,955.636,301.632,51.484,132.577,0.838208,-1,-1,-1
431,-1,164.131,331.704,62.73,133.954,0.696027,-1,-1,-1
432,-1,344.182,232.807,142.581,415.092,0.99735,-1,-1,-1
432,-1,1198.7,277.837,85.91,243.056,0.988125,-1,-1,-1
432,-1,861.162,304.126,61.44,136.008,0.9561,-1,-1,-1
432,-1,508.627,305.417,87.97,136.164,0.953929,-1,-1,-1
432,-1,258.935,312.074,54.119,124.377,0.916255,-1,-1,-1
432,-1,958.009,301.184,62.401,145.015,0.907396,-1,-1,-1
432,-1,115.858,309.858,75.967,153.293,0.834521,-1,-1,-1
433,-1,349.594,250.382,136.869,407.847,0.996892,-1,-1,-1
433,-1,1197.03,267.808,88.79,234.859,0.991152,-1,-1,-1
433,-1,504.056,307.662,82.257,160.772,0.975703,-1,-1,-1
433,-1,860.309,327.912,57.631,119.102,0.958259,-1,-1,-1
433,-1,227.835,333.248,61.496,141.882,0.943693,-1,-1,-1
433,-1,121.688,311.234,80.906,161.721,0.83304,-1,-1,-1
433,-1,952.065,289.759,68.625,157.34,0.819019,-1,-1,-1
434,-1,343.001,235.317,147.814,422.901,0.998167,-1,-1,-1
434,-1,1196.01,269.76,89.54,252.701,0.988841,-1,-1,-1
434,-1,502.356,307.176,78.306,175.713,0.972561,-1,-1,-1
434,-1,855.639,324.153,58.419,119.005,0.959948,-1,-1,-1
434,-1,231.932,329.961,52.607,129.495,0.9561,-1,-1,-1
434,-1,956.968,302.693,48.762,136.245,0.908048,-1,-1,-1
434,-1,114.14,302.653,79.894,177.063,0.893471,-1,-1,-1
435,-1,340.653,237.167,155.232,412.324,0.998346,-1,-1,-1
435,-1,1197,272.369,83.82,228.765,0.990336,-1,-1,-1
435,-1,223.09,326.117,59.74,138.578,0.974644,-1,-1,-1
435,-1,498.113,293.38,69.998,160.426,0.95985,-1,-1,-1
435,-1,846.707,300.087,66.793,149.372,0.95157,-1,-1,-1
435,-1,109.254,303.632,79.268,160.725,0.920177,-1,-1,-1
435,-1,944.19,310.63,68.32,119.219,0.910349,-1,-1,-1
436,-1,337.112,257.566,170.047,395.735,0.996783,-1,-1,-1
436,-1,1192.2,268.516,89.53,252.123,0.988032,-1,-1,-1
436,-1,212.216,334.102,63.978,136.665,0.980122,-1,-1,-1
436,-1,93.5807,315.734,83.3263,155.272,0.979916,-1,-1,-1
436,-1,846.389,322.416,61.387,128.63,0.954253,-1,-1,-1
436,-1,947.249,319.529,68.711,116.752,0.943287,-1,-1,-1
436,-1,497.251,289.254,70.145,159.888,0.927514,-1,-1,-1
436,-1,921.212,296.288,56.779,149.021,0.740111,-1,-1,-1
436,-1,753.564,279.466,54.577,96.961,0.605915,-1,-1,-1
437,-1,332.616,240.106,186.174,411.496,0.997771,-1,-1,-1
437,-1,1189.36,278.784,91.03,243.132,0.987693,-1,-1,-1
437,-1,81.9316,284.459,82.6004,200.034,0.973254,-1,-1,-1
437,-1,849.243,300.238,60.535,149.539,0.966547,-1,-1,-1
437,-1,203.639,331.216,55.631,134.532,0.951433,-1,-1,-1
437,-1,500.401,284.121,73.344,171.694,0.888365,-1,-1,-1
437,-1,918.126,294.446,53.934,147.224,0.825181,-1,-1,-1
437,-1,943.071,277.701,68.729,152.416,0.587527,-1,-1,-1
438,-1,332.344,238.59,184.47,419.485,0.997977,-1,-1,-1
438,-1,1187.47,272.514,93.94,252.002,0.987429,-1,-1,-1
438,-1,66.3037,249.725,89.1843,250.753,0.982869,-1,-1,-1
438,-1,194.941,329.796,64.643,145.073,0.962725,-1,-1,-1
438,-1,847.703,321.955,58.834,154.818,0.95922,-1,-1,-1
438,-1,499.092,291.154,80.189,167.93,0.71665,-1,-1,-1
439,-1,328.339,243.725,193.081,407.756,0.996067,-1,-1,-1
439,-1,1189.43,277.599,89.91,227.816,0.990831,-1,-1,-1
439,-1,64.9035,287.087,85.6165,193.155,0.931992,-1,-1,-1
439,-1,182.643,342.542,75.131,146.284,0.923003,-1,-1,-1
439,-1,843.774,299.447,55.854,167.959,0.910508,-1,-1,-1
440,-1,323.955,251.565,195.523,423.153,0.996723,-1,-1,-1
440,-1,1184.24,273.272,92.01,256.928,0.986067,-1,-1,-1
440,-1,158.276,342.033,71.405,157.141,0.968812,-1,-1,-1
440,-1,64.61,310.2,73.93,173.148,0.967347,-1,-1,-1
440,-1,942.146,286.658,46.53,156.552,0.589284,-1,-1,-1
440,-1,843.295,313.253,54.642,147.087,0.540421,-1,-1,-1
441,-1,342.865,259.827,178.268,395.868,0.996427,-1,-1,-1
441,-1,1185.5,282.326,88.07,239.981,0.982171,-1,-1,-1
441,-1,172.907,346.012,62.303,122.78,0.971386,-1,-1,-1
441,-1,31.1669,320.849,101.968,159.158,0.966217,-1,-1,-1
441,-1,848.731,309.849,54.788,138.233,0.938556,-1,-1,-1
441,-1,940.992,318.076,50.536,122.527,0.839617,-1,-1,-1
442,-1,339.431,249.93,192.973,419.324,0.997929,-1,-1,-1
442,-1,1189.08,297.072,78.63,218.626,0.985796,-1,-1,-1
442,-1,834.765,335.171,59.111,137.918,0.934507,-1,-1,-1
442,-1,156.07,345.794,65.37,124.854,0.922155,-1,-1,-1
442,-1,26.8189,314.781,80.3771,169.412,0.813855,-1,-1,-1
443,-1,341.233,235.919,184.291,448.08,0.997899,-1,-1,-1
443,-1,1188.83,290.733,88.88,227.34,0.986798,-1,-1,-1
443,-1,839.154,327.96,66.359,163.281,0.959238,-1,-1,-1
443,-1,142.364,354.556,61.423,134.882,0.948265,-1,-1,-1
443,-1,17.8275,295.808,92.8945,192.646,0.878197,-1,-1,-1
443,-1,938.529,318.246,53.063,133.06,0.735419,-1,-1,-1
444,-1,343.487,239.246,178.357,443.267,0.997906,-1,-1,-1
444,-1,1182.28,298.964,92.8,221.576,0.985212,-1,-1,-1
444,-1,133.713,356.053,64.284,133.391,0.977716,-1,-1,-1
444,-1,839.18,316.367,55.4,145.017,0.931541,-1,-1,-1
444,-1,929.002,299.619,50.365,148.491,0.865189,-1,-1,-1
444,-1,706.655,305.922,53.068,81.16,0.711008,-1,-1,-1
444,-1,10.7696,318.798,78.5983,193.862,0.709233,-1,-1,-1
445,-1,346.97,254.552,164.261,449.004,0.998667,-1,-1,-1
445,-1,1177.58,301.052,92.36,216.581,0.978973,-1,-1,-1
445,-1,130.497,334.948,61.136,153.501,0.930487,-1,-1,-1
445,-1,817.863,333.813,60.762,127.434,0.930445,-1,-1,-1
445,-1,937.314,316.489,51.498,121.11,0.798171,-1,-1,-1
445,-1,700.913,308.372,60.915,94.205,0.729483,-1,-1,-1
446,-1,354.321,225.977,144.233,471.886,0.998118,-1,-1,-1
446,-1,118.282,356.027,67.224,131.377,0.9883,-1,-1,-1
446,-1,1170.41,289.147,101.16,227.324,0.979483,-1,-1,-1
446,-1,815.348,329.231,69.965,142.386,0.883286,-1,-1,-1
446,-1,937.202,318.327,42.814,132.108,0.779462,-1,-1,-1
446,-1,710.206,291.255,66.953,117.409,0.718023,-1,-1,-1
447,-1,336.485,226.719,170.865,482.486,0.997379,-1,-1,-1
447,-1,107.285,370.265,75.652,127.133,0.986796,-1,-1,-1
447,-1,1162.67,300.514,98.73,221.726,0.986167,-1,-1,-1
447,-1,913.572,329.982,54.9,116.085,0.800269,-1,-1,-1
447,-1,716.627,297.462,45.959,79.865,0.772295,-1,-1,-1
447,-1,815.559,324.933,55.237,153.262,0.667442,-1,-1,-1
447,-1,595.866,316.856,55.452,106.267,0.514601,-1,-1,-1
448,-1,337.875,231.895,167.573,468.244,0.998473,-1,-1,-1
448,-1,1165.33,297.237,97.51,225.375,0.986157,-1,-1,-1
448,-1,97.5757,370.779,71.6313,112.229,0.98184,-1,-1,-1
448,-1,908.282,330.399,57.055,112.563,0.851341,-1,-1,-1
448,-1,820.313,321.189,47.27,147.751,0.831159,-1,-1,-1
448,-1,711.878,296.669,50.909,81.279,0.669202,-1,-1,-1
448,-1,670.11,289.478,61.927,114.24,0.567655,-1,-1,-1
449,-1,316.06,264.384,211.095,399.826,0.998713,-1,-1,-1
449,-1,87.8564,364.947,82.5096,117.67,0.984603,-1,-1,-1
449,-1,1166.7,296.485,98.81,227.005,0.981347,-1,-1,-1
449,-1,908.41,328.753,51.657,120.026,0.885149,-1,-1,-1
449,-1,714.081,285.561,49.302,76.425,0.740184,-1,-1,-1
449,-1,817.779,325.686,55.958,160.662,0.715296,-1,-1,-1
449,-1,678.353,296.095,46.427,91.16,0.612255,-1,-1,-1
449,-1,588.633,304.932,51.688,116.341,0.528757,-1,-1,-1
450,-1,342.948,247.367,159.473,436.521,0.998749,-1,-1,-1
450,-1,1167.98,315.46,81.55,177.28,0.982436,-1,-1,-1
450,-1,841.119,329.185,50.279,139.829,0.746355,-1,-1,-1
450,-1,925.772,324.136,53.466,128.017,0.730834,-1,-1,-1
450,-1,897.071,335.077,51.85,127.058,0.654252,-1,-1,-1
450,-1,69.9791,363.316,100.088,112.304,0.621605,-1,-1,-1
450,-1,673.373,284.635,66.829,101.172,0.500785,-1,-1,-1
451,-1,331.671,237.909,183.372,426.132,0.998389,-1,-1,-1
451,-1,1182.14,295.198,85.5,245.031,0.975545,-1,-1,-1
451,-1,69.3559,358.559,61.1421,126.123,0.964513,-1,-1,-1
451,-1,812.912,308.975,54.505,161.426,0.868639,-1,-1,-1
451,-1,694.217,288.222,44.161,100.828,0.776532,-1,-1,-1
451,-1,908.882,272.212,62.377,176.554,0.742656,-1,-1,-1
451,-1,1139.9,339.198,62.35,149.24,0.641237,-1,-1,-1
451,-1,886.393,312.884,57.359,173.159,0.500659,-1,-1,-1
452,-1,333.438,228.184,171.576,453.282,0.998542,-1,-1,-1
452,-1,1168.42,305.894,88.33,211.085,0.979855,-1,-1,-1
452,-1,73.9004,346.986,54.6776,126.692,0.918108,-1,-1,-1
452,-1,898.552,297.261,66.457,167.793,0.909054,-1,-1,-1
452,-1,671.553,311.454,68.093,92.628,0.698419,-1,-1,-1
452,-1,827.19,333.064,63.076,118.946,0.677425,-1,-1,-1
452,-1,1138.32,326.485,38.6,148.344,0.656142,-1,-1,-1
453,-1,328.597,260.069,178.411,426.615,0.990948,-1,-1,-1
453,-1,1166.32,301.878,110.67,235.359,0.980408,-1,-1,-1
453,-1,820.535,341.198,52.539,144.26,0.941541,-1,-1,-1
453,-1,47.8839,323.239,74.0891,155.03,0.936099,-1,-1,-1
453,-1,898.734,314.7,71.059,147.809,0.769615,-1,-1,-1
453,-1,1148.26,323.948,49.76,151.816,0.574533,-1,-1,-1
454,-1,337.429,257.202,180.725,434.708,0.99788,-1,-1,-1
454,-1,1188.8,293.2,86.71,260.502,0.974095,-1,-1,-1
454,-1,58.7567,322.215,73.8793,161.463,0.9668,-1,-1,-1
454,-1,1164.21,303.689,64.73,193.152,0.849837,-1,-1,-1
454,-1,906.242,275.374,65.702,190.742,0.793016,-1,-1,-1
454,-1,806.83,337.702,62.185,183.665,0.763096,-1,-1,-1
454,-1,1138.67,328.398,40.44,138.776,0.739448,-1,-1,-1
454,-1,838.832,325.617,56.413,155.414,0.681002,-1,-1,-1
455,-1,318.443,247.016,203.531,469.513,0.996826,-1,-1,-1
455,-1,1182.71,309.25,90.28,248.362,0.986126,-1,-1,-1
455,-1,53.7551,310.754,64.9349,173.347,0.984051,-1,-1,-1
455,-1,1155.34,308.789,51.11,173.615,0.850532,-1,-1,-1
455,-1,902.414,289.025,60.399,181.572,0.783611,-1,-1,-1
455,-1,1131.48,326.652,48.21,137.057,0.767514,-1,-1,-1
455,-1,810.953,310.414,61.561,183.479,0.766702,-1,-1,-1
455,-1,682.812,269.571,58.039,145.103,0.516804,-1,-1,-1
456,-1,333.555,266.718,193.189,430.149,0.998033,-1,-1,-1
456,-1,1192.77,301.591,78.81,250.334,0.987687,-1,-1,-1
456,-1,49.6547,349.002,70.4983,130.815,0.942009,-1,-1,-1
456,-1,895.952,283.194,73.615,184.235,0.932182,-1,-1,-1
456,-1,1150.25,341.731,45.73,121.84,0.859935,-1,-1,-1
456,-1,821.134,339.52,46.851,147.041,0.826992,-1,-1,-1
456,-1,1167.2,311.453,58.23,190.289,0.784851,-1,-1,-1
457,-1,335.398,246.714,207.037,470.285,0.996648,-1,-1,-1
457,-1,1201.95,312.433,77.25,244.842,0.983534,-1,-1,-1
457,-1,53.0478,351.502,70.4392,146.837,0.980094,-1,-1,-1
457,-1,1153.95,345.251,48.83,118.358,0.951954,-1,-1,-1
457,-1,819.285,327.854,52.115,179.017,0.922473,-1,-1,-1
457,-1,896.171,279.71,81.485,174.594,0.86506,-1,-1,-1
457,-1,717.525,307.356,56.766,99.816,0.703311,-1,-1,-1
457,-1,671.874,314.48,55.369,86.722,0.566113,-1,-1,-1
458,-1,328.594,252.935,219.745,559.776,0.996851,-1,-1,-1
458,-1,1201.64,313.427,81.34,227.843,0.985101,-1,-1,-1
458,-1,37.7328,328.455,68.2832,145.757,0.984795,-1,-1,-1
458,-1,819.645,345.201,52.988,142.23,0.935834,-1,-1,-1
458,-1,703.008,291.17,69.279,119.183,0.924325,-1,-1,-1
458,-1,924.088,325.718,49.446,127.997,0.922063,-1,-1,-1
458,-1,1150.38,324.927,52.83,160.903,0.920002,-1,-1,-1
458,-1,676.264,311.435,44.874,79.555,0.739945,-1,-1,-1
458,-1,892.169,343.085,54.532,131.869,0.7059,-1,-1,-1
459,-1,341.268,243.563,216.953,485.893,0.998404,-1,-1,-1
459,-1,1203.29,306.851,80.64,219.571,0.982668,-1,-1,-1
459,-1,43.2423,333.46,57.9907,139.87,0.973869,-1,-1,-1
459,-1,921.73,322.72,52.874,121.879,0.923836,-1,-1,-1
459,-1,1150.84,349.714,54.73,115.6,0.910257,-1,-1,-1
459,-1,811.896,335.532,52.087,142.723,0.903598,-1,-1,-1
459,-1,706.455,312.307,64.806,81.086,0.853861,-1,-1,-1
459,-1,669.85,310.895,55.992,89.672,0.787047,-1,-1,-1
459,-1,898.344,330.823,46.721,139.855,0.724039,-1,-1,-1
460,-1,325.223,245.58,234.475,509.067,0.997402,-1,-1,-1
460,-1,1206.06,305.43,80.23,221.255,0.977983,-1,-1,-1
460,-1,29.8313,323.86,78.7647,151.248,0.977007,-1,-1,-1
460,-1,1148.6,329.565,53.32,140.689,0.957542,-1,-1,-1
460,-1,800.705,311.281,72.975,161.998,0.924174,-1,-1,-1
460,-1,923.255,331.381,50.943,131.949,0.909047,-1,-1,-1
460,-1,696.573,312.683,65.318,86.609,0.815096,-1,-1,-1
460,-1,895.87,329.211,43.236,143.929,0.570351,-1,-1,-1
461,-1,306.511,265.612,238.474,455.234,0.996881,-1,-1,-1
461,-1,26.6762,325.106,74.9668,144.886,0.978662,-1,-1,-1
461,-1,1204.44,304.776,82.04,216.991,0.975239,-1,-1,-1
461,-1,1150.06,323.23,56.09,145.349,0.954247,-1,-1,-1
461,-1,819.327,332.828,51.631,150.38,0.878944,-1,-1,-1
461,-1,924.683,326.445,49.986,128.817,0.877135,-1,-1,-1
461,-1,694.892,278.451,71.056,121.547,0.76054,-1,-1,-1
462,-1,331.514,266.959,226.96,439.015,0.99808,-1,-1,-1
462,-1,12.2976,336.878,78.3089,140.92,0.986343,-1,-1,-1
462,-1,1189.45,285.679,102.5,269.1,0.980575,-1,-1,-1
462,-1,1149.98,320.765,56.57,140.369,0.963873,-1,-1,-1
462,-1,922.97,328.022,49.13,129.24,0.853721,-1,-1,-1
462,-1,802.161,320.379,72.691,156.713,0.847786,-1,-1,-1
462,-1,708.218,307.773,44.051,72.79,0.626531,-1,-1,-1
463,-1,336.128,264.717,228.392,430.805,0.998264,-1,-1,-1
463,-1,1199.13,305.16,91.54,229.259,0.981027,-1,-1,-1
463,-1,1145.48,336.127,56.55,126.147,0.969104,-1,-1,-1
463,-1,11.4551,329.888,66.4468,151.567,0.931879,-1,-1,-1
463,-1,811.976,319.689,62.145,154.477,0.85521,-1,-1,-1
463,-1,922.856,330.689,60.436,109.584,0.823972,-1,-1,-1
463,-1,695.906,282.488,76.576,118.894,0.793738,-1,-1,-1
464,-1,341.968,241.338,185.9,494.104,0.99643,-1,-1,-1
464,-1,1197.59,294.344,100.18,260.827,0.978491,-1,-1,-1
464,-1,1144.32,338.848,58.19,123.929,0.972358,-1,-1,-1
464,-1,799.812,318.134,74.128,165.846,0.819524,-1,-1,-1
464,-1,921.305,333.804,60.471,107.291,0.809004,-1,-1,-1
464,-1,9.58594,320.016,58.8683,161.706,0.782185,-1,-1,-1
464,-1,704.403,311.685,53.141,72.527,0.76411,-1,-1,-1
464,-1,900.372,328.49,42.863,143.228,0.512629,-1,-1,-1
465,-1,337.13,254.147,219.523,454.759,0.997467,-1,-1,-1
465,-1,1199.64,295.996,101.42,256.289,0.973235,-1,-1,-1
465,-1,1147.14,342.238,55.33,122.517,0.972437,-1,-1,-1
465,-1,815.794,317.364,56.574,166.533,0.941558,-1,-1,-1
465,-1,6.83537,321.402,68.1239,164.203,0.912883,-1,-1,-1
465,-1,926.868,302.96,63.484,159.304,0.843768,-1,-1,-1
465,-1,718.091,289.762,54.957,95.241,0.584935,-1,-1,-1
466,-1,336.99,257.044,201.656,493.532,0.996666,-1,-1,-1
466,-1,1141.09,343.706,62.51,114.596,0.971892,-1,-1,-1
466,-1,1213.1,303.447,82.99,240.399,0.961725,-1,-1,-1
466,-1,12.3113,331.733,65.6462,145.76,0.95243,-1,-1,-1
466,-1,815.184,316.16,63.607,174.368,0.91217,-1,-1,-1
466,-1,928.03,306.892,60.954,159.065,0.860454,-1,-1,-1
466,-1,691.921,311.776,61.658,98.56,0.592749,-1,-1,-1
466,-1,1188.9,322.431,61.52,172.894,0.565822,-1,-1,-1
467,-1,341.776,251.315,147.835,459.115,0.992667,-1,-1,-1
467,-1,1218.37,298.617,84.27,241.156,0.981536,-1,-1,-1
467,-1,1153.57,351.439,41.9,106.701,0.835846,-1,-1,-1
467,-1,887.943,292.301,61.256,167.43,0.831325,-1,-1,-1
467,-1,919.983,283.507,66.524,180.729,0.709915,-1,-1,-1
468,-1,339.907,249.13,166.649,505.896,0.997047,-1,-1,-1
468,-1,1143.89,345.887,51.22,128.383,0.97647,-1,-1,-1
468,-1,3.60614,317.018,71.1355,161.329,0.970693,-1,-1,-1
468,-1,1211.91,295.892,103.76,257.282,0.965053,-1,-1,-1
468,-1,811.317,325.352,57.091,155.999,0.91607,-1,-1,-1
468,-1,720.159,276.388,49.867,100.965,0.883096,-1,-1,-1
468,-1,933.493,301.126,48.702,143.068,0.801669,-1,-1,-1
468,-1,697.913,305.919,50.577,89.721,0.697327,-1,-1,-1
468,-1,1167.24,328.747,59.08,161.976,0.613882,-1,-1,-1
469,-1,323.615,255.166,186.312,567.19,0.997181,-1,-1,-1
469,-1,1204.69,291.865,117.4,248.391,0.981554,-1,-1,-1
469,-1,1144.67,325.983,60.8,128.536,0.977143,-1,-1,-1
469,-1,922.74,333.853,47.544,125.854,0.916853,-1,-1,-1
469,-1,705.781,304.884,61.093,90.631,0.86323,-1,-1,-1
469,-1,817.37,323.123,52.225,168.982,0.760514,-1,-1,-1
469,-1,2.4695,315.028,62.9835,155.467,0.534505,-1,-1,-1
470,-1,322.013,267.461,185.395,487.531,0.997474,-1,-1,-1
470,-1,1197.17,294.566,119.53,249.81,0.981014,-1,-1,-1
470,-1,1133.89,335.732,64.4,138.245,0.972757,-1,-1,-1
470,-1,921.791,335.006,60.736,114.257,0.903393,-1,-1,-1
470,-1,803.578,329.312,58.822,148.297,0.730607,-1,-1,-1
470,-1,692.917,315.771,53.066,78.291,0.625618,-1,-1,-1
471,-1,314.297,261.274,158.873,480.513,0.991015,-1,-1,-1
471,-1,1209.45,304.191,102.66,256.159,0.981617,-1,-1,-1
471,-1,1145.41,318.569,59.27,164.681,0.975254,-1,-1,-1
471,-1,924.866,333.88,46.124,126.102,0.827401,-1,-1,-1
471,-1,804.349,330.003,56.729,141.001,0.808981,-1,-1,-1
471,-1,714.055,286.599,63.466,117.112,0.782008,-1,-1,-1
471,-1,896.909,327.881,47.118,137.904,0.582383,-1,-1,-1
472,-1,306.815,258.657,163.203,487.166,0.996338,-1,-1,-1
472,-1,1211.45,306.008,96.04,256.743,0.980421,-1,-1,-1
472,-1,1132,319.687,63.3,159.996,0.977922,-1,-1,-1
472,-1,722.018,308.206,57.738,73.904,0.845506,-1,-1,-1
472,-1,919.5,352.749,56.988,99.893,0.822585,-1,-1,-1
472,-1,808.112,331.353,54.21,147.438,0.821354,-1,-1,-1
472,-1,596.104,325.558,57.835,133.645,0.561887,-1,-1,-1
473,-1,284.906,262.711,196.533,507.756,0.995948,-1,-1,-1
473,-1,1191.43,292.714,124.98,259.079,0.98943,-1,-1,-1
473,-1,1133.34,321.882,60.48,155.811,0.943569,-1,-1,-1
473,-1,908.862,353.897,56.772,120.829,0.937127,-1,-1,-1
473,-1,799.162,333.529,61.203,145.357,0.933702,-1,-1,-1
473,-1,709.426,310.129,65.543,80.843,0.828893,-1,-1,-1
473,-1,586.504,323.553,58.452,142.065,0.601169,-1,-1,-1
474,-1,276.89,253.56,193.32,479.802,0.996992,-1,-1,-1
474,-1,1191.76,292.719,122.9,262.859,0.989649,-1,-1,-1
474,-1,1119.11,351.313,56.88,125.459,0.962549,-1,-1,-1
474,-1,801.806,338.512,61.479,139.616,0.961167,-1,-1,-1
474,-1,889.777,354.969,71.314,119.274,0.867943,-1,-1,-1
474,-1,708.931,301.971,67.041,82.121,0.855298,-1,-1,-1
474,-1,595.947,328.182,49.375,143.98,0.565376,-1,-1,-1
475,-1,269.687,262.009,207.082,529.577,0.99539,-1,-1,-1
475,-1,1191.01,295.985,125.5,254.199,0.989708,-1,-1,-1
475,-1,1115.46,354.74,63.73,100.003,0.974336,-1,-1,-1
475,-1,809.49,324.97,57.755,154.037,0.944895,-1,-1,-1
475,-1,896.748,313.915,75.824,142.923,0.780031,-1,-1,-1
475,-1,702.965,306.983,65.674,94.387,0.717282,-1,-1,-1
476,-1,256.403,256.732,176.515,475.31,0.995642,-1,-1,-1
476,-1,1189.74,294.865,123.96,252.863,0.989356,-1,-1,-1
476,-1,805.207,334.54,65.778,151.542,0.984333,-1,-1,-1
476,-1,1119.77,348.855,55.54,128.497,0.967141,-1,-1,-1
476,-1,899.414,341.143,57.079,128.053,0.876642,-1,-1,-1
476,-1,710.803,302.765,64.766,86.716,0.865567,-1,-1,-1
477,-1,236.597,257.566,198.589,476.653,0.995417,-1,-1,-1
477,-1,1188.63,296.553,123.59,255.013,0.990563,-1,-1,-1
477,-1,1115.71,348.724,59.44,133.826,0.975642,-1,-1,-1
477,-1,798.527,338.381,65.119,147.598,0.97519,-1,-1,-1
477,-1,897.824,358.655,70.906,104.081,0.895462,-1,-1,-1
477,-1,693.122,297.613,63.161,91.297,0.808835,-1,-1,-1
477,-1,591.152,337.052,54.024,133.492,0.780802,-1,-1,-1
478,-1,226.372,257.544,250.561,456.889,0.997773,-1,-1,-1
478,-1,1195.17,299.537,121.14,253.399,0.987968,-1,-1,-1
478,-1,1109.04,336.754,64.71,135.896,0.982341,-1,-1,-1
478,-1,792.712,336.092,69.387,141.864,0.955614,-1,-1,-1
478,-1,908.113,341.822,53.826,125.129,0.889511,-1,-1,-1
478,-1,600.273,358.061,56.143,104.483,0.77214,-1,-1,-1
478,-1,858.591,337.291,60.132,123.036,0.507466,-1,-1,-1
479,-1,217.754,270.301,200.833,488.693,0.996091,-1,-1,-1
479,-1,1118.39,329.133,58.42,144.691,0.985276,-1,-1,-1
479,-1,1211.67,296.154,87.72,245.384,0.969852,-1,-1,-1
480,-1,194.499,293.434,261.558,430.683,0.995755,-1,-1,-1
480,-1,1114.25,333.117,68.97,149.661,0.987449,-1,-1,-1
480,-1,1220.6,307.45,80.74,261.023,0.987445,-1,-1,-1
480,-1,798.026,326.888,73.8,153.289,0.956153,-1,-1,-1
481,-1,215.775,282.398,251.783,441.603,0.995314,-1,-1,-1
481,-1,1208.39,298.74,103.73,268.584,0.986043,-1,-1,-1
481,-1,1119.41,334.397,53.63,139.581,0.974348,-1,-1,-1
481,-1,795.5,327.698,70.226,137.044,0.897482,-1,-1,-1
481,-1,913.27,344.513,44.497,131.799,0.805849,-1,-1,-1
482,-1,214.596,286.327,253.326,446.527,0.993582,-1,-1,-1
482,-1,1215.25,305.675,100.14,259.75,0.987277,-1,-1,-1
482,-1,1112.46,334.453,69.08,140.834,0.97869,-1,-1,-1
482,-1,808.432,334.152,62.511,119.203,0.955509,-1,-1,-1
482,-1,908.235,321.724,48.512,147.728,0.816292,-1,-1,-1
482,-1,671.762,314.279,70.044,115.78,0.606463,-1,-1,-1
482,-1,857.964,325.568,52.424,134.156,0.568464,-1,-1,-1
483,-1,199.223,296.708,262.602,439.065,0.993786,-1,-1,-1
483,-1,1221.08,299.997,105.11,259.2,0.988466,-1,-1,-1
483,-1,1118.7,347.493,70.85,130.079,0.96905,-1,-1,-1
483,-1,795.696,350.061,61.234,122.685,0.949458,-1,-1,-1
483,-1,906.139,346.817,49.64,112.213,0.816243,-1,-1,-1
483,-1,697.71,316.576,63.154,100.42,0.522837,-1,-1,-1
484,-1,215.347,291.649,225.637,454.856,0.993194,-1,-1,-1
484,-1,1224.44,302.866,106.59,257.672,0.985644,-1,-1,-1
484,-1,1116.03,333.758,90.96,152.009,0.965041,-1,-1,-1
484,-1,810.263,351.58,59.091,139.424,0.954157,-1,-1,-1
484,-1,908.858,346.03,48.039,116.9,0.791609,-1,-1,-1
484,-1,374.812,326.857,79.339,96.205,0.554337,-1,-1,-1
485,-1,221.757,313.266,250.168,446.266,0.992207,-1,-1,-1
485,-1,1227.04,299.885,108.37,255.479,0.982715,-1,-1,-1
485,-1,810.29,342.599,54.558,147.968,0.949562,-1,-1,-1
485,-1,1121.34,332.171,74,148.107,0.930205,-1,-1,-1
485,-1,708.703,303.928,57.879,89.424,0.906642,-1,-1,-1
485,-1,627.963,335.167,52.985,114.192,0.777484,-1,-1,-1
485,-1,919.054,337.993,50.693,119.614,0.724801,-1,-1,-1
485,-1,373.635,326.902,71.708,180.515,0.582223,-1,-1,-1
486,-1,219.389,306.084,243.603,465.517,0.989221,-1,-1,-1
486,-1,1123,351.783,64.32,101.02,0.981792,-1,-1,-1
486,-1,1227.87,292.357,106.23,264.16,0.981145,-1,-1,-1
486,-1,814.168,330.013,59.648,150.025,0.97118,-1,-1,-1
486,-1,632.898,325.276,51.253,129.129,0.908847,-1,-1,-1
486,-1,712.616,312.884,54.217,80.883,0.895839,-1,-1,-1
486,-1,913.189,355.633,51.42,100.788,0.879408,-1,-1,-1
486,-1,380.147,323.969,72.06,220.969,0.60217,-1,-1,-1
487,-1,215.165,268.309,198.642,490.525,0.990769,-1,-1,-1
487,-1,1229.04,300.326,116.79,262.882,0.985021,-1,-1,-1
487,-1,1119.68,335.811,67.37,117.683,0.983001,-1,-1,-1
487,-1,812.309,329.743,57.921,150.186,0.948596,-1,-1,-1
487,-1,704.309,271.427,75.65,129.4,0.910267,-1,-1,-1
487,-1,912.982,334.356,51.088,130.483,0.811431,-1,-1,-1
487,-1,629.33,322.73,53.086,115.858,0.679746,-1,-1,-1
487,-1,688.643,302.668,52.193,84.222,0.58906,-1,-1,-1
487,-1,332.701,319.908,109.526,348.654,0.578589,-1,-1,-1
488,-1,197.038,282.589,227.381,495.743,0.994094,-1,-1,-1
488,-1,1242.04,280.012,107.97,295.649,0.981916,-1,-1,-1
488,-1,1146.99,327.834,62.19,153.937,0.977881,-1,-1,-1
488,-1,811.787,337.067,62.364,156.547,0.972379,-1,-1,-1
488,-1,920.262,340.914,45.616,111.895,0.895065,-1,-1,-1
488,-1,714.055,284.75,67.393,106.866,0.887365,-1,-1,-1
488,-1,674.518,306.583,53.937,93.09,0.573631,-1,-1,-1
489,-1,196.046,288.317,218.931,493.222,0.993815,-1,-1,-1
489,-1,1242.67,303.074,105.55,287.57,0.988326,-1,-1,-1
489,-1,1128.12,329.464,69.54,137.256,0.985089,-1,-1,-1
489,-1,810.743,330.485,60.562,162.599,0.971513,-1,-1,-1
489,-1,722.63,282.636,52.443,99.706,0.930404,-1,-1,-1
489,-1,919.137,348.277,46.811,104.499,0.905413,-1,-1,-1
489,-1,700.368,308.411,51.787,86.585,0.894244,-1,-1,-1
489,-1,635.139,316.446,45.817,100.298,0.531435,-1,-1,-1
490,-1,190.559,288.087,223.117,495.295,0.993042,-1,-1,-1
490,-1,1128.94,325.098,62.84,147.96,0.989357,-1,-1,-1
490,-1,1246.94,295.257,110.81,294.867,0.986263,-1,-1,-1
490,-1,811.788,326.505,56.706,156.881,0.958852,-1,-1,-1
490,-1,711.985,287.574,51.213,114.755,0.897675,-1,-1,-1
490,-1,938.527,331.855,46.52,110.96,0.870328,-1,-1,-1
490,-1,383.784,320.526,62.854,115.049,0.692051,-1,-1,-1
491,-1,201.886,275.944,188.721,479.754,0.992864,-1,-1,-1
491,-1,1132.37,335.896,61.07,137.9,0.989497,-1,-1,-1
491,-1,1248.97,283.606,113.71,272.168,0.985487,-1,-1,-1
491,-1,723.28,290.656,70.447,115.023,0.927539,-1,-1,-1
491,-1,928.91,353.871,54.218,79.071,0.926025,-1,-1,-1
491,-1,816.347,334.67,55.294,147.932,0.908501,-1,-1,-1
491,-1,703.571,316.277,45.497,91.86,0.809018,-1,-1,-1
491,-1,343.538,318.324,94.523,382.331,0.791751,-1,-1,-1
491,-1,645.496,337.81,42.269,92.013,0.77432,-1,-1,-1
491,-1,891.26,339.587,63.66,127.579,0.642724,-1,-1,-1
492,-1,201.859,281.508,201.528,498.783,0.994756,-1,-1,-1
492,-1,1138.38,313.993,56.57,145.674,0.990617,-1,-1,-1
492,-1,1250.1,266.625,121.31,310.776,0.982593,-1,-1,-1
492,-1,819.175,337.776,52.345,168.864,0.951561,-1,-1,-1
492,-1,930.319,349.707,49.716,108.115,0.916226,-1,-1,-1
492,-1,728.872,293.033,63.828,111.603,0.865446,-1,-1,-1
492,-1,346.605,295.656,92.62,421.057,0.826491,-1,-1,-1
492,-1,380.814,328.127,69.602,192.712,0.814031,-1,-1,-1
492,-1,699.047,312.793,49.106,87.488,0.767409,-1,-1,-1
492,-1,641.778,326.296,42.512,91.695,0.601117,-1,-1,-1
493,-1,174.479,278.934,237.794,531.48,0.992176,-1,-1,-1
493,-1,1141.55,324.467,61.09,145.327,0.990522,-1,-1,-1
493,-1,1252.08,290.073,117.19,279.406,0.984161,-1,-1,-1
493,-1,819.977,321.785,53.932,176.302,0.929536,-1,-1,-1
493,-1,936.742,336.989,54.863,134.453,0.908323,-1,-1,-1
493,-1,714.272,312.208,56.169,87.53,0.889889,-1,-1,-1
493,-1,371.865,329.115,70.672,257.271,0.813714,-1,-1,-1
494,-1,177.064,297.414,275.943,474.486,0.995926,-1,-1,-1
494,-1,1134.96,306.234,70.71,165.606,0.99087,-1,-1,-1
494,-1,1251.17,300.18,128.97,279.419,0.979799,-1,-1,-1
494,-1,934.248,340.595,53.363,132.354,0.749802,-1,-1,-1
494,-1,328.196,314.817,111.107,312.69,0.645744,-1,-1,-1
495,-1,154.564,279.792,275.396,550.284,0.996172,-1,-1,-1
495,-1,1137.05,340.359,75.22,161.926,0.983668,-1,-1,-1
495,-1,1271.79,300.035,78.82,259.98,0.980097,-1,-1,-1
495,-1,822.547,343.691,60.543,158.491,0.956567,-1,-1,-1
495,-1,926.679,349.818,55.171,125.326,0.899375,-1,-1,-1
495,-1,664.47,330.151,43.482,100.782,0.810364,-1,-1,-1
495,-1,730.566,290.704,62.34,120.47,0.748955,-1,-1,-1
495,-1,362.56,343.9,72.818,223.907,0.704619,-1,-1,-1
496,-1,163.921,277.348,272.609,536.927,0.997486,-1,-1,-1
496,-1,1146.99,337.598,58.74,131.459,0.984399,-1,-1,-1
496,-1,1277.17,289.862,105.36,283.251,0.982249,-1,-1,-1
496,-1,816.026,325.672,80.571,177.636,0.936383,-1,-1,-1
496,-1,939.061,305.049,62.319,169.689,0.900679,-1,-1,-1
496,-1,721.357,272.773,77.886,156.946,0.81973,-1,-1,-1
496,-1,697.394,285.833,52.137,143.236,0.729038,-1,-1,-1
496,-1,376.12,346.831,81.739,142.321,0.715069,-1,-1,-1
496,-1,357.507,329.589,86.965,391.546,0.679706,-1,-1,-1
496,-1,674.986,304.101,41.939,114.724,0.511092,-1,-1,-1
497,-1,168.022,287.109,245.788,516.588,0.993916,-1,-1,-1
497,-1,1276.85,307.13,105.55,279.366,0.984496,-1,-1,-1
497,-1,1137.55,348.272,80.18,144.693,0.983311,-1,-1,-1
497,-1,929.407,351.773,60.723,126.374,0.945341,-1,-1,-1
497,-1,726.491,284.934,77.41,124.458,0.933621,-1,-1,-1
497,-1,811.978,346.399,70.199,146.667,0.924132,-1,-1,-1
497,-1,355.827,325.664,81.518,266.851,0.795135,-1,-1,-1
497,-1,704.694,321.486,50.877,99.529,0.729212,-1,-1,-1
497,-1,653.831,341.782,58.321,87.628,0.535473,-1,-1,-1
498,-1,146.189,280.714,264.431,586.799,0.995169,-1,-1,-1
498,-1,1147.59,331.816,67.22,142.006,0.981841,-1,-1,-1
498,-1,1267.39,292.268,126.69,301.091,0.966213,-1,-1,-1
498,-1,831.226,320.494,70.15,163.014,0.925392,-1,-1,-1
498,-1,338.613,326.457,92.41,440.466,0.906197,-1,-1,-1
498,-1,923.934,334.761,53.897,144.419,0.85023,-1,-1,-1
498,-1,717.96,298.648,63.351,110.428,0.798737,-1,-1,-1
498,-1,960.336,304.734,60.014,161.899,0.693998,-1,-1,-1
498,-1,675.645,313.298,55.927,110.064,0.525527,-1,-1,-1
499,-1,128.088,258.122,272.793,600.486,0.995225,-1,-1,-1
499,-1,1135.27,342.45,73.76,145.917,0.980449,-1,-1,-1
499,-1,1263.08,293.353,130.88,276.749,0.968604,-1,-1,-1
499,-1,825.803,338.543,57.62,133.165,0.92047,-1,-1,-1
499,-1,726.824,314.463,57.261,97.187,0.88293,-1,-1,-1
499,-1,354.111,313.181,81.574,266.285,0.870142,-1,-1,-1
499,-1,939.316,348.909,53.211,122.797,0.854133,-1,-1,-1
500,-1,121.278,278.744,270.363,547.904,0.996437,-1,-1,-1
500,-1,1150.32,341.29,61.93,128.318,0.984746,-1,-1,-1
500,-1,1276.11,291.08,95.79,270.834,0.984479,-1,-1,-1
500,-1,340.245,330.864,97.509,336.114,0.962232,-1,-1,-1
500,-1,812.076,333.281,73.124,134.095,0.922122,-1,-1,-1
500,-1,750.166,293.187,54.508,101.836,0.906715,-1,-1,-1
500,-1,939.811,336.821,46.155,118.228,0.680401,-1,-1,-1
501,-1,128.899,271.072,228.064,556.345,0.995714,-1,-1,-1
501,-1,1136.52,334.007,84.4,150.036,0.980669,-1,-1,-1
501,-1,1273.19,282.637,130.04,293.301,0.980667,-1,-1,-1
501,-1,342.417,294.323,89.048,330.912,0.93803,-1,-1,-1
501,-1,826.022,330.937,57.1,144.105,0.915331,-1,-1,-1
501,-1,750.408,311.425,58.076,91.9,0.913692,-1,-1,-1
501,-1,666.556,326.249,49.808,91.043,0.824476,-1,-1,-1
501,-1,726.4,316.312,48.591,95.146,0.665182,-1,-1,-1
501,-1,921.826,337.641,51.454,117.841,0.578584,-1,-1,-1
501,-1,689.535,308.189,53.673,121.05,0.523328,-1,-1,-1
502,-1,114.592,280.123,244.762,569.756,0.994387,-1,-1,-1
502,-1,1293.68,282.295,112.62,290.563,0.988903,-1,-1,-1
502,-1,1146.6,334.006,59.39,132.734,0.984882,-1,-1,-1
502,-1,821.081,329.162,80.609,138.421,0.939831,-1,-1,-1
502,-1,333.341,314.193,91.367,317.766,0.938074,-1,-1,-1
502,-1,663.292,325.775,53.308,110.702,0.908472,-1,-1,-1
502,-1,754.031,315.605,53.345,88.172,0.874168,-1,-1,-1
502,-1,722.125,307.045,43.039,90.884,0.576052,-1,-1,-1
502,-1,924.157,333.992,47.827,113.195,0.544898,-1,-1,-1
503,-1,79.3211,254.427,260.967,636.857,0.997177,-1,-1,-1
503,-1,1142.74,325.893,59.87,130.011,0.988956,-1,-1,-1
503,-1,1294.67,283.252,115.08,286.739,0.988259,-1,-1,-1
503,-1,331.344,287.529,91.323,247.305,0.945365,-1,-1,-1
503,-1,816.879,327.301,82.772,138.535,0.941875,-1,-1,-1
503,-1,667.777,310.524,51.488,110.443,0.939478,-1,-1,-1
503,-1,21.0497,303.761,54.0669,162.131,0.67328,-1,-1,-1
503,-1,754.958,309.092,49.775,86.395,0.634314,-1,-1,-1
504,-1,72.3659,259.735,275.988,604.898,0.995519,-1,-1,-1
504,-1,1294.09,284.818,114.92,284.373,0.989145,-1,-1,-1
504,-1,1141.71,327.579,65.06,133.407,0.985464,-1,-1,-1
504,-1,332.536,291.783,85.615,228.389,0.960447,-1,-1,-1
504,-1,826.28,335.632,54.511,137.035,0.934337,-1,-1,-1
504,-1,658.139,321.755,63.968,118.326,0.89932,-1,-1,-1
504,-1,924.321,348.819,53.388,116.9,0.636649,-1,-1,-1
504,-1,8.30611,293.13,72.9583,186.016,0.621583,-1,-1,-1
505,-1,45.7096,260.683,323.283,656.601,0.997426,-1,-1,-1
505,-1,1147.71,310.727,58.13,142.613,0.990647,-1,-1,-1
505,-1,1295.02,287.406,116.63,283.281,0.988796,-1,-1,-1
505,-1,670.861,325.208,47.924,102.068,0.959368,-1,-1,-1
505,-1,321.961,325.656,83.39,185.236,0.94869,-1,-1,-1
505,-1,817.06,324.69,61.486,154.365,0.934696,-1,-1,-1
505,-1,927.955,323.461,51.736,129.779,0.570368,-1,-1,-1
506,-1,56.2581,241.524,271.263,651.952,0.998447,-1,-1,-1
506,-1,1290.71,283.67,127.45,288.354,0.98991,-1,-1,-1
506,-1,1142.01,326.134,59.7,146.695,0.988218,-1,-1,-1
506,-1,324.025,326.36,83.697,170.031,0.96621,-1,-1,-1
506,-1,676.413,327.011,46.146,96.858,0.963218,-1,-1,-1
506,-1,818.127,325.655,62.076,157.602,0.947186,-1,-1,-1
506,-1,926.374,338.718,51.786,114.147,0.689192,-1,-1,-1
507,-1,40.6881,248.45,308.398,638.851,0.991382,-1,-1,-1
507,-1,298.515,304.052,99.36,225.888,0.976953,-1,-1,-1
507,-1,1293.84,279.427,111.62,270.716,0.962892,-1,-1,-1
507,-1,1141.03,326.105,58.44,138.067,0.934192,-1,-1,-1
508,-1,45.6836,253.467,290.49,627.288,0.995641,-1,-1,-1
508,-1,1298.2,291.669,123.12,285.427,0.993123,-1,-1,-1
508,-1,323.719,322.662,83.372,179.678,0.97604,-1,-1,-1
508,-1,1137.51,344.599,57.15,111.904,0.975417,-1,-1,-1
508,-1,681.662,321.39,69.293,97.542,0.973551,-1,-1,-1
508,-1,817.665,342.064,60.728,131.577,0.927446,-1,-1,-1
508,-1,913.48,279.451,79.987,171.093,0.833245,-1,-1,-1
508,-1,963.759,291.528,50.591,160.657,0.714493,-1,-1,-1
509,-1,20.9158,234.292,356.766,653.288,0.997266,-1,-1,-1
509,-1,1304.38,276.649,117.23,310.575,0.993158,-1,-1,-1
509,-1,823.479,335.031,66.315,130.145,0.977133,-1,-1,-1
509,-1,321.053,292.37,87.922,301.039,0.965631,-1,-1,-1
509,-1,690.519,291.727,64.442,135.755,0.96183,-1,-1,-1
509,-1,1152.97,330.242,53.35,130.708,0.952225,-1,-1,-1
509,-1,936.801,287.008,68.249,166.944,0.91205,-1,-1,-1
509,-1,735.095,296.621,57.931,98.508,0.523025,-1,-1,-1
510,-1,21.9107,219.917,300.155,673.916,0.998332,-1,-1,-1
510,-1,826.418,297.818,63.17,169.221,0.989858,-1,-1,-1
510,-1,1309.63,273.687,143.56,320.975,0.989564,-1,-1,-1
510,-1,1148.84,328.044,71.74,120.471,0.979441,-1,-1,-1
510,-1,681.777,300.256,64.716,143.233,0.971321,-1,-1,-1
510,-1,322.371,314.577,82.558,218.401,0.95238,-1,-1,-1
510,-1,746.82,290.123,45.579,115.504,0.885215,-1,-1,-1
510,-1,719.147,288.646,50.291,128.984,0.660396,-1,-1,-1
510,-1,1302.88,314.703,74.59,174.448,0.533672,-1,-1,-1
511,-1,20.1502,239.94,297.729,657.155,0.997818,-1,-1,-1
511,-1,1319.05,283.377,133.29,296.497,0.989089,-1,-1,-1
511,-1,832.743,302.858,59.856,167.672,0.974985,-1,-1,-1
511,-1,681.596,324.646,66.978,122.653,0.972643,-1,-1,-1
511,-1,1157.38,330.945,62.85,122.182,0.971156,-1,-1,-1
511,-1,307.919,310.819,102.741,231.438,0.961908,-1,-1,-1
511,-1,945.544,340.751,45.933,107.187,0.789197,-1,-1,-1
511,-1,738.549,303.688,39.532,114.974,0.643253,-1,-1,-1
511,-1,977.734,322.737,38.226,97.189,0.573471,-1,-1,-1
511,-1,760.253,267.08,67.377,146.371,0.559863,-1,-1,-1
512,-1,4.61206,217.905,323.706,690.407,0.998833,-1,-1,-1
512,-1,1310.14,288.262,151.41,278.95,0.991737,-1,-1,-1
512,-1,1160.07,328.368,70.75,144.332,0.977341,-1,-1,-1
512,-1,323.498,302.522,83.507,240.821,0.951056,-1,-1,-1
512,-1,848.125,315.93,53.615,155.274,0.941114,-1,-1,-1
512,-1,686.168,292.756,43.333,127.199,0.939258,-1,-1,-1
512,-1,739.326,256.373,77.783,154.21,0.913814,-1,-1,-1
512,-1,721.942,276.387,39.314,143.72,0.819348,-1,-1,-1
512,-1,958.294,342.944,56.196,100.043,0.624546,-1,-1,-1
513,-1,13.3449,219.483,297.181,714.79,0.997619,-1,-1,-1
513,-1,1163.46,322.173,57.57,131.244,0.990164,-1,-1,-1
513,-1,1304.4,270.294,146.99,288.148,0.985435,-1,-1,-1
513,-1,321.88,294.426,88.826,260.145,0.969161,-1,-1,-1
513,-1,851.51,319.256,56.289,142.584,0.965741,-1,-1,-1
513,-1,697.152,299.268,63.651,125.235,0.900745,-1,-1,-1
513,-1,674.949,317.733,48.711,100.936,0.892948,-1,-1,-1
513,-1,746.586,290.788,47.704,126.958,0.741948,-1,-1,-1
513,-1,950.266,342.408,48.547,95.805,0.713951,-1,-1,-1
513,-1,758.094,246.127,62.268,121.242,0.677632,-1,-1,-1
514,-1,0,210.045,301.512,707.16,0.997923,-1,-1,-1
514,-1,1330.37,283.497,124.63,295.254,0.994021,-1,-1,-1
514,-1,1167.18,305.266,59.03,132.464,0.988391,-1,-1,-1
514,-1,841.863,306.259,64.15,162.617,0.976127,-1,-1,-1
514,-1,317.195,297.128,89.685,233.476,0.955918,-1,-1,-1
514,-1,766.901,240.904,67.494,117.025,0.870319,-1,-1,-1
514,-1,697.858,302.964,50.099,116.543,0.867597,-1,-1,-1
514,-1,955.802,334.531,51.758,98.892,0.773944,-1,-1,-1
514,-1,739.572,282.438,41.131,107.796,0.588275,-1,-1,-1
515,-1,0,231.504,303.619,705.977,0.998173,-1,-1,-1
515,-1,1168.61,301.648,62.69,138.765,0.988891,-1,-1,-1
515,-1,1330.26,263.495,142.91,281.699,0.986889,-1,-1,-1
515,-1,825.335,290.32,79.456,156.56,0.978107,-1,-1,-1
515,-1,311.024,281.699,105.526,290.876,0.972946,-1,-1,-1
515,-1,766.49,246.208,65.869,116.952,0.923869,-1,-1,-1
515,-1,711.64,299.931,42.266,117.891,0.875793,-1,-1,-1
515,-1,956.51,340.323,64.03,86.048,0.787385,-1,-1,-1
515,-1,741.035,281.656,46.867,108.909,0.65634,-1,-1,-1
515,-1,672.734,315.575,59.628,98.556,0.597055,-1,-1,-1
515,-1,926.589,341.862,47.353,121.626,0.590427,-1,-1,-1
516,-1,0,230.547,296.516,709.649,0.995009,-1,-1,-1
516,-1,1334.74,267.744,126.92,313.202,0.993619,-1,-1,-1
516,-1,1167.82,301.261,63.4,138.446,0.990871,-1,-1,-1
516,-1,309.555,292.766,105.126,187.65,0.980489,-1,-1,-1
516,-1,845.829,292.232,61.119,164.272,0.962725,-1,-1,-1
516,-1,712.251,279.449,43.528,125.77,0.907806,-1,-1,-1
516,-1,726.88,260.823,71.139,161.337,0.844109,-1,-1,-1
516,-1,671.984,268.057,59.793,140.922,0.633666,-1,-1,-1
516,-1,780.814,262.353,58.67,136.34,0.504222,-1,-1,-1
517,-1,0,218.439,297.738,722.508,0.997526,-1,-1,-1
517,-1,1336.33,264.054,131.31,301.662,0.995795,-1,-1,-1
517,-1,1173.46,293.27,60.85,144.346,0.990716,-1,-1,-1
517,-1,825.023,295.354,77.206,147.626,0.979769,-1,-1,-1
517,-1,298.708,300.255,99.738,230.696,0.968651,-1,-1,-1
517,-1,715.582,287.044,41.435,105.699,0.94278,-1,-1,-1
517,-1,764.802,261.793,70.369,130.201,0.866019,-1,-1,-1
517,-1,739.033,265.758,39.984,113.791,0.711416,-1,-1,-1
517,-1,943.819,322.037,53.673,122.774,0.691792,-1,-1,-1
518,-1,0,231.627,264.413,709.815,0.997264,-1,-1,-1
518,-1,1346.45,260.459,114.23,318.76,0.989764,-1,-1,-1
518,-1,1171.67,301.686,57.05,144.39,0.983772,-1,-1,-1
518,-1,315.902,272.891,90.993,270.466,0.980638,-1,-1,-1
518,-1,709.556,292.544,55.946,96.433,0.970545,-1,-1,-1
518,-1,822.388,289.737,75.885,154.653,0.959157,-1,-1,-1
518,-1,950.734,329.65,51.316,83.56,0.818424,-1,-1,-1
518,-1,738.032,262.541,66.649,137.449,0.77725,-1,-1,-1
519,-1,3.10526,211.289,244.196,777.762,0.994196,-1,-1,-1
519,-1,1155.98,314.099,67.93,113.004,0.984105,-1,-1,-1
519,-1,1356.96,258.773,136.66,307.352,0.97891,-1,-1,-1
519,-1,700.703,291.021,63.32,109.527,0.970883,-1,-1,-1
519,-1,835.001,297.988,61.429,140.978,0.959467,-1,-1,-1
519,-1,307.889,265.366,89.51,270.919,0.951187,-1,-1,-1
519,-1,941.82,322.4,56.276,116.858,0.782214,-1,-1,-1
519,-1,1332.85,266.633,73.57,270.807,0.713079,-1,-1,-1
519,-1,1006.24,309.125,51.52,97.322,0.615078,-1,-1,-1
520,-1,1167.23,300.037,56.13,141.727,0.991119,-1,-1,-1
520,-1,0,201.609,223.639,774.232,0.989796,-1,-1,-1
520,-1,295.258,270.745,120.205,273.226,0.985432,-1,-1,-1
520,-1,1339.44,260.468,156.08,296.37,0.982145,-1,-1,-1
520,-1,710.62,259.984,64.768,150.821,0.967982,-1,-1,-1
520,-1,841.985,290.173,60.664,153.631,0.949444,-1,-1,-1
520,-1,937.778,311.881,48.495,129.224,0.890782,-1,-1,-1
520,-1,765.266,252.952,72.825,143.641,0.845058,-1,-1,-1
520,-1,965.908,299.677,55.012,143.9,0.636963,-1,-1,-1
520,-1,685.454,278.148,52.655,135.31,0.549564,-1,-1,-1
521,-1,0,173.696,255.876,867.744,0.993615,-1,-1,-1
521,-1,1352.43,268.296,135.87,314.075,0.991254,-1,-1,-1
521,-1,1162.7,312.489,67.24,134.197,0.990513,-1,-1,-1
521,-1,721.03,288.018,56.186,116.237,0.967918,-1,-1,-1
521,-1,312.626,261.114,99.652,287.057,0.954784,-1,-1,-1
521,-1,849.29,299.755,51.681,144.872,0.892639,-1,-1,-1
521,-1,928.192,341.65,67.75,89.454,0.874771,-1,-1,-1
521,-1,691.464,296.787,54.602,119.579,0.560751,-1,-1,-1
522,-1,1182.48,320.771,54.72,117.831,0.990299,-1,-1,-1
522,-1,1359.03,278.131,134.38,308.708,0.984825,-1,-1,-1
522,-1,0,200.094,176.121,608.227,0.95241,-1,-1,-1
522,-1,967.564,257.874,76.636,160.806,0.833976,-1,-1,-1
522,-1,844.135,302.765,58.686,153.695,0.791637,-1,-1,-1
522,-1,717.055,294.207,57.988,102.973,0.788329,-1,-1,-1
523,-1,1356.42,261.512,134.16,335.028,0.991864,-1,-1,-1
523,-1,285.162,276.707,116.664,294.855,0.989102,-1,-1,-1
523,-1,1178.28,311.398,55.54,119.984,0.988288,-1,-1,-1
523,-1,840.914,291.394,65.751,185.554,0.98083,-1,-1,-1
523,-1,0,213.387,177.156,695.572,0.963806,-1,-1,-1
523,-1,710.532,287.489,51.539,129.948,0.888063,-1,-1,-1
523,-1,743.32,291.535,55.269,115.505,0.780049,-1,-1,-1
523,-1,909.787,312.494,64.615,139.223,0.768446,-1,-1,-1
523,-1,762.058,258.304,72.557,129.833,0.69789,-1,-1,-1
523,-1,966.14,309.176,55.32,123.477,0.607451,-1,-1,-1
524,-1,1351.5,274.152,136.82,309.881,0.995747,-1,-1,-1
524,-1,1165.08,306.137,59.4,140.865,0.990383,-1,-1,-1
524,-1,271.615,277.283,113.79,278.2,0.983856,-1,-1,-1
524,-1,840.175,302.515,64.126,156.652,0.965515,-1,-1,-1
524,-1,0,238.811,160.786,559.334,0.961639,-1,-1,-1
524,-1,898.917,346.004,63.243,113.014,0.850943,-1,-1,-1
525,-1,1358.04,271.249,128.54,311.056,0.995367,-1,-1,-1
525,-1,1168.84,290.618,70.7,158.043,0.982979,-1,-1,-1
525,-1,264.223,286.38,104.848,226.721,0.978229,-1,-1,-1
525,-1,836.625,311.517,67.689,154.767,0.908076,-1,-1,-1
525,-1,0,176.933,214.102,768.999,0.896845,-1,-1,-1
525,-1,966.365,185.786,85.145,246.304,0.54837,-1,-1,-1
525,-1,888.962,311.704,61.348,175.873,0.504562,-1,-1,-1
526,-1,258.79,275.299,127.108,302.822,0.995206,-1,-1,-1
526,-1,1348.33,274.357,147.72,315.272,0.994456,-1,-1,-1
526,-1,821.201,305.69,67.409,163.47,0.959807,-1,-1,-1
526,-1,0,256.989,131.977,450.924,0.95908,-1,-1,-1
526,-1,1154.49,293.463,60.08,138.282,0.958648,-1,-1,-1
526,-1,10.6818,225.932,254.95,805.598,0.901248,-1,-1,-1
526,-1,906.262,342.647,59.653,99.068,0.883652,-1,-1,-1
526,-1,704.985,283.187,44.786,121.445,0.724913,-1,-1,-1
526,-1,754.825,269.22,83.777,152.274,0.56922,-1,-1,-1
527,-1,248.308,273.875,131.823,301.04,0.995616,-1,-1,-1
527,-1,1355.14,268.856,136.23,314.798,0.993897,-1,-1,-1
527,-1,1152.63,319.526,70.42,134.272,0.987288,-1,-1,-1
527,-1,796.434,300.999,81.572,158.883,0.979825,-1,-1,-1
527,-1,906.722,328.559,53.301,114.654,0.944721,-1,-1,-1
527,-1,0,287.23,111.578,381.573,0.934232,-1,-1,-1
527,-1,6.80554,242.892,213.455,807.898,0.921292,-1,-1,-1
527,-1,747.751,287.98,60.815,114.838,0.842185,-1,-1,-1
527,-1,709.22,292.9,56.385,104.545,0.792325,-1,-1,-1
527,-1,675.811,295.689,43.311,110.57,0.620567,-1,-1,-1
527,-1,958.494,322.917,41.946,101.48,0.58163,-1,-1,-1
528,-1,1351.26,253.764,136.43,330.543,0.991967,-1,-1,-1
528,-1,1139.46,302.317,78.05,136.123,0.988932,-1,-1,-1
528,-1,229.578,290.49,129.718,272.563,0.979167,-1,-1,-1
528,-1,809.165,305.2,67.283,138.75,0.958528,-1,-1,-1
528,-1,692.185,295.655,55.069,122.27,0.94185,-1,-1,-1
528,-1,0,314.931,89.5573,279.464,0.899982,-1,-1,-1
528,-1,886.962,326.169,56.392,127.665,0.892467,-1,-1,-1
528,-1,723.876,267.309,70.937,142.286,0.683638,-1,-1,-1
528,-1,927.113,330.133,47.318,112.485,0.579372,-1,-1,-1
529,-1,1350.36,254.336,132.16,328.629,0.990035,-1,-1,-1
529,-1,1143.19,295.343,62.79,139.492,0.987904,-1,-1,-1
529,-1,793.051,295.016,84.547,159.016,0.986156,-1,-1,-1
529,-1,232.241,251.878,104.62,309.809,0.960139,-1,-1,-1
529,-1,692.479,277.629,55.947,159.757,0.951823,-1,-1,-1
529,-1,897.435,326.47,59.478,132.068,0.831104,-1,-1,-1
529,-1,719.942,256.743,86.994,164.829,0.529672,-1,-1,-1
530,-1,1138.65,301.005,58.88,127.386,0.988348,-1,-1,-1
530,-1,798.228,296.62,76.873,161.773,0.988022,-1,-1,-1
530,-1,1357.01,257.381,127.06,327.925,0.979186,-1,-1,-1
530,-1,229.134,284.168,107.195,261.456,0.977866,-1,-1,-1
530,-1,690.05,287.552,46.564,124.225,0.947103,-1,-1,-1
530,-1,861.999,322.329,60.908,131.344,0.817067,-1,-1,-1
530,-1,1317.88,271.985,90.17,297.512,0.757935,-1,-1,-1
530,-1,895.736,315.818,54.323,119.86,0.757167,-1,-1,-1
530,-1,940.042,324.513,51.977,105.761,0.640425,-1,-1,-1
530,-1,713.518,258.938,81.11,145.585,0.51105,-1,-1,-1
531,-1,1342.15,255.532,137.98,341.68,0.993505,-1,-1,-1
531,-1,1124.09,297.57,63.66,143.179,0.992307,-1,-1,-1
531,-1,684.179,285.293,48.225,129.999,0.979581,-1,-1,-1
531,-1,793.231,301.408,75.226,140.043,0.971876,-1,-1,-1
531,-1,214.753,288.204,112.117,252.523,0.970744,-1,-1,-1
531,-1,864.744,325.897,64.147,118.483,0.932688,-1,-1,-1
531,-1,1314.11,255.155,75.71,257.438,0.788963,-1,-1,-1
531,-1,929.952,323.429,47.655,107.871,0.593705,-1,-1,-1
531,-1,958.466,298.428,42.044,101.303,0.573098,-1,-1,-1
531,-1,760.745,251.234,69.585,194.44,0.548342,-1,-1,-1
532,-1,1312.99,234.635,197.29,364.08,0.992645,-1,-1,-1
532,-1,1131.62,286.201,64.14,134.72,0.990286,-1,-1,-1
532,-1,209.787,255.615,117.957,291.746,0.985433,-1,-1,-1
532,-1,780.601,300.176,63.158,151.178,0.968985,-1,-1,-1
532,-1,680.375,292.896,48.333,119.068,0.968792,-1,-1,-1
532,-1,881.123,322.07,52.951,151.863,0.85883,-1,-1,-1
532,-1,1600.29,196.619,117.09,206.661,0.651013,-1,-1,-1
533,-1,1308.24,235.519,195.97,356.54,0.992273,-1,-1,-1
533,-1,1119.31,307.031,63.88,111.412,0.981927,-1,-1,-1
533,-1,683.388,297.248,57.437,125.301,0.973872,-1,-1,-1
533,-1,786.222,286.729,57.112,160.662,0.97195,-1,-1,-1
533,-1,877.295,318.809,49.611,135.826,0.928496,-1,-1,-1
533,-1,197.552,278.617,116.752,246.604,0.884235,-1,-1,-1
533,-1,949.485,310.589,44.416,87.013,0.796951,-1,-1,-1
533,-1,1321.31,245.208,72.48,280.54,0.586981,-1,-1,-1
534,-1,1328.69,254.1,142.02,325.02,0.994133,-1,-1,-1
534,-1,680.243,274.041,57.506,146.75,0.968745,-1,-1,-1
534,-1,1133.28,292.096,50.3,140.336,0.966731,-1,-1,-1
534,-1,173.979,264.113,98.801,252.998,0.962305,-1,-1,-1
534,-1,796.78,319.733,74.085,110.463,0.93528,-1,-1,-1
534,-1,869.204,313.19,60.214,120.017,0.887503,-1,-1,-1
534,-1,769.283,294.635,61.55,138.023,0.770168,-1,-1,-1
534,-1,933.963,321.309,47.787,110.81,0.516996,-1,-1,-1
534,-1,216.425,286.706,83.937,144.928,0.508591,-1,-1,-1
535,-1,1314,258.626,173.04,317.101,0.994912,-1,-1,-1
535,-1,1124.48,287.312,75.07,153.91,0.95131,-1,-1,-1
535,-1,783.058,292.559,56.175,139.582,0.949946,-1,-1,-1
535,-1,676.643,261.406,47.529,172.44,0.936184,-1,-1,-1
535,-1,717.576,234.351,60.991,195.069,0.783062,-1,-1,-1
535,-1,831.535,313.086,72.528,129.674,0.738321,-1,-1,-1
535,-1,174.47,263.535,111.04,263.564,0.678154,-1,-1,-1
536,-1,1343.11,254.491,137.98,349.875,0.994187,-1,-1,-1
536,-1,171.536,268.373,92.959,216.435,0.9791,-1,-1,-1
536,-1,1123.46,287.542,67.34,135.164,0.962832,-1,-1,-1
536,-1,666.479,281.723,68.626,126.317,0.947315,-1,-1,-1
536,-1,781.264,318.716,81.952,111.699,0.890457,-1,-1,-1
536,-1,1317.57,243.729,70.74,271.744,0.669533,-1,-1,-1
537,-1,1317.41,257.199,190.38,337.943,0.994307,-1,-1,-1
537,-1,1125.82,290.25,61.5,133.654,0.981686,-1,-1,-1
537,-1,675.218,277.309,51.21,135.312,0.968632,-1,-1,-1
537,-1,167.173,279.913,106.036,264.344,0.962464,-1,-1,-1
537,-1,780.445,321.817,59.802,122.097,0.954718,-1,-1,-1
537,-1,863.887,303.405,61.99,139.063,0.891604,-1,-1,-1
537,-1,1579.09,208.799,95.42,207.884,0.799843,-1,-1,-1
537,-1,940.571,297.556,53.078,127.906,0.694294,-1,-1,-1
538,-1,1320.33,235.968,195.84,363.411,0.993,-1,-1,-1
538,-1,1129.06,275.221,59.82,141.825,0.985127,-1,-1,-1
538,-1,142.524,272.271,120.246,247.86,0.979743,-1,-1,-1
538,-1,779.267,321.18,56.918,127.492,0.975715,-1,-1,-1
538,-1,680.363,292.653,46.15,103.313,0.974795,-1,-1,-1
538,-1,852.078,325.744,57.433,106.319,0.925416,-1,-1,-1
538,-1,1587.57,195.177,121.42,209.287,0.882766,-1,-1,-1
538,-1,938.739,326.067,53.076,108.831,0.709076,-1,-1,-1
538,-1,1331.03,246.077,82.98,232.17,0.64799,-1,-1,-1
538,-1,727.056,283.844,88.07,154.245,0.562418,-1,-1,-1
539,-1,1353.06,231.147,145.52,369.005,0.991225,-1,-1,-1
539,-1,158.173,263.671,113.076,251.11,0.989657,-1,-1,-1
539,-1,772.003,296.574,57.675,145.334,0.984247,-1,-1,-1
539,-1,680.398,270.076,46.704,119.66,0.977024,-1,-1,-1
539,-1,1129.26,298.115,74.03,125.687,0.956439,-1,-1,-1
539,-1,857.66,326.239,56.567,112.082,0.904332,-1,-1,-1
539,-1,1323.3,235.079,86.75,309.144,0.902193,-1,-1,-1
539,-1,935.27,317.171,44.816,92.251,0.713603,-1,-1,-1
539,-1,707.203,261.401,60.103,151.104,0.627542,-1,-1,-1
540,-1,1353.08,233.174,148.49,375.242,0.993079,-1,-1,-1
540,-1,1130.96,279.674,58.46,137.591,0.988353,-1,-1,-1
540,-1,772.316,288.591,55.718,150.117,0.985161,-1,-1,-1
540,-1,146.831,255.548,112.8,243.684,0.981765,-1,-1,-1
540,-1,684.963,284.256,42.537,106.455,0.969079,-1,-1,-1
540,-1,868.588,301.541,57.354,132.112,0.941093,-1,-1,-1
540,-1,1323.02,247.646,82.09,288.303,0.901084,-1,-1,-1
540,-1,1166.04,265.549,45.17,145.636,0.839376,-1,-1,-1
540,-1,1590.14,188.041,114.22,210.185,0.766979,-1,-1,-1
540,-1,927.696,317.947,65.027,104.052,0.671451,-1,-1,-1
540,-1,705.171,247.992,87.165,171.698,0.529752,-1,-1,-1
541,-1,1360.42,250.871,144.43,351.023,0.99162,-1,-1,-1
541,-1,163.942,287.243,107.758,192.098,0.983943,-1,-1,-1
541,-1,765.961,271.915,70.361,165.786,0.983123,-1,-1,-1
541,-1,1139.28,285.511,75.16,135.708,0.973055,-1,-1,-1
541,-1,864.294,299.329,58.966,126.654,0.942953,-1,-1,-1
541,-1,677.664,266.296,48.533,121.305,0.870135,-1,-1,-1
541,-1,1327.16,232.157,86.21,344.04,0.803304,-1,-1,-1
541,-1,726.832,248.331,71.64,161.92,0.654301,-1,-1,-1
541,-1,934.683,306.053,58.628,106.756,0.592626,-1,-1,-1
542,-1,1362.92,238.724,134.45,362.028,0.992758,-1,-1,-1
542,-1,151.25,273.011,98.788,175.781,0.989331,-1,-1,-1
542,-1,1132.16,278.497,81.01,132.387,0.981539,-1,-1,-1
542,-1,773.997,281.165,63.451,160.197,0.977365,-1,-1,-1
542,-1,690,263.47,54.152,124.56,0.942814,-1,-1,-1
542,-1,1327.88,254.257,85.87,293.809,0.929108,-1,-1,-1
542,-1,856.054,318.888,55.387,106.503,0.85815,-1,-1,-1
542,-1,731.477,250.871,68.292,163.502,0.717107,-1,-1,-1
542,-1,912.029,314.109,53.333,100.169,0.572655,-1,-1,-1
543,-1,144.32,264.772,102.507,185.778,0.990934,-1,-1,-1
543,-1,1342.83,221.463,179.4,350.209,0.990785,-1,-1,-1
543,-1,1133.92,289.581,78.85,120.862,0.980733,-1,-1,-1
543,-1,754.374,276.787,62.348,160.943,0.972757,-1,-1,-1
543,-1,683.125,261.972,61.599,139.942,0.964134,-1,-1,-1
543,-1,847.904,303.431,55.907,119.32,0.932298,-1,-1,-1
543,-1,928.366,302.308,59.444,86.79,0.856297,-1,-1,-1
543,-1,1633.99,205.059,70.96,206.186,0.559141,-1,-1,-1
543,-1,1347.92,238.969,71.18,260.906,0.555596,-1,-1,-1
544,-1,1362.22,228.337,149.2,365.574,0.994901,-1,-1,-1
544,-1,122.199,248.836,109.579,214.205,0.991933,-1,-1,-1
544,-1,1143.38,290.785,53.74,105.507,0.978134,-1,-1,-1
544,-1,743.876,260.316,73.417,183.977,0.976437,-1,-1,-1
544,-1,686.233,272.969,41.327,113.046,0.960096,-1,-1,-1
544,-1,850.709,305.084,52.013,111.735,0.9164,-1,-1,-1
544,-1,1328.54,221.483,91.26,306.43,0.912333,-1,-1,-1
544,-1,927.926,297.381,59.643,87.792,0.752145,-1,-1,-1
545,-1,1359.68,217.085,155.42,389.688,0.994722,-1,-1,-1
545,-1,1123.95,287.309,74.41,127.652,0.984734,-1,-1,-1
545,-1,131.297,253.716,91.674,226.228,0.983852,-1,-1,-1
545,-1,738.527,258.073,64.252,160.261,0.955356,-1,-1,-1
545,-1,677.194,287.806,60.694,71.543,0.927231,-1,-1,-1
545,-1,922.507,256.814,54.243,150.763,0.643912,-1,-1,-1
545,-1,1320.34,239.531,90.59,309.025,0.636227,-1,-1,-1
546,-1,1376.18,209.565,151.08,401.281,0.994983,-1,-1,-1
546,-1,135.188,254.056,95.204,241.848,0.98152,-1,-1,-1
546,-1,683.643,258.317,61.83,142.442,0.971399,-1,-1,-1
546,-1,1131.06,288.714,72.04,117.343,0.961234,-1,-1,-1
546,-1,756.641,264.37,58.384,171.954,0.936513,-1,-1,-1
546,-1,932.064,317.115,62.725,72.538,0.871925,-1,-1,-1
546,-1,1340.7,221.808,83.99,341.135,0.777813,-1,-1,-1
546,-1,852.052,312.684,55.744,99.861,0.758931,-1,-1,-1
546,-1,905.26,301.146,56.198,103.644,0.685456,-1,-1,-1
546,-1,1118.85,286.409,38.05,103.945,0.653923,-1,-1,-1
547,-1,1374.55,216.854,155.02,386.456,0.994057,-1,-1,-1
547,-1,110.725,261.615,112.806,232.266,0.984297,-1,-1,-1
547,-1,740.617,253.464,72.05,183.466,0.977566,-1,-1,-1
547,-1,685.145,274.866,48.593,125.056,0.972131,-1,-1,-1
547,-1,1123.75,276.924,52.52,116.392,0.956131,-1,-1,-1
547,-1,851.036,299.637,51.993,114.018,0.907989,-1,-1,-1
547,-1,929.262,315.119,62.486,75.205,0.889569,-1,-1,-1
547,-1,764.628,314.347,64.006,80.476,0.74459,-1,-1,-1
547,-1,1343.8,229.473,81.85,297.493,0.663779,-1,-1,-1
547,-1,1633.83,187.583,95.15,219.275,0.660994,-1,-1,-1
547,-1,885.03,305.237,54.496,98.816,0.640342,-1,-1,-1
548,-1,1365.58,203.674,172.99,409.296,0.995605,-1,-1,-1
548,-1,110.121,258.961,100.966,211.613,0.98259,-1,-1,-1
548,-1,732.773,251.408,78.628,183.636,0.971874,-1,-1,-1
548,-1,691.775,284.805,50.22,113.807,0.953496,-1,-1,-1
548,-1,1126.06,285.553,62.11,122.788,0.949351,-1,-1,-1
548,-1,1619.42,191.125,101.23,200.095,0.863297,-1,-1,-1
548,-1,929.534,296.889,51.762,114.082,0.831895,-1,-1,-1
548,-1,764.59,287.413,72.49,107.629,0.817497,-1,-1,-1
548,-1,659.159,260.122,62.617,128.254,0.807087,-1,-1,-1
548,-1,855.029,293.361,51.137,138.214,0.773798,-1,-1,-1
548,-1,1350.79,223.133,73.98,263.623,0.673433,-1,-1,-1
549,-1,1383.57,209.965,160.69,390.36,0.994503,-1,-1,-1
549,-1,739.425,258.56,81.884,180.801,0.9862,-1,-1,-1
549,-1,105.442,263.337,108.431,192.673,0.971308,-1,-1,-1
549,-1,1130.98,280.802,51.11,124.755,0.933644,-1,-1,-1
549,-1,1346.99,222.406,96.55,348.575,0.929026,-1,-1,-1
549,-1,665.576,251.629,63.602,128.836,0.832229,-1,-1,-1
550,-1,1358.98,220.251,199.93,390.892,0.989623,-1,-1,-1
550,-1,107.621,290.592,98.138,204.463,0.975747,-1,-1,-1
550,-1,745.532,270.124,81.817,165.464,0.973414,-1,-1,-1
550,-1,1125.97,272.655,55.5,138.058,0.953733,-1,-1,-1
550,-1,844.51,292.218,60.956,129.037,0.922382,-1,-1,-1
550,-1,927.362,295.587,56.863,92.033,0.898232,-1,-1,-1
550,-1,679.949,260.485,58.903,124.519,0.732655,-1,-1,-1
550,-1,1340.61,240.15,84.97,273.813,0.727924,-1,-1,-1
550,-1,1167.44,287.741,42.68,123.142,0.709597,-1,-1,-1
551,-1,1395.64,218.31,136.64,385.274,0.987705,-1,-1,-1
551,-1,107.075,282.976,86.582,173.782,0.978998,-1,-1,-1
551,-1,737.166,246.629,88.175,186.678,0.9767,-1,-1,-1
551,-1,1110.14,269.488,67.47,130.692,0.960584,-1,-1,-1
551,-1,1351.66,224.144,94.46,336.044,0.939896,-1,-1,-1
551,-1,852.267,303.485,57.052,132.095,0.837955,-1,-1,-1
551,-1,1178.84,272.334,60.61,127.623,0.810793,-1,-1,-1
551,-1,682.227,255.072,58.075,126.449,0.715858,-1,-1,-1
552,-1,1405.07,233.209,146.61,384.559,0.989585,-1,-1,-1
552,-1,746.863,277.59,78.203,160.971,0.970551,-1,-1,-1
552,-1,1123.75,267.919,70.64,148.749,0.954096,-1,-1,-1
552,-1,93.032,264.042,112.07,237.861,0.948713,-1,-1,-1
552,-1,1354.25,234.578,94.41,330.356,0.947344,-1,-1,-1
552,-1,849.596,317.014,57.01,125.781,0.910082,-1,-1,-1
552,-1,682.427,270.281,56.064,125.049,0.863284,-1,-1,-1
552,-1,1186.81,286.604,51.83,138.627,0.859054,-1,-1,-1
552,-1,928.866,296.587,63.116,107.505,0.858416,-1,-1,-1
553,-1,78.8239,267.248,95.3131,243.448,0.988701,-1,-1,-1
553,-1,1397.21,212.765,151.04,415.246,0.987203,-1,-1,-1
553,-1,737.069,264.213,68.703,171.74,0.954152,-1,-1,-1
553,-1,1123.51,295.47,47.6,98.361,0.950952,-1,-1,-1
553,-1,1349.36,226.166,102.62,371.475,0.944717,-1,-1,-1
553,-1,1178.16,271.545,60.55,134.753,0.91455,-1,-1,-1
553,-1,1143.56,293.977,65.52,113.325,0.90309,-1,-1,-1
553,-1,683.359,278.449,56.98,113.198,0.902566,-1,-1,-1
553,-1,901.099,307.567,65.422,88.305,0.716335,-1,-1,-1
553,-1,767.684,303.437,58.4,89.101,0.625639,-1,-1,-1
553,-1,934.835,288.945,58.204,114.481,0.584901,-1,-1,-1
554,-1,73.9865,267.671,90.4655,242.684,0.989344,-1,-1,-1
554,-1,1396.25,214.33,153.65,399.45,0.985373,-1,-1,-1
554,-1,1119.75,297.864,46.36,94.113,0.96199,-1,-1,-1
554,-1,1178.82,287.212,56.82,133.925,0.936631,-1,-1,-1
554,-1,682.351,268.955,59.102,130.442,0.881223,-1,-1,-1
554,-1,1356.97,225.369,89.43,348.585,0.8697,-1,-1,-1
554,-1,1139.22,283.244,59.19,130.029,0.869069,-1,-1,-1
554,-1,723.395,252.414,74.123,173.116,0.868034,-1,-1,-1
554,-1,850.426,308.458,52.806,131.467,0.823064,-1,-1,-1
554,-1,901.75,307.578,66.451,85.604,0.791965,-1,-1,-1
554,-1,767.81,306.662,58.346,93.18,0.516445,-1,-1,-1
555,-1,70.4462,253.8,89.5588,253.263,0.990511,-1,-1,-1
555,-1,1419.4,200.67,155.42,414.817,0.987208,-1,-1,-1
555,-1,1123.83,286.434,54.97,129.527,0.975718,-1,-1,-1
555,-1,669.301,281.137,56.517,104.39,0.951756,-1,-1,-1
555,-1,1184.76,278.841,46.27,118.651,0.93382,-1,-1,-1
555,-1,735.22,272.169,67.528,144.909,0.928533,-1,-1,-1
555,-1,1366.22,207.837,107.28,342.906,0.920832,-1,-1,-1
555,-1,846.803,306.244,54.056,136.448,0.916267,-1,-1,-1
555,-1,930.857,294.944,48.041,105.989,0.816701,-1,-1,-1
555,-1,1158.46,289.775,50.13,123.131,0.76351,-1,-1,-1
555,-1,700.221,264.614,46.697,132.464,0.61359,-1,-1,-1
556,-1,1422.01,201.732,142.5,422.052,0.992481,-1,-1,-1
556,-1,48.6855,251.335,115.913,232.053,0.989372,-1,-1,-1
556,-1,1102.38,282.91,76.47,117.166,0.976863,-1,-1,-1
556,-1,677.93,267.262,54.986,115.856,0.948164,-1,-1,-1
556,-1,755.243,271.149,58.948,163.422,0.941405,-1,-1,-1
556,-1,1182.65,276.049,54.96,129.398,0.928498,-1,-1,-1
556,-1,708.677,235.072,82.213,180.89,0.868708,-1,-1,-1
556,-1,1359.31,208.221,101.13,308.266,0.858954,-1,-1,-1
556,-1,849.435,303.38,56.217,122.863,0.802422,-1,-1,-1
556,-1,911.087,296.774,59.32,105.053,0.688651,-1,-1,-1
556,-1,1637.43,183.436,103.21,208.389,0.519265,-1,-1,-1
557,-1,1408.88,196.614,159.13,434.208,0.993358,-1,-1,-1
557,-1,53.1839,262.823,96.2841,198.831,0.98985,-1,-1,-1
557,-1,1109.92,284.94,54.91,110.181,0.97829,-1,-1,-1
557,-1,729.239,247.298,67.85,181.552,0.975062,-1,-1,-1
557,-1,830.367,280.848,67.727,138.092,0.939289,-1,-1,-1
557,-1,671.13,255.744,53.286,133.749,0.917658,-1,-1,-1
557,-1,1357.4,214.394,109.61,380.788,0.8926,-1,-1,-1
557,-1,1192.18,271.932,45.18,124.674,0.890466,-1,-1,-1
557,-1,1146.09,286.909,47.12,116.971,0.830655,-1,-1,-1
557,-1,926.748,292.381,58.033,99.593,0.622823,-1,-1,-1
558,-1,36.2957,252.383,109.647,252.527,0.991475,-1,-1,-1
558,-1,1420.28,208.435,151.85,427.454,0.990591,-1,-1,-1
558,-1,1120.71,283.971,48.61,109.151,0.978837,-1,-1,-1
558,-1,729.851,263.363,67.136,167.107,0.97778,-1,-1,-1
558,-1,676.845,263.901,56.374,131.049,0.94211,-1,-1,-1
558,-1,1179.29,278.708,59.83,122.157,0.911867,-1,-1,-1
558,-1,821.681,311.324,62.606,103.102,0.884079,-1,-1,-1
558,-1,1371.53,200.903,95.74,320.454,0.832289,-1,-1,-1
558,-1,911.732,298.664,49.272,100.624,0.680441,-1,-1,-1
559,-1,38.2008,268.511,97.0672,236.234,0.990351,-1,-1,-1
559,-1,1422.11,209.726,149.29,425.486,0.986403,-1,-1,-1
559,-1,1111.88,274.887,59.13,142.228,0.973879,-1,-1,-1
559,-1,734.846,282.6,67.675,144.053,0.964373,-1,-1,-1
559,-1,686.985,258.052,52.623,137.011,0.948365,-1,-1,-1
559,-1,1168.46,272.17,56.17,135.993,0.926306,-1,-1,-1
559,-1,909.969,301.154,46.324,111.993,0.791765,-1,-1,-1
559,-1,835.65,305.245,56.954,104.616,0.778763,-1,-1,-1
559,-1,1372.07,221.971,92.28,382.785,0.699957,-1,-1,-1
560,-1,1424.86,209.406,149.07,424.977,0.989315,-1,-1,-1
560,-1,18.2808,265.809,119.949,240.218,0.988257,-1,-1,-1
560,-1,1116.49,293.678,57.37,111.753,0.977328,-1,-1,-1
560,-1,736.76,281.162,54.602,135.622,0.959149,-1,-1,-1
560,-1,691.457,230.391,68.502,175.902,0.947842,-1,-1,-1
560,-1,1170.29,269.752,55.26,133.9,0.938253,-1,-1,-1
560,-1,820.054,303.077,70.702,117.558,0.87663,-1,-1,-1
560,-1,1374.59,205.828,107.23,412.836,0.834214,-1,-1,-1
560,-1,150.681,253.697,69.123,141.984,0.803387,-1,-1,-1
560,-1,899.597,313.013,67.449,93.685,0.64845,-1,-1,-1
560,-1,934.166,270.758,50.122,111.898,0.609764,-1,-1,-1
560,-1,673.909,285.295,67.189,78.289,0.54827,-1,-1,-1
561,-1,1452.69,215.21,137.07,414.406,0.993333,-1,-1,-1
561,-1,18.8516,263.776,113.584,227.274,0.98529,-1,-1,-1
561,-1,1107.21,276.964,72.76,124.061,0.968701,-1,-1,-1
561,-1,687.3,270.569,53.567,126.497,0.958789,-1,-1,-1
561,-1,739.924,284.525,50.224,134.944,0.939162,-1,-1,-1
561,-1,1183.06,275.478,54.43,118.798,0.904566,-1,-1,-1
561,-1,815.66,295.186,62.979,123.731,0.830531,-1,-1,-1
561,-1,1378.5,210.027,82.15,254.093,0.814441,-1,-1,-1
561,-1,903.813,318.915,61.647,92.55,0.658202,-1,-1,-1
562,-1,1435.72,193.77,139.46,439.562,0.993813,-1,-1,-1
562,-1,8.50877,271.016,114.788,238.429,0.98626,-1,-1,-1
562,-1,1109.27,277.648,72.4,120.294,0.962231,-1,-1,-1
562,-1,692.372,261.692,77.278,147.98,0.940215,-1,-1,-1
562,-1,743.625,277.062,54.285,113.144,0.909982,-1,-1,-1
562,-1,1382.75,203.902,84.46,282.265,0.90646,-1,-1,-1
562,-1,656.728,285.063,76.378,107.165,0.827595,-1,-1,-1
562,-1,923.51,277.203,57.6,138.98,0.716039,-1,-1,-1
562,-1,894.097,274.065,56.034,129.231,0.688651,-1,-1,-1
562,-1,1166.51,298.353,55.64,103.271,0.636433,-1,-1,-1
562,-1,1618.54,188.562,97.49,197.417,0.6049,-1,-1,-1
563,-1,1445.73,204.009,144.94,428.754,0.988087,-1,-1,-1
563,-1,16.9737,294.347,85.7123,166.359,0.973916,-1,-1,-1
563,-1,1110.4,294.202,48.12,111.231,0.960866,-1,-1,-1
563,-1,1178.95,281.834,53.57,126.271,0.958508,-1,-1,-1
563,-1,670.173,291.323,69.994,111.261,0.951487,-1,-1,-1
563,-1,1635.2,168.333,109.42,226.161,0.918358,-1,-1,-1
563,-1,1398.94,219.987,84.18,230.915,0.8508,-1,-1,-1
563,-1,707.896,268.317,55.393,148.554,0.843664,-1,-1,-1
563,-1,739.426,274.234,53.24,154.384,0.814166,-1,-1,-1
563,-1,925.86,296.484,52.565,119.649,0.782944,-1,-1,-1
563,-1,888.067,285.382,51.014,139.534,0.520378,-1,-1,-1
564,-1,1466.26,217.7,140.81,438.32,0.996434,-1,-1,-1
564,-1,0,264.429,95.1986,223.722,0.966957,-1,-1,-1
564,-1,1117.79,299.387,63.49,122.29,0.950351,-1,-1,-1
564,-1,1187.93,270.162,43.87,121.512,0.93993,-1,-1,-1
564,-1,737.907,293.511,51.902,127.884,0.936629,-1,-1,-1
564,-1,928.579,314.096,56.135,111.613,0.8849,-1,-1,-1
564,-1,57.9558,311.302,76.4732,143.528,0.868002,-1,-1,-1
564,-1,702.731,265.491,55.115,157.618,0.866066,-1,-1,-1
564,-1,832.511,325.624,54.929,90.683,0.76376,-1,-1,-1
564,-1,1408.72,222.381,67.98,203.999,0.734013,-1,-1,-1
565,-1,1450.4,198.673,178.22,447.379,0.99685,-1,-1,-1
565,-1,1116.62,245.34,67.45,171.171,0.981658,-1,-1,-1
565,-1,698.874,228.769,107.018,218.908,0.972852,-1,-1,-1
565,-1,4.76882,264.208,87.8349,231.37,0.964214,-1,-1,-1
565,-1,315.542,226.728,84.564,201.155,0.872431,-1,-1,-1
565,-1,1411,207.794,91.04,294.584,0.816848,-1,-1,-1
565,-1,914.378,237.666,75.572,191.001,0.696719,-1,-1,-1
565,-1,68.5112,294.524,72.1178,182.782,0.64133,-1,-1,-1
565,-1,1644.89,176.258,114.3,234.341,0.619115,-1,-1,-1
566,-1,1473.1,222.399,153.92,421.585,0.99336,-1,-1,-1
566,-1,712.315,256.077,89.803,165.725,0.991208,-1,-1,-1
566,-1,7.35958,251.287,79.3549,235.517,0.96948,-1,-1,-1
566,-1,1411.48,205.443,91.91,292.694,0.928651,-1,-1,-1
566,-1,1109.92,296.279,62.1,122.185,0.926286,-1,-1,-1
566,-1,58.6971,290.234,69.2659,162.156,0.897521,-1,-1,-1
566,-1,926.32,317.773,57.555,113.135,0.880947,-1,-1,-1
566,-1,1199.9,271.72,62.31,138.468,0.862647,-1,-1,-1
566,-1,1677.83,196.648,101.53,190.435,0.759994,-1,-1,-1
566,-1,888.001,304.298,56.716,124.826,0.53718,-1,-1,-1
567,-1,1513.98,230.596,129.84,437.247,0.994944,-1,-1,-1
567,-1,719.577,265.515,87.285,166.663,0.988426,-1,-1,-1
567,-1,5.33081,276.942,84.6364,236.148,0.973218,-1,-1,-1
567,-1,1120.66,295.864,54.4,123.015,0.959308,-1,-1,-1
567,-1,1214.48,286.465,49.3,126.488,0.940863,-1,-1,-1
567,-1,1421.89,207.519,93.03,300.549,0.8122,-1,-1,-1
567,-1,51.7612,294.964,75.4148,163.476,0.752411,-1,-1,-1
567,-1,835.917,318.214,50.589,120.823,0.745228,-1,-1,-1
567,-1,931.909,323.372,62.233,92.248,0.672509,-1,-1,-1
567,-1,1688.8,190.052,104.01,195.021,0.508517,-1,-1,-1
568,-1,1495.15,220.235,168.82,447.341,0.995825,-1,-1,-1
568,-1,723.123,260.598,91.562,188.989,0.986891,-1,-1,-1
568,-1,1213.31,280.483,55.56,129.526,0.966528,-1,-1,-1
568,-1,0.872749,277.943,89.099,214.248,0.956734,-1,-1,-1
568,-1,1124.41,300.207,58.9,120.317,0.953738,-1,-1,-1
568,-1,941.441,321.478,53.52,108.481,0.903908,-1,-1,-1
568,-1,1436.52,230.659,104.58,388.278,0.829322,-1,-1,-1
568,-1,1706.59,208.209,92.15,195.892,0.660493,-1,-1,-1
568,-1,845.33,318.614,41.725,132.489,0.638235,-1,-1,-1
568,-1,63.8267,285.861,70.6953,135.714,0.631214,-1,-1,-1
569,-1,1488.97,206.916,162.52,486.422,0.99149,-1,-1,-1
569,-1,724.648,248.819,94.932,200.967,0.988431,-1,-1,-1
569,-1,1121.37,296.366,66.98,130.346,0.963825,-1,-1,-1
569,-1,0.440678,261.705,87.888,243.493,0.962407,-1,-1,-1
569,-1,844.561,306.925,45.526,130.429,0.912899,-1,-1,-1
569,-1,1438.27,198.972,101.5,346.327,0.887738,-1,-1,-1
569,-1,942.349,317.888,47.991,115.056,0.849829,-1,-1,-1
569,-1,1220.61,286.02,44.32,117.889,0.83758,-1,-1,-1
569,-1,54.7257,293.34,61.8333,161.654,0.777553,-1,-1,-1
569,-1,1712.07,209.477,81.52,198.496,0.761582,-1,-1,-1
569,-1,697.661,271.88,68.01,140.866,0.51193,-1,-1,-1
570,-1,1544.4,194.782,139.08,474.048,0.994876,-1,-1,-1
570,-1,732.198,253.03,81.605,216.04,0.985962,-1,-1,-1
570,-1,1123.81,293.392,67.39,128.074,0.973826,-1,-1,-1
570,-1,0,260.639,91.6083,247.786,0.967672,-1,-1,-1
570,-1,1220.78,276.715,53.1,128.665,0.964015,-1,-1,-1
570,-1,846.086,300.424,63.01,136.58,0.939585,-1,-1,-1
570,-1,1443.57,225.151,120.28,418.545,0.910775,-1,-1,-1
570,-1,940.511,311.439,53.71,113.55,0.910333,-1,-1,-1
570,-1,70.1736,277.243,66.9414,145.034,0.684712,-1,-1,-1
570,-1,1716.58,198.715,85.26,206.344,0.521454,-1,-1,-1
571,-1,1517.91,199.487,168.93,481.845,0.991979,-1,-1,-1
571,-1,737.596,244.763,76.374,184.026,0.988798,-1,-1,-1
571,-1,0,267.374,90.5241,227.823,0.979918,-1,-1,-1
571,-1,1124.12,294.63,69.77,131.207,0.97539,-1,-1,-1
571,-1,841.377,299.684,71.817,138.726,0.953506,-1,-1,-1
571,-1,1219.35,285.533,52.54,117.745,0.953227,-1,-1,-1
571,-1,940.771,306.244,57.134,121.457,0.914434,-1,-1,-1
571,-1,1730.49,197.948,83.96,203.335,0.839108,-1,-1,-1
571,-1,1454.55,198.94,92.71,275.736,0.798386,-1,-1,-1
571,-1,71.7141,284.157,65.8629,141.326,0.647517,-1,-1,-1
572,-1,1524.99,211.483,164.14,446.973,0.992103,-1,-1,-1
572,-1,734.622,254.634,79.804,174.36,0.99028,-1,-1,-1
572,-1,1128.22,295.757,66.59,131.891,0.979252,-1,-1,-1
572,-1,0,273.085,84.9496,228.788,0.972903,-1,-1,-1
572,-1,849.51,314.24,58.52,145.917,0.969719,-1,-1,-1
572,-1,1214.06,277.082,69.13,139.139,0.957314,-1,-1,-1
572,-1,953.712,300.284,45.37,104.294,0.885404,-1,-1,-1
572,-1,1739.07,197.327,76.79,201.311,0.807942,-1,-1,-1
572,-1,1457.63,208.07,92.74,313.628,0.800163,-1,-1,-1
572,-1,60.7505,293.014,59.7655,103.427,0.787661,-1,-1,-1
572,-1,103.119,308.25,58.442,103.579,0.786413,-1,-1,-1
573,-1,1519.02,176.113,186.58,519.487,0.994723,-1,-1,-1
573,-1,736.592,257.415,77.126,168.648,0.987894,-1,-1,-1
573,-1,1134.27,286.262,59.61,137.539,0.983377,-1,-1,-1
573,-1,1237.74,291.266,45.72,121.535,0.97415,-1,-1,-1
573,-1,0,264.714,80.4962,226.179,0.953918,-1,-1,-1
573,-1,849.256,306.014,56.722,155.893,0.948711,-1,-1,-1
573,-1,1461.57,210.099,118.83,443.471,0.945463,-1,-1,-1
573,-1,1754.13,220.141,72.78,146.238,0.915011,-1,-1,-1
573,-1,955.372,320.631,64.828,98.482,0.894265,-1,-1,-1
573,-1,80.1447,285.672,57.3743,135.515,0.878635,-1,-1,-1
574,-1,1531.39,190.469,184.47,520.234,0.996574,-1,-1,-1
574,-1,1143.37,269.281,65.83,152.93,0.985094,-1,-1,-1
574,-1,741.618,270.391,69.682,169.727,0.971038,-1,-1,-1
574,-1,1745.84,202.507,85.46,174.131,0.954572,-1,-1,-1
574,-1,1236.32,276.035,61.49,143.457,0.941235,-1,-1,-1
574,-1,850.703,295.769,60.123,135.208,0.93867,-1,-1,-1
574,-1,1464.62,186.876,120.47,465.623,0.927603,-1,-1,-1
574,-1,0,301.67,74.4354,172.242,0.921094,-1,-1,-1
574,-1,941.783,316.315,55.88,115.69,0.878767,-1,-1,-1
574,-1,94.5017,292.086,61.2513,115.925,0.81781,-1,-1,-1
574,-1,58.0949,289.29,57.9641,150.393,0.75775,-1,-1,-1
575,-1,1540.51,186.887,192.17,503.17,0.997289,-1,-1,-1
575,-1,722.349,245.774,96.909,182.403,0.989884,-1,-1,-1
575,-1,1140.82,293.366,62.38,134.04,0.984514,-1,-1,-1
575,-1,846.283,311.774,65.857,154.497,0.968286,-1,-1,-1
575,-1,1242.39,271.489,50.33,132.494,0.942247,-1,-1,-1
575,-1,0,301.195,71.5374,176.741,0.906372,-1,-1,-1
575,-1,1479.39,205.869,109.24,392.888,0.900545,-1,-1,-1
575,-1,92.1855,289.644,65.7575,125.008,0.824971,-1,-1,-1
575,-1,945.818,324.551,50.186,104.725,0.808563,-1,-1,-1
575,-1,1764.97,191.165,76.73,211.039,0.727794,-1,-1,-1
575,-1,175.473,296.132,56.278,124.289,0.670815,-1,-1,-1
575,-1,62.1533,301.528,57.6687,122.214,0.57909,-1,-1,-1
576,-1,1551.85,171.508,184.24,535.946,0.997653,-1,-1,-1
576,-1,745.527,265.506,71.086,178.581,0.984471,-1,-1,-1
576,-1,1145.52,298.308,52.74,121.682,0.983238,-1,-1,-1
576,-1,848.538,299.334,63.991,160.046,0.963478,-1,-1,-1
576,-1,1247.8,282.576,47.76,123.109,0.952755,-1,-1,-1
576,-1,91.3269,297.943,45.9491,111.457,0.941736,-1,-1,-1
576,-1,55.627,297.877,56.443,98.545,0.935268,-1,-1,-1
576,-1,944.627,315.503,56.873,123.039,0.908996,-1,-1,-1
576,-1,0,335.146,65.9494,149.742,0.889517,-1,-1,-1
576,-1,1494.47,195.848,95.04,343.782,0.82177,-1,-1,-1
576,-1,1766.49,210.32,87.59,198.45,0.809668,-1,-1,-1
576,-1,33.0475,285.577,57.8321,180.795,0.558175,-1,-1,-1
577,-1,1565.11,193.865,188.12,519.748,0.998162,-1,-1,-1
577,-1,728.809,265.538,85.037,166.715,0.966484,-1,-1,-1
577,-1,1148.68,301.136,34.05,120.102,0.950864,-1,-1,-1
577,-1,1245.15,288.657,43.84,116.867,0.910424,-1,-1,-1
577,-1,17.2768,245.693,78.0177,198.695,0.847682,-1,-1,-1
577,-1,1489.26,187.314,107.26,294.588,0.809653,-1,-1,-1
577,-1,936.463,266.401,68.137,153.572,0.6269,-1,-1,-1
577,-1,103.373,302.955,41.559,97.864,0.558612,-1,-1,-1
578,-1,1567.46,199.885,204.49,538.899,0.998369,-1,-1,-1
578,-1,1137.71,297.621,65.74,147.657,0.985668,-1,-1,-1
578,-1,1244.51,299.09,54.92,127.199,0.930564,-1,-1,-1
578,-1,848.881,307.874,59.835,149.084,0.914749,-1,-1,-1
578,-1,1493.42,206.541,132.86,474.773,0.899394,-1,-1,-1
578,-1,737.448,252.691,99.136,171.032,0.823345,-1,-1,-1
578,-1,940.498,305.869,53.905,132.131,0.775691,-1,-1,-1
578,-1,35.4333,262.806,54.1363,159.893,0.773721,-1,-1,-1
578,-1,75.5903,268.113,36.8567,135.213,0.759286,-1,-1,-1
579,-1,1575.09,205.915,194.76,545.914,0.99819,-1,-1,-1
579,-1,1139.08,291.728,50.6,134.07,0.957312,-1,-1,-1
579,-1,1510,215.785,115.5,474.924,0.939632,-1,-1,-1
579,-1,1.30127,209.413,76.0674,236.355,0.938633,-1,-1,-1
579,-1,1252.26,292.305,43.46,110.023,0.928089,-1,-1,-1
579,-1,731.848,246.734,88.2,166.956,0.919413,-1,-1,-1
579,-1,54.2287,254.323,44.9199,166.439,0.698067,-1,-1,-1
580,-1,1587.01,223.957,185.36,528.365,0.997347,-1,-1,-1
580,-1,733.908,262.024,75.545,193.62,0.98639,-1,-1,-1
580,-1,1142.25,301.272,60.79,124.104,0.976032,-1,-1,-1
580,-1,838.002,311.262,65.941,162.634,0.943286,-1,-1,-1
580,-1,1246,292.882,57.32,136.829,0.937587,-1,-1,-1
580,-1,19.7696,268.377,67.908,148.03,0.92482,-1,-1,-1
580,-1,1510.42,209.985,129.42,502.548,0.900505,-1,-1,-1
580,-1,1783.34,233.22,73.07,145.694,0.876536,-1,-1,-1
580,-1,945.216,336.469,50.588,100.547,0.866915,-1,-1,-1
580,-1,62.7929,278.486,59.4671,155.029,0.631907,-1,-1,-1
581,-1,1584.6,215.805,194.61,538.539,0.997786,-1,-1,-1
581,-1,734.502,258.526,77.929,209.406,0.986858,-1,-1,-1
581,-1,1131.6,293.095,60.61,151.898,0.974208,-1,-1,-1
581,-1,17.9752,286.044,70.1495,127.74,0.959831,-1,-1,-1
581,-1,1241.86,286.06,61.05,136.588,0.957866,-1,-1,-1
581,-1,842.983,316.974,61.406,149.39,0.947056,-1,-1,-1
581,-1,1508.05,227.18,118.92,455.916,0.910601,-1,-1,-1
581,-1,73.5158,305.728,34.6992,94.923,0.835638,-1,-1,-1
581,-1,956.279,304.55,60.631,137.119,0.788158,-1,-1,-1
581,-1,137.578,298.511,39.7,111.447,0.746176,-1,-1,-1
581,-1,119.247,312.077,32.622,92.707,0.734903,-1,-1,-1
581,-1,1766.91,226.617,88.18,197.005,0.543557,-1,-1,-1
582,-1,1602.84,224.163,172,523.222,0.995007,-1,-1,-1
582,-1,733.457,251.744,69.317,208.452,0.985928,-1,-1,-1
582,-1,1133.45,302.353,63.76,150.111,0.966121,-1,-1,-1
582,-1,1512.1,239.654,131.69,469.887,0.960043,-1,-1,-1
582,-1,1234.34,279.236,72.06,167.238,0.957123,-1,-1,-1
582,-1,828.509,307.121,65.669,162.394,0.952532,-1,-1,-1
582,-1,18.8729,290.125,48.0674,126.566,0.943908,-1,-1,-1
582,-1,79.7642,316.802,29.9758,78.789,0.908751,-1,-1,-1
582,-1,941.506,330.019,54.262,104.541,0.900905,-1,-1,-1
582,-1,107.021,310.779,30.163,81.082,0.863359,-1,-1,-1
582,-1,53.4957,300.174,34.7131,92.449,0.592936,-1,-1,-1
582,-1,1772.31,254.728,70.47,130.788,0.559595,-1,-1,-1
583,-1,1609.12,218.135,168.7,533.328,0.997631,-1,-1,-1
583,-1,721.042,251.054,86.19,191.949,0.981178,-1,-1,-1
583,-1,828.553,302.837,68.743,167.335,0.976977,-1,-1,-1
583,-1,1517.35,180.923,127.5,515.199,0.964305,-1,-1,-1
583,-1,1122.59,298.635,65.53,147.177,0.960341,-1,-1,-1
583,-1,1235.11,314.128,64.64,126.36,0.957268,-1,-1,-1
583,-1,9.51402,289.616,53.4708,131.842,0.956103,-1,-1,-1
583,-1,941.857,322.919,52.814,103.766,0.88568,-1,-1,-1
583,-1,84.3582,295.078,29.7538,89.11,0.881913,-1,-1,-1
583,-1,1764.05,241.634,80.05,162.425,0.793341,-1,-1,-1
583,-1,108.64,307.509,33.993,99.535,0.774199,-1,-1,-1
584,-1,1606.11,203.865,174.41,552.724,0.996656,-1,-1,-1
584,-1,842.112,309.336,53.527,155.715,0.982504,-1,-1,-1
584,-1,723.302,249.907,87.849,170.309,0.980874,-1,-1,-1
584,-1,1522.53,216.087,121.23,493.124,0.960568,-1,-1,-1
584,-1,1134.07,302.103,59.91,130.539,0.957872,-1,-1,-1
584,-1,1237.54,300.217,59.49,123.301,0.955962,-1,-1,-1
584,-1,68.4565,292.259,39.0425,116.726,0.858751,-1,-1,-1
584,-1,942.377,326.672,52.457,108.599,0.843254,-1,-1,-1
584,-1,16.6818,270.886,39.4957,140.737,0.819218,-1,-1,-1
584,-1,91.4537,286.663,39.7013,122.796,0.817311,-1,-1,-1
584,-1,1766.84,252.302,85.56,133.453,0.770527,-1,-1,-1
584,-1,800.919,298.719,58.522,146.283,0.519876,-1,-1,-1
585,-1,1607.3,207.969,206.18,561.944,0.991442,-1,-1,-1
585,-1,716.307,227.413,89.629,237.708,0.983238,-1,-1,-1
585,-1,833.04,319.105,58.242,149.219,0.9782,-1,-1,-1
585,-1,1118.78,285.124,70.7,136.841,0.974669,-1,-1,-1
585,-1,1522.3,216.354,111.42,479.742,0.957408,-1,-1,-1
585,-1,1234.76,315.635,69.13,123.916,0.952061,-1,-1,-1
585,-1,76.7926,296.923,40.4084,115.761,0.871733,-1,-1,-1
585,-1,1163.46,307.178,41.75,138.644,0.690503,-1,-1,-1
585,-1,796.54,288.466,68.628,159.99,0.644055,-1,-1,-1
585,-1,936.868,324.654,43.78,106.559,0.63008,-1,-1,-1
585,-1,110.651,293.138,37.04,113.419,0.626782,-1,-1,-1
586,-1,1622.58,193.026,202.18,574.626,0.997525,-1,-1,-1
586,-1,720.467,252.374,71.369,218.438,0.980299,-1,-1,-1
586,-1,823.065,296.12,80.767,146.012,0.979621,-1,-1,-1
586,-1,1127,300.604,71.76,125.709,0.967268,-1,-1,-1
586,-1,1535.56,214.036,123.52,515.733,0.964452,-1,-1,-1
586,-1,1240.71,291.977,59.81,142.126,0.953965,-1,-1,-1
586,-1,66.6621,273.331,41.6949,119.29,0.679157,-1,-1,-1
586,-1,936.419,324.89,39.21,98.191,0.604732,-1,-1,-1
586,-1,39.2939,280.142,38.4727,125.644,0.571216,-1,-1,-1
587,-1,1604.96,180.939,195.69,610.332,0.992162,-1,-1,-1
587,-1,723.276,245.221,84.568,228.469,0.989233,-1,-1,-1
587,-1,821.763,323.186,69.681,138.257,0.980555,-1,-1,-1
587,-1,1124.18,301.142,72.25,124.988,0.969418,-1,-1,-1
587,-1,1527.17,208.114,116.65,472.795,0.967014,-1,-1,-1
587,-1,1240.73,292.731,57.29,136.311,0.958732,-1,-1,-1
587,-1,75.4351,275.16,47.6809,137.498,0.708678,-1,-1,-1
587,-1,939.586,331.102,43.347,100.321,0.530455,-1,-1,-1
588,-1,1572.87,191.364,263.22,562.778,0.982216,-1,-1,-1
588,-1,741.014,247.649,72.007,182.409,0.979828,-1,-1,-1
588,-1,1109.48,319.138,73,132.889,0.956209,-1,-1,-1
588,-1,1534.71,216.619,118.26,292.217,0.945527,-1,-1,-1
588,-1,1246.75,292.33,44.77,112.003,0.905272,-1,-1,-1
588,-1,57.0439,294.454,50.2971,105.307,0.896927,-1,-1,-1
588,-1,814.63,324.129,63.579,143.074,0.862406,-1,-1,-1
588,-1,930.034,326.785,52.967,122.893,0.692442,-1,-1,-1
589,-1,711.883,247.83,89.973,184.274,0.981102,-1,-1,-1
589,-1,828.22,320.044,65.653,134.718,0.974571,-1,-1,-1
589,-1,1593.03,180.777,279.41,621.668,0.964567,-1,-1,-1
589,-1,1117.86,316.699,57.43,125.787,0.961082,-1,-1,-1
589,-1,75.9434,299.238,44.7816,104.334,0.939584,-1,-1,-1
589,-1,1541.69,192.868,127.05,552.239,0.928126,-1,-1,-1
589,-1,41.2895,297.136,54.3226,105.643,0.804846,-1,-1,-1
589,-1,911.82,333.083,67.255,107.548,0.547328,-1,-1,-1
589,-1,1260.27,304.509,54.73,137.012,0.54104,-1,-1,-1
590,-1,1578.18,186.46,301.66,599.066,0.997177,-1,-1,-1
590,-1,729.139,264.94,84.577,161.233,0.981578,-1,-1,-1
590,-1,1545.74,206.259,133.72,347.346,0.972992,-1,-1,-1
590,-1,1118.66,307.014,66.01,136.226,0.915842,-1,-1,-1
590,-1,1247.36,293.548,55.73,113.947,0.914802,-1,-1,-1
590,-1,936.011,268.334,69.259,164.224,0.677656,-1,-1,-1
591,-1,1584.69,182.827,299.09,578.735,0.996246,-1,-1,-1
591,-1,727.167,268.841,82.506,197.448,0.979707,-1,-1,-1
591,-1,834.546,305.05,69.636,157.568,0.943492,-1,-1,-1
591,-1,48.9594,313.083,64.8246,94.344,0.931993,-1,-1,-1
591,-1,1111.01,324.321,76.88,122.38,0.930258,-1,-1,-1
591,-1,1253.89,313.023,47.15,106.801,0.92538,-1,-1,-1
591,-1,916.898,327.064,54.46,132.935,0.87602,-1,-1,-1
591,-1,1554.36,211.09,131.26,325.666,0.810093,-1,-1,-1
592,-1,1658.76,182.512,218.48,656.452,0.992667,-1,-1,-1
592,-1,727.037,274.642,83.056,192.538,0.987548,-1,-1,-1
592,-1,838.989,318.262,57.006,133.093,0.965201,-1,-1,-1
592,-1,75.2703,305.634,43.0337,94.191,0.934387,-1,-1,-1
592,-1,913.647,333.624,54.778,132.804,0.930076,-1,-1,-1
592,-1,1256.56,313.9,53.19,122.135,0.925919,-1,-1,-1
592,-1,1571.37,184.85,134.97,586.12,0.904159,-1,-1,-1
592,-1,1123.61,316.924,64.81,135.512,0.873768,-1,-1,-1
592,-1,947.528,321.597,57.262,133.112,0.635414,-1,-1,-1
592,-1,704.419,286.689,61.571,125.905,0.539007,-1,-1,-1
593,-1,1683.94,202.256,197.29,645.896,0.995299,-1,-1,-1
593,-1,726.032,260.901,78.982,214.357,0.982764,-1,-1,-1
593,-1,839.91,324.4,65.156,128.39,0.973117,-1,-1,-1
593,-1,1268.2,318.281,52.22,107.523,0.969835,-1,-1,-1
593,-1,1555.79,216.785,157.13,553.721,0.963789,-1,-1,-1
593,-1,932.355,344.172,48.669,120.34,0.940913,-1,-1,-1
593,-1,43.6522,315.319,45.5539,101.945,0.928222,-1,-1,-1
593,-1,1116.33,336.947,46.53,118.215,0.863162,-1,-1,-1
593,-1,1145.2,317.696,53.34,148.311,0.77735,-1,-1,-1
594,-1,1674.26,174.612,235.18,667.867,0.998799,-1,-1,-1
594,-1,725.195,258.203,83.31,236.161,0.982521,-1,-1,-1
594,-1,1582.5,204.89,140.42,585.444,0.977772,-1,-1,-1
594,-1,1254.68,305.154,73.94,144.067,0.974999,-1,-1,-1
594,-1,838.465,326.209,64.752,124.322,0.960057,-1,-1,-1
594,-1,1123,322.735,66.48,131.19,0.939912,-1,-1,-1
594,-1,931.092,350.802,51.626,118.49,0.927837,-1,-1,-1
594,-1,66.5843,312.427,41.9247,98.766,0.927335,-1,-1,-1
594,-1,33.6536,299.871,59.7549,138.558,0.634674,-1,-1,-1
595,-1,1715.89,175.488,196.3,683.317,0.994221,-1,-1,-1
595,-1,721.289,268.95,90.961,227.041,0.983382,-1,-1,-1
595,-1,1256.6,303.657,67.9,141.418,0.978077,-1,-1,-1
595,-1,1586.44,222.209,151.13,580.96,0.976916,-1,-1,-1
595,-1,827.451,327.194,69.71,152.867,0.971917,-1,-1,-1
595,-1,1120.46,324.636,63.71,125.656,0.950321,-1,-1,-1
595,-1,929.534,348.364,50.243,119.805,0.933079,-1,-1,-1
595,-1,45.8413,298.658,59.5017,100.669,0.919152,-1,-1,-1
596,-1,1698.24,142.581,220.76,717.681,0.996001,-1,-1,-1
596,-1,1587.17,203.251,158.61,605.631,0.983493,-1,-1,-1
596,-1,740.202,276.922,70.371,199.622,0.978966,-1,-1,-1
596,-1,829.242,324.089,62.121,148.713,0.971224,-1,-1,-1
596,-1,1262.37,308.705,69.93,137.541,0.969495,-1,-1,-1
596,-1,1122.07,317.05,65.33,139.727,0.946931,-1,-1,-1
596,-1,53.4823,297.209,41.1071,101.364,0.91764,-1,-1,-1
596,-1,935.026,341.67,53.982,118.362,0.875264,-1,-1,-1
597,-1,1692.53,173.534,226.47,688.318,0.996675,-1,-1,-1
597,-1,1596.2,186.527,168.59,613.212,0.986209,-1,-1,-1
597,-1,722.122,272.737,88.555,219.193,0.982966,-1,-1,-1
597,-1,1114.93,312.197,81.3,134.834,0.974738,-1,-1,-1
597,-1,836.621,329.269,58.987,149.147,0.961218,-1,-1,-1
597,-1,1277.61,312.661,48.64,116.946,0.940471,-1,-1,-1
597,-1,934.709,329.469,57.253,120.841,0.936142,-1,-1,-1
597,-1,57.4542,311.953,42.7408,106.52,0.929133,-1,-1,-1
598,-1,1720.29,69.505,198.71,857.378,0.989036,-1,-1,-1
598,-1,734.937,277.424,69.618,206.077,0.981979,-1,-1,-1
598,-1,1615.71,167.596,159.79,662.266,0.977666,-1,-1,-1
598,-1,829.035,336.475,60.442,150.06,0.97678,-1,-1,-1
598,-1,1128.04,322.641,65.35,131.293,0.961908,-1,-1,-1
598,-1,1271.93,310.817,50.86,116.504,0.950369,-1,-1,-1
598,-1,27.5666,307.709,76.8954,134.357,0.930138,-1,-1,-1
598,-1,937.288,353.125,51.292,114.232,0.912207,-1,-1,-1
598,-1,959.851,327.948,60.029,123.467,0.714337,-1,-1,-1
598,-1,82.978,300.09,43.854,138.823,0.70907,-1,-1,-1
599,-1,1611.92,165.073,280.44,687.974,0.98796,-1,-1,-1
599,-1,745.655,306.234,70.272,184.445,0.983771,-1,-1,-1
599,-1,831.7,333.54,60.132,154.116,0.97633,-1,-1,-1
599,-1,1141.65,308.686,65.9,140.817,0.97387,-1,-1,-1
599,-1,1275.08,318.81,66,134.933,0.941682,-1,-1,-1
599,-1,49.6094,302.622,54.5586,126.057,0.929987,-1,-1,-1
599,-1,914.999,355.148,66.543,115.592,0.872136,-1,-1,-1
599,-1,951.314,338.574,53.076,118.689,0.871515,-1,-1,-1
599,-1,86.7794,306.54,44.7286,119.404,0.763544,-1,-1,-1
600,-1,1625.18,204.035,193.72,643.644,0.994143,-1,-1,-1
600,-1,1769.84,155.818,149.16,772.939,0.992508,-1,-1,-1
600,-1,737.722,287.174,68.796,216.221,0.98209,-1,-1,-1
600,-1,1134.27,335.208,63.32,126.612,0.975164,-1,-1,-1
600,-1,829.501,329.403,64.829,167.197,0.973398,-1,-1,-1
600,-1,1259.34,335.156,83.66,138.632,0.944012,-1,-1,-1
600,-1,60.8152,333.464,51.7518,113.593,0.940382,-1,-1,-1
600,-1,957.126,346.159,55.524,120.261,0.929999,-1,-1,-1
600,-1,87.3842,315.418,42.5818,112.424,0.899821,-1,-1,-1
600,-1,927.773,342.225,49.026,128.636,0.70107,-1,-1,-1
601,-1,1641.33,206.859,194.51,665.952,0.992885,-1,-1,-1
601,-1,1788.91,181.472,130.09,711.738,0.987667,-1,-1,-1
601,-1,1133,340.904,68.51,137.323,0.983991,-1,-1,-1
601,-1,1275.61,318.617,71.78,155.951,0.980031,-1,-1,-1
601,-1,742.551,283.036,69.599,211.692,0.974138,-1,-1,-1
601,-1,829.436,329.149,72.756,148.799,0.968757,-1,-1,-1
601,-1,66.3455,338.2,42.9705,109.209,0.942936,-1,-1,-1
601,-1,50.9352,348.904,34.899,88.15,0.918592,-1,-1,-1
601,-1,941.536,336.728,54.2,114.84,0.892555,-1,-1,-1
602,-1,1138.43,337.86,68.86,141.978,0.990053,-1,-1,-1
602,-1,1644.86,188.154,245.87,658.093,0.989871,-1,-1,-1
602,-1,749.03,312.803,61.072,164.837,0.978964,-1,-1,-1
602,-1,1275.96,320.605,72.85,161.93,0.963892,-1,-1,-1
602,-1,68.4333,332.249,41.3037,89.319,0.943784,-1,-1,-1
602,-1,837.931,350.298,58.971,143.997,0.94161,-1,-1,-1
602,-1,44.9458,324.095,38.4404,97.04,0.903079,-1,-1,-1
602,-1,938.808,361.771,56.451,119.265,0.878278,-1,-1,-1
603,-1,1135.7,310.331,66.52,172.947,0.992749,-1,-1,-1
603,-1,1680.91,210.725,202.68,661.219,0.991487,-1,-1,-1
603,-1,746.876,304.418,71.657,201.123,0.987131,-1,-1,-1
603,-1,1287.77,339.807,69.73,140.131,0.934355,-1,-1,-1
603,-1,1828.73,189.457,83.14,686.951,0.888328,-1,-1,-1
603,-1,942.029,326.483,79.281,170.126,0.86688,-1,-1,-1
603,-1,854.481,347.319,59.91,156.731,0.722247,-1,-1,-1
603,-1,45.8896,325.372,71.2854,116.039,0.571228,-1,-1,-1
604,-1,743.332,304.575,75.422,198.464,0.991462,-1,-1,-1
604,-1,1668.58,214.297,220.15,635.856,0.989702,-1,-1,-1
604,-1,1294.58,331.857,75.2,145.493,0.978286,-1,-1,-1
604,-1,1140.61,340.858,70.04,124.427,0.961449,-1,-1,-1
604,-1,941.438,382.369,55.096,113.127,0.924148,-1,-1,-1
604,-1,56.7437,357.017,42.8893,93.913,0.888407,-1,-1,-1
604,-1,847.336,345.196,57.155,166.381,0.823949,-1,-1,-1
604,-1,86.6494,332.024,39.3856,119.102,0.561816,-1,-1,-1
605,-1,1672.36,216.864,218.57,659.916,0.991191,-1,-1,-1
605,-1,1135.67,353.532,70.24,143.873,0.986195,-1,-1,-1
605,-1,749.637,276.894,74.369,227.529,0.982374,-1,-1,-1
605,-1,1298.67,322.374,65.45,165.023,0.959225,-1,-1,-1
605,-1,850.134,347.719,51.251,157.125,0.902633,-1,-1,-1
605,-1,949.873,364.206,54.007,132.58,0.89898,-1,-1,-1
605,-1,64.069,357.968,39.843,95.328,0.890176,-1,-1,-1
605,-1,35.2025,364.886,49.2813,109.623,0.546636,-1,-1,-1
606,-1,1679.95,213.454,234.56,642.326,0.994888,-1,-1,-1
606,-1,749.812,321.1,75.278,185.359,0.988603,-1,-1,-1
606,-1,1142.91,355.208,59.78,122.941,0.982813,-1,-1,-1
606,-1,1290.47,342.363,76.33,150.934,0.938154,-1,-1,-1
606,-1,52.4788,360.961,42.1283,81.68,0.882477,-1,-1,-1
606,-1,855.638,375.591,63.264,136.809,0.790335,-1,-1,-1
606,-1,953.596,374.68,53.434,104.301,0.789288,-1,-1,-1
607,-1,1706.67,226.847,200.34,594.284,0.994289,-1,-1,-1
607,-1,752.496,289.449,78.576,218.403,0.991119,-1,-1,-1
607,-1,1142.09,327.783,61.32,157.367,0.982276,-1,-1,-1
607,-1,1301.87,343.126,63.21,137.879,0.965772,-1,-1,-1
607,-1,46.7193,335.211,50.3694,118.862,0.957746,-1,-1,-1
607,-1,850.213,368.154,54.959,135.376,0.917953,-1,-1,-1
607,-1,944.663,370.794,50.482,129.377,0.832853,-1,-1,-1
607,-1,1340.81,329.307,45.79,156.68,0.770248,-1,-1,-1
607,-1,973.349,367.802,67.111,121.177,0.538737,-1,-1,-1
608,-1,1731.22,212.589,187.78,692.811,0.998699,-1,-1,-1
608,-1,755.643,320.433,67.206,173.688,0.988887,-1,-1,-1
608,-1,47.3145,357.677,38.7969,95.308,0.976871,-1,-1,-1
608,-1,1309.57,343.427,70.07,154.076,0.966621,-1,-1,-1
608,-1,1144.08,361.227,57.89,125.298,0.958556,-1,-1,-1
608,-1,839.718,377.951,62.245,113.588,0.9426,-1,-1,-1
608,-1,937.835,360.758,64.855,122.887,0.841918,-1,-1,-1
608,-1,68.1759,354.175,54.4571,93.295,0.546365,-1,-1,-1
608,-1,975.012,369.564,61.748,129.599,0.508009,-1,-1,-1
609,-1,1734.41,200.199,184.59,705.634,0.9985,-1,-1,-1
609,-1,754.18,294.124,78.171,206.922,0.982285,-1,-1,-1
609,-1,1315.59,330.827,78.1,149.125,0.979914,-1,-1,-1
609,-1,1147.38,368.722,58.25,124.215,0.946731,-1,-1,-1
609,-1,35.6093,334.484,63.9033,107.732,0.937561,-1,-1,-1
609,-1,839.503,347.816,64.039,141.559,0.933787,-1,-1,-1
609,-1,959.089,357.234,49.871,119.794,0.902493,-1,-1,-1
610,-1,1750.39,156.598,168.61,753.015,0.99618,-1,-1,-1
610,-1,750.043,297.988,85.043,191.245,0.989837,-1,-1,-1
610,-1,1325.98,332.1,71.9,155.502,0.96951,-1,-1,-1
610,-1,54.2646,349.381,37.6496,98.211,0.96445,-1,-1,-1
610,-1,842.854,363.507,61.259,118.276,0.954585,-1,-1,-1
610,-1,1142.83,354.869,58.24,122.56,0.944044,-1,-1,-1
610,-1,939.807,363.051,61.323,126.317,0.924363,-1,-1,-1
611,-1,1746.26,178.446,172.74,503.436,0.995646,-1,-1,-1
611,-1,755.188,313.932,66.076,159.921,0.988142,-1,-1,-1
611,-1,45.2923,352.792,41.0152,94.454,0.98016,-1,-1,-1
611,-1,1326.66,336.494,61.66,144.75,0.97291,-1,-1,-1
611,-1,839.088,368.576,63.196,123.969,0.948724,-1,-1,-1
611,-1,1143.41,353.666,60.49,124.364,0.944136,-1,-1,-1
611,-1,944.489,385.791,53.636,116.347,0.937006,-1,-1,-1
611,-1,968.65,357.479,62.54,133.927,0.663,-1,-1,-1
611,-1,1775.77,458.807,143.23,430.467,0.514292,-1,-1,-1
612,-1,1770.7,185.655,148.3,726.82,0.991975,-1,-1,-1
612,-1,754.371,292.969,83.04,198.856,0.987468,-1,-1,-1
612,-1,1328.4,341.587,72.09,138.176,0.983668,-1,-1,-1
612,-1,35.8296,349.329,58.866,112.084,0.977168,-1,-1,-1
612,-1,1149.24,341.48,63.18,141.864,0.962821,-1,-1,-1
612,-1,839.879,331.197,67.211,153.955,0.942645,-1,-1,-1
612,-1,952.819,363.974,56.801,134.666,0.922849,-1,-1,-1
612,-1,917.615,353.892,60.932,139.668,0.685253,-1,-1,-1
613,-1,753.929,295.921,86.393,191.972,0.982498,-1,-1,-1
613,-1,44.591,350.215,43.647,96.12,0.978307,-1,-1,-1
613,-1,1776.85,197.097,142.15,496.621,0.969228,-1,-1,-1
613,-1,1323.79,349.903,68.73,121.093,0.95713,-1,-1,-1
613,-1,840.697,346.518,66.504,148.413,0.94092,-1,-1,-1
613,-1,955.953,368.095,53.507,131.731,0.934649,-1,-1,-1
613,-1,1136.69,327.85,58.41,142.841,0.863834,-1,-1,-1
613,-1,986.233,361.554,60.327,119.127,0.606277,-1,-1,-1
614,-1,767.089,319.528,67.566,177.825,0.976227,-1,-1,-1
614,-1,40.1647,355.177,64.7413,97.451,0.973761,-1,-1,-1
614,-1,852.297,351.845,64.515,149.868,0.966468,-1,-1,-1
614,-1,1330.04,342.381,70.92,116.045,0.959123,-1,-1,-1
614,-1,1156.99,336.434,63.7,137.441,0.949235,-1,-1,-1
614,-1,968.728,371.206,54.932,128.445,0.917235,-1,-1,-1
614,-1,1818.66,191.638,100.34,422.564,0.595901,-1,-1,-1
615,-1,1355.21,335.32,66.82,147.155,0.986774,-1,-1,-1
615,-1,757.401,295.849,87.08,210.986,0.978746,-1,-1,-1
615,-1,850.029,354.227,69.479,155.432,0.976856,-1,-1,-1
615,-1,41.1996,358.29,66.6554,94.929,0.975886,-1,-1,-1
615,-1,1158.76,341.389,63.37,131.912,0.961634,-1,-1,-1
615,-1,970.38,372.165,54.23,124.273,0.905342,-1,-1,-1
616,-1,757.632,310.777,75.146,138.811,0.967591,-1,-1,-1
616,-1,1145.23,273.888,84.34,207.241,0.96161,-1,-1,-1
616,-1,961.136,274.365,100.414,216.706,0.915428,-1,-1,-1
616,-1,1346.1,320.928,81.48,150.326,0.663771,-1,-1,-1
617,-1,1347.47,336.825,77.22,157.428,0.984872,-1,-1,-1
617,-1,1149.1,330.57,73.84,150.447,0.980367,-1,-1,-1
617,-1,780.12,326.393,63.008,167.236,0.974681,-1,-1,-1
617,-1,972.579,330.701,68.081,153.504,0.883856,-1,-1,-1
617,-1,863.418,358.258,62.682,130.806,0.817941,-1,-1,-1
617,-1,34.0868,353.785,76.9062,105.551,0.666474,-1,-1,-1
617,-1,1835.81,240.658,80.31,347.92,0.600143,-1,-1,-1
618,-1,1169.82,309.818,66.63,165.357,0.989556,-1,-1,-1
618,-1,30.0654,364.453,75.2146,111.145,0.978117,-1,-1,-1
618,-1,1366.68,332.369,66.28,166.035,0.973228,-1,-1,-1
618,-1,760.315,272.285,79.147,190.77,0.950489,-1,-1,-1
618,-1,965.166,327.592,83.934,150.69,0.88588,-1,-1,-1
618,-1,871.439,353.248,53.581,150.005,0.838808,-1,-1,-1
619,-1,1171.81,338.921,53.92,137.928,0.983318,-1,-1,-1
619,-1,775.143,295.609,69.505,192.459,0.965303,-1,-1,-1
619,-1,1349.49,346.083,79.99,138.243,0.964459,-1,-1,-1
619,-1,986.208,307.072,78.772,177.882,0.898508,-1,-1,-1
619,-1,869.896,353.719,58.184,147.717,0.890661,-1,-1,-1
619,-1,33.9964,354.841,50.4251,92.02,0.765237,-1,-1,-1
620,-1,777.354,302.306,74.823,199.77,0.981713,-1,-1,-1
620,-1,1165.98,332.808,80.75,131.531,0.970357,-1,-1,-1
620,-1,29.9438,361.426,67.8016,102.393,0.952332,-1,-1,-1
620,-1,1369.07,345.387,83.77,153.112,0.927621,-1,-1,-1
620,-1,861.583,336.34,67.598,174.353,0.902157,-1,-1,-1
620,-1,1000.74,367.187,58.54,133.612,0.880541,-1,-1,-1
621,-1,784.768,297.819,69.465,191.432,0.980251,-1,-1,-1
621,-1,34.2141,363.787,47.7803,85.461,0.960158,-1,-1,-1
621,-1,1185.08,241.776,65.52,250.776,0.954786,-1,-1,-1
621,-1,1000.38,309.179,72.57,186.132,0.925271,-1,-1,-1
621,-1,889.253,372.62,66.563,142.061,0.864108,-1,-1,-1
621,-1,1385.68,335.592,76.91,147.409,0.682383,-1,-1,-1
621,-1,866.238,358.222,49.913,147.71,0.531652,-1,-1,-1
621,-1,49.5665,380.167,62.9765,92.697,0.507478,-1,-1,-1
621,-1,5.37746,350.048,56.87,114.438,0.506132,-1,-1,-1
622,-1,765.441,333.442,99.283,155.057,0.973323,-1,-1,-1
622,-1,22.9921,363.455,70.9856,114.934,0.970107,-1,-1,-1
622,-1,1175.75,330.921,61.09,140.826,0.956281,-1,-1,-1
622,-1,975.026,360.901,68.754,137.275,0.941191,-1,-1,-1
622,-1,868.705,356.832,69.606,143.756,0.896553,-1,-1,-1
622,-1,1390.13,326.19,68.04,147.238,0.832445,-1,-1,-1
623,-1,781.165,292.901,83.389,207.703,0.974159,-1,-1,-1
623,-1,28.5251,347.28,55.2801,104.331,0.970594,-1,-1,-1
623,-1,1173.8,289.927,66.29,209.904,0.956456,-1,-1,-1
623,-1,1395.92,339.081,67.77,135.174,0.928658,-1,-1,-1
623,-1,1005.81,381.404,77.21,109.603,0.911663,-1,-1,-1
623,-1,882.044,349.232,59.892,139.305,0.878995,-1,-1,-1
623,-1,974.1,375.3,57.61,125.451,0.647919,-1,-1,-1
624,-1,799.543,316.906,67.718,184.556,0.982554,-1,-1,-1
624,-1,1182.91,337.212,61.2,133.35,0.96902,-1,-1,-1
624,-1,38.7765,360.075,65.5395,113.736,0.966264,-1,-1,-1
624,-1,877.609,343.121,63.811,158.716,0.953476,-1,-1,-1
624,-1,1404.03,323.929,70.94,148.378,0.914064,-1,-1,-1
624,-1,988.039,376.051,72.121,121.756,0.797749,-1,-1,-1
624,-1,1031.26,358.175,53.62,117.447,0.514124,-1,-1,-1
625,-1,1186.57,355.349,61.32,133.926,0.979408,-1,-1,-1
625,-1,791.264,314.238,82.578,183.969,0.97283,-1,-1,-1
625,-1,17.9921,333.281,71.2773,137.837,0.967963,-1,-1,-1
625,-1,1405.02,333.288,84.8,138.855,0.946171,-1,-1,-1
625,-1,880.437,352.579,57.819,150.814,0.922033,-1,-1,-1
625,-1,1001.77,373.569,76.52,121.573,0.854388,-1,-1,-1
625,-1,68.1218,363.783,57.8412,110.729,0.533146,-1,-1,-1
626,-1,808.657,313.982,66.302,182.669,0.978613,-1,-1,-1
626,-1,1180.24,349.46,86.96,125.312,0.976258,-1,-1,-1
626,-1,44.8379,343.088,56.1661,125.561,0.97257,-1,-1,-1
626,-1,1403.42,324.352,85.95,175.107,0.956588,-1,-1,-1
626,-1,883.423,353.643,69.224,151.185,0.929823,-1,-1,-1
626,-1,998.933,363.124,59.017,136.537,0.877327,-1,-1,-1
627,-1,802.096,295.603,70.021,220.492,0.973507,-1,-1,-1
627,-1,39.784,344.53,55.2018,126.85,0.970425,-1,-1,-1
627,-1,1200.42,354.367,59.97,119.574,0.969622,-1,-1,-1
627,-1,1409.87,318.709,68.61,168.737,0.929469,-1,-1,-1
627,-1,883.985,352.15,59.132,155.017,0.9143,-1,-1,-1
627,-1,1017.9,361.71,62.19,122.751,0.878277,-1,-1,-1
627,-1,68.7744,363.892,59.3576,118.134,0.604925,-1,-1,-1
627,-1,976.384,381.39,55.626,136.061,0.512182,-1,-1,-1
628,-1,805.912,303.909,67.546,208.202,0.978528,-1,-1,-1
628,-1,30.0368,359.364,65.4362,118.068,0.971749,-1,-1,-1
628,-1,1183.03,351.98,67.35,130.668,0.964512,-1,-1,-1
628,-1,883.317,348.842,69.567,168.626,0.950066,-1,-1,-1
628,-1,1421.6,322.582,66.26,171.492,0.942127,-1,-1,-1
628,-1,1013.08,363.218,63.18,117.516,0.884135,-1,-1,-1
628,-1,67.397,372.037,54.556,110.319,0.60523,-1,-1,-1
628,-1,983.116,377.288,61.334,140.837,0.595768,-1,-1,-1
629,-1,1192.3,325.478,80.77,148.529,0.986786,-1,-1,-1
629,-1,1436.41,324.341,79.74,191.436,0.979221,-1,-1,-1
629,-1,18.7591,365.707,76.0463,128.895,0.971788,-1,-1,-1
629,-1,813.348,322.316,52.513,174.164,0.931395,-1,-1,-1
629,-1,887.929,347.219,71.638,153.739,0.892579,-1,-1,-1
629,-1,1020.2,362.64,63.54,129.387,0.864298,-1,-1,-1
630,-1,3.21868,281.133,84.4205,212.414,0.963418,-1,-1,-1
630,-1,815.436,313.518,66.78,170.742,0.953656,-1,-1,-1
630,-1,1178.07,280.269,87.76,214.554,0.844613,-1,-1,-1
630,-1,1447.92,295.45,78.83,216.856,0.68879,-1,-1,-1
631,-1,1432.59,344.046,85.58,170.092,0.987609,-1,-1,-1
631,-1,805.72,312.894,76.577,203.411,0.972919,-1,-1,-1
631,-1,1189.6,346.914,74.08,135.116,0.968969,-1,-1,-1
631,-1,9.97879,348.816,81.6481,129.577,0.949659,-1,-1,-1
631,-1,884.02,347.547,62.874,169.378,0.915086,-1,-1,-1
631,-1,997.551,383.054,68.489,126.23,0.902311,-1,-1,-1
631,-1,1035.27,353.206,67.31,128.204,0.616479,-1,-1,-1
631,-1,1481.34,333.252,75,195.15,0.563969,-1,-1,-1
632,-1,1199.95,352.225,57.92,126.816,0.988939,-1,-1,-1
632,-1,1452.6,321.263,75.04,185.245,0.988664,-1,-1,-1
632,-1,9.07012,342.099,85.0348,150.088,0.972909,-1,-1,-1
632,-1,809.115,300.334,62.95,205.687,0.968827,-1,-1,-1
632,-1,1036,377.041,77.11,122.797,0.902202,-1,-1,-1
632,-1,898.695,349.727,62.416,162.081,0.81717,-1,-1,-1
632,-1,1006.52,380.676,59.62,120.674,0.647611,-1,-1,-1
633,-1,8.54611,272.787,78.5987,216.472,0.984376,-1,-1,-1
633,-1,1457.72,321.417,68.25,191.074,0.971612,-1,-1,-1
633,-1,1207.44,350.262,60.99,140.487,0.954648,-1,-1,-1
633,-1,812.758,319.79,64.578,165.69,0.935706,-1,-1,-1
633,-1,914.37,358.246,78.804,141.402,0.552278,-1,-1,-1
634,-1,1189.94,346.759,86.71,133.113,0.99005,-1,-1,-1
634,-1,1450.75,323.38,89.99,198.834,0.981953,-1,-1,-1
634,-1,807.943,285.788,68.953,208.12,0.962122,-1,-1,-1
634,-1,15.445,267.674,65.9923,204.454,0.926977,-1,-1,-1
634,-1,897.055,349.106,70.313,144.145,0.905025,-1,-1,-1
634,-1,1031.83,376.37,78.31,119.109,0.860017,-1,-1,-1
635,-1,9.23323,272.084,63.3212,187.398,0.962467,-1,-1,-1
635,-1,1463.13,285.889,76.53,251.952,0.948573,-1,-1,-1
635,-1,1179.94,257.295,93.41,242.917,0.935134,-1,-1,-1
635,-1,814.881,317.44,60.362,153.304,0.883951,-1,-1,-1
635,-1,916.048,374.4,75.242,148.822,0.840689,-1,-1,-1
635,-1,1021.79,330.399,75.83,170.975,0.828693,-1,-1,-1
636,-1,1204.14,351.883,71.38,125.791,0.979536,-1,-1,-1
636,-1,802.896,290.273,68.33,194.886,0.96887,-1,-1,-1
636,-1,1463.61,289.721,79.78,229.958,0.966833,-1,-1,-1
636,-1,4.39554,318.99,48.3157,159.735,0.949118,-1,-1,-1
636,-1,887.705,359.035,68.595,147.471,0.940048,-1,-1,-1
636,-1,997.095,378.889,75.365,116.842,0.89057,-1,-1,-1
637,-1,1186.28,306.626,87.57,172.542,0.982549,-1,-1,-1
637,-1,804.072,287.21,68.769,183.27,0.942861,-1,-1,-1
637,-1,875.279,369.635,64.983,133.054,0.911472,-1,-1,-1
637,-1,1014.68,376.142,83.7,107.457,0.863873,-1,-1,-1
637,-1,15.5313,308.456,46.9849,164.88,0.842836,-1,-1,-1
637,-1,921.74,368.8,61.471,138.186,0.669989,-1,-1,-1
637,-1,1453.2,283.64,96.99,233.804,0.643821,-1,-1,-1
638,-1,1190.42,325.742,69.1,133.563,0.988368,-1,-1,-1
638,-1,1.06591,331.941,64.0869,147.726,0.970423,-1,-1,-1
638,-1,885.864,352.69,64.289,152.605,0.950563,-1,-1,-1
638,-1,804.989,294.268,73.323,197.355,0.94995,-1,-1,-1
638,-1,994.268,378.814,79.462,121.642,0.793145,-1,-1,-1
638,-1,1471.38,289.605,91.93,214.655,0.713897,-1,-1,-1
639,-1,1467.88,293.391,95.96,217.128,0.988923,-1,-1,-1
639,-1,1176.98,336.689,80.71,121.668,0.979555,-1,-1,-1
639,-1,808.581,270.668,69.157,211.92,0.959821,-1,-1,-1
639,-1,890.97,338.885,62.741,148.749,0.937823,-1,-1,-1
639,-1,1002.14,364.611,53.27,125.53,0.805857,-1,-1,-1
639,-1,2.63828,291.243,39.4237,179.476,0.754362,-1,-1,-1
639,-1,1039.58,362.595,59.4,123.518,0.700031,-1,-1,-1
640,-1,1474.17,298.302,87.46,219.315,0.987548,-1,-1,-1
640,-1,1184.19,332.606,60.88,140.358,0.987409,-1,-1,-1
640,-1,807.487,289.924,65.804,183.897,0.971278,-1,-1,-1
640,-1,887.118,332.737,67.146,143.72,0.914911,-1,-1,-1
640,-1,2.2586,294.245,34.9187,180.181,0.888405,-1,-1,-1
640,-1,1002.4,362.105,53.03,122.769,0.804592,-1,-1,-1
640,-1,1041.17,369.326,58.29,121.028,0.753869,-1,-1,-1
641,-1,1178.81,331.777,76.79,120.427,0.986542,-1,-1,-1
641,-1,1479.7,291.013,82.8,224.492,0.984341,-1,-1,-1
641,-1,800.454,296.455,76.37,188.229,0.969662,-1,-1,-1
641,-1,882.234,341.139,65.23,146.792,0.929977,-1,-1,-1
641,-1,1000.07,372.427,58.21,131.018,0.911667,-1,-1,-1
641,-1,3.01895,284.021,35.7157,195.941,0.796479,-1,-1,-1
641,-1,1042.11,356.081,51.09,127.155,0.715788,-1,-1,-1
642,-1,1178.65,332.064,74.68,118.677,0.985348,-1,-1,-1
642,-1,1484.03,294.002,83.95,241.442,0.97862,-1,-1,-1
642,-1,804.033,281.464,70.222,216.246,0.974603,-1,-1,-1
642,-1,883.063,339.797,65.731,156.688,0.960175,-1,-1,-1
642,-1,987.147,369.856,71.923,107.638,0.681937,-1,-1,-1
642,-1,1041.72,370.154,60.82,125.817,0.649689,-1,-1,-1
643,-1,1491.28,282.852,80.36,221.756,0.978991,-1,-1,-1
643,-1,803.432,320.756,66.898,149.733,0.956256,-1,-1,-1
643,-1,1180.74,318.003,73.48,161.465,0.938324,-1,-1,-1
643,-1,1010.46,350.143,61.9,140.326,0.723455,-1,-1,-1
643,-1,1054.59,331.06,60.42,127.023,0.602957,-1,-1,-1
644,-1,1503.35,292.383,82.78,238.766,0.988625,-1,-1,-1
644,-1,806.325,303.447,58.682,166.085,0.928427,-1,-1,-1
644,-1,1198.29,331.905,57.87,129.309,0.917344,-1,-1,-1
644,-1,997.672,379.163,81.378,116.201,0.770981,-1,-1,-1
644,-1,1045.61,343.549,61.75,130.387,0.505041,-1,-1,-1
645,-1,1512.04,317.082,86.21,222.914,0.991734,-1,-1,-1
645,-1,1206.56,323.163,51.24,156.921,0.991629,-1,-1,-1
645,-1,806.682,283.998,66.619,198.807,0.973764,-1,-1,-1
645,-1,1017,382.209,78.14,105.549,0.910548,-1,-1,-1
645,-1,900.301,337.856,55.436,156.505,0.876823,-1,-1,-1
645,-1,976.309,380.27,70.021,120.972,0.794319,-1,-1,-1
646,-1,1533.32,292.393,77.79,240.819,0.966574,-1,-1,-1
646,-1,1012.5,316.844,97.46,172.846,0.932797,-1,-1,-1
646,-1,1159.05,241.924,120.38,239.484,0.825284,-1,-1,-1
646,-1,806.078,327.418,59.791,139.07,0.728072,-1,-1,-1
646,-1,903.622,332.514,82.204,168.164,0.655515,-1,-1,-1
647,-1,812.526,288.521,63.745,184.853,0.970178,-1,-1,-1
647,-1,1207.82,319.007,64.27,157.113,0.968139,-1,-1,-1
647,-1,1525.67,289.519,93.52,252.236,0.950629,-1,-1,-1
647,-1,887.703,331.328,68.817,194.729,0.931656,-1,-1,-1
647,-1,1025.93,325.654,77.39,151.819,0.919765,-1,-1,-1
648,-1,1542.53,301.961,93.65,239.812,0.986062,-1,-1,-1
648,-1,819.292,299.582,66.613,185.747,0.985675,-1,-1,-1
648,-1,1184.34,333.141,95,145.43,0.96642,-1,-1,-1
648,-1,1011.24,356.959,70.68,144.315,0.895781,-1,-1,-1
648,-1,1051.42,356.026,58.44,126.357,0.856414,-1,-1,-1
648,-1,907.406,352.022,68.7,147.509,0.847947,-1,-1,-1
649,-1,815.83,300.899,84.295,189.175,0.982159,-1,-1,-1
649,-1,1200.34,326.276,66.26,138.754,0.957628,-1,-1,-1
649,-1,1554.82,284.073,91.53,255.595,0.954091,-1,-1,-1
649,-1,908.899,355.417,69.563,133.136,0.898838,-1,-1,-1
649,-1,1031.06,361.527,64.28,131.824,0.770871,-1,-1,-1
650,-1,1578.12,288.083,96.15,257.521,0.988153,-1,-1,-1
650,-1,1192.47,322.114,76.27,145.952,0.984011,-1,-1,-1
650,-1,825.282,285.754,74.172,208.843,0.983064,-1,-1,-1
650,-1,909.947,362.723,63.665,129.334,0.937879,-1,-1,-1
650,-1,1028.08,365.977,62.26,112.437,0.845553,-1,-1,-1
650,-1,992.102,394.925,74.948,109.742,0.594473,-1,-1,-1
651,-1,1217.29,318.759,72.05,160.456,0.991328,-1,-1,-1
651,-1,834.13,284.959,63.733,200.795,0.96556,-1,-1,-1
651,-1,1567.83,275.443,114.24,279.049,0.961939,-1,-1,-1
651,-1,909.898,335.931,61.656,153.448,0.81118,-1,-1,-1
651,-1,1034.69,356.152,51.76,125.187,0.781292,-1,-1,-1
651,-1,1070.07,384.214,73.92,113.184,0.617945,-1,-1,-1
652,-1,1215.68,321.574,59.41,154.544,0.993632,-1,-1,-1
652,-1,1577.1,282.69,103.08,266.186,0.985393,-1,-1,-1
652,-1,845.333,309.079,52.831,165.989,0.956746,-1,-1,-1
652,-1,921.152,350.402,69.02,136.711,0.947993,-1,-1,-1
652,-1,1032.31,371.59,63.51,123.751,0.633262,-1,-1,-1
652,-1,1068.71,354.749,71.89,133.567,0.539672,-1,-1,-1
653,-1,1584.92,303.109,91.94,234.154,0.988883,-1,-1,-1
653,-1,1232.2,321.256,51.15,160.085,0.987339,-1,-1,-1
653,-1,923.331,339.939,62.748,159.129,0.953995,-1,-1,-1
653,-1,828.345,263.053,72.797,244.936,0.920924,-1,-1,-1
653,-1,1032.84,362.262,61.17,138.515,0.918421,-1,-1,-1
653,-1,1065.93,369.004,72.55,122.594,0.830691,-1,-1,-1
654,-1,1225.96,284.739,79.22,187.048,0.990539,-1,-1,-1
654,-1,1608.87,280.721,97.29,278.28,0.987338,-1,-1,-1
654,-1,1046.66,279.676,101.21,220.822,0.946087,-1,-1,-1
654,-1,946.366,343.33,71.134,166.582,0.899905,-1,-1,-1
654,-1,839.22,284.251,69.564,175.61,0.881713,-1,-1,-1
================================================
FILE: data/ETH-Bahnhof/det.txt
================================================
1,-1,286.552,154.138,71.337,167.328,0.998331,-1,-1,-1
1,-1,222.571,179.989,33.767,108.927,0.995026,-1,-1,-1
1,-1,456.542,213.434,25.133,57.535,0.964512,-1,-1,-1
1,-1,542.825,206.921,24.114,44.981,0.596525,-1,-1,-1
2,-1,294.638,150.194,55.286,178.486,0.99859,-1,-1,-1
2,-1,220.799,176.823,34.885,113.668,0.994387,-1,-1,-1
2,-1,454.444,205.312,26.949,63.128,0.97626,-1,-1,-1
3,-1,300.521,147.749,50.891,183.648,0.997982,-1,-1,-1
3,-1,220.699,180.031,34.879,114.825,0.994712,-1,-1,-1
3,-1,453.872,204.048,26.813,68.443,0.974494,-1,-1,-1
4,-1,296.265,145.238,67.028,192.809,0.999041,-1,-1,-1
4,-1,220.556,183.745,35.149,110.888,0.99591,-1,-1,-1
4,-1,453.158,210.629,23.862,58.346,0.979654,-1,-1,-1
4,-1,585.189,211.552,20.98,35.213,0.713657,-1,-1,-1
5,-1,303.088,145.696,62.415,187.738,0.998571,-1,-1,-1
5,-1,218.008,177.205,37.16,124.358,0.988475,-1,-1,-1
5,-1,450.625,214.432,23.298,52.261,0.979398,-1,-1,-1
6,-1,304.084,137.272,74.38,199.85,0.999211,-1,-1,-1
6,-1,217.269,183.92,38.347,108.882,0.992362,-1,-1,-1
6,-1,451.949,215.578,22.787,53.354,0.976624,-1,-1,-1
7,-1,299.879,139.621,82.111,201.998,0.998124,-1,-1,-1
7,-1,215.266,177.35,39.85,117.236,0.993116,-1,-1,-1
7,-1,448.477,217.403,35.727,68.105,0.960458,-1,-1,-1
8,-1,310.692,132.187,80.512,218.498,0.99925,-1,-1,-1
8,-1,213.265,173.745,41.753,123.632,0.991725,-1,-1,-1
8,-1,450.154,222.069,34.489,64.804,0.9595,-1,-1,-1
8,-1,585.98,215.662,15.467,23.889,0.756143,-1,-1,-1
9,-1,311.745,145.799,79.287,191.903,0.998864,-1,-1,-1
9,-1,213.157,184.968,39.652,109.289,0.993849,-1,-1,-1
9,-1,450.817,219.366,23.972,56.864,0.984386,-1,-1,-1
9,-1,584.658,216.979,16.249,22.663,0.705541,-1,-1,-1
10,-1,318.061,146.092,84.658,204.603,0.999129,-1,-1,-1
10,-1,220.662,175.54,34.546,126.436,0.991767,-1,-1,-1
10,-1,452.441,220.334,25.652,55.974,0.982146,-1,-1,-1
10,-1,585.703,215.227,17.662,24.022,0.602606,-1,-1,-1
11,-1,325.753,137.281,88.041,224.133,0.99869,-1,-1,-1
11,-1,215.31,176.452,45.037,133.166,0.995197,-1,-1,-1
11,-1,451.308,216.219,31.61,60.138,0.971579,-1,-1,-1
12,-1,333.236,129.299,88.878,228.326,0.998076,-1,-1,-1
12,-1,219.298,173.939,41.79,145.053,0.992544,-1,-1,-1
12,-1,451.342,218.689,30.213,64.694,0.986577,-1,-1,-1
12,-1,592.038,224.186,20.862,30.538,0.521629,-1,-1,-1
13,-1,343.645,127.987,87.415,230.954,0.999055,-1,-1,-1
13,-1,456.03,218.096,26.165,60.293,0.989663,-1,-1,-1
13,-1,215.656,176.982,38.901,142.567,0.988273,-1,-1,-1
13,-1,591.02,221.108,22.489,31.629,0.658784,-1,-1,-1
14,-1,353.296,105.509,81.347,277.372,0.999039,-1,-1,-1
14,-1,215.21,179.505,49.278,134.181,0.991494,-1,-1,-1
14,-1,462.674,225.427,21.151,54.311,0.98677,-1,-1,-1
14,-1,589.401,219.212,21.848,32.344,0.787233,-1,-1,-1
15,-1,367.17,102.647,83.707,281.567,0.999176,-1,-1,-1
15,-1,220.973,170.201,34.148,151.2,0.993023,-1,-1,-1
15,-1,461.839,225.891,20.783,52.626,0.987438,-1,-1,-1
15,-1,592.749,226.256,22.689,24.861,0.78062,-1,-1,-1
16,-1,371.371,98.6122,91.302,292.963,0.998369,-1,-1,-1
16,-1,221.342,175.279,37.379,143.784,0.993728,-1,-1,-1
16,-1,463.213,219.303,19.517,63.141,0.985785,-1,-1,-1
16,-1,591.866,218.662,24.823,37.872,0.837435,-1,-1,-1
17,-1,378.285,97.5887,98.403,304.063,0.99918,-1,-1,-1
17,-1,212.241,171.481,59.211,149.706,0.996835,-1,-1,-1
17,-1,457.214,179.397,25.503,112.673,0.750669,-1,-1,-1
17,-1,590.388,216.505,26.698,35.472,0.72076,-1,-1,-1
18,-1,389.578,85.1351,100.749,310.635,0.999077,-1,-1,-1
18,-1,214.043,169.292,43.932,158.509,0.995827,-1,-1,-1
19,-1,405.666,81.0241,107.933,310.036,0.99934,-1,-1,-1
19,-1,209.397,170.655,68.974,154.194,0.99627,-1,-1,-1
20,-1,408.057,60.6474,115.269,354.713,0.999368,-1,-1,-1
20,-1,209.373,163.886,60.709,159.937,0.99759,-1,-1,-1
21,-1,423.978,63.4756,120.604,347.493,0.999113,-1,-1,-1
21,-1,209.233,162.902,48.173,163.87,0.995553,-1,-1,-1
22,-1,207.267,158.819,51.266,177.664,0.998208,-1,-1,-1
22,-1,452.476,34.5626,114.218,406.154,0.997856,-1,-1,-1
22,-1,584.214,218.2,25.616,29.735,0.805402,-1,-1,-1
23,-1,447.011,23.5675,173.803,442.601,0.998807,-1,-1,-1
23,-1,198.951,159.173,61.299,171.848,0.997695,-1,-1,-1
24,-1,454.384,15.7112,181.533,461.258,0.999103,-1,-1,-1
24,-1,192.21,151.302,62.099,181.135,0.996649,-1,-1,-1
25,-1,469.129,11.552,169.871,461.842,0.998431,-1,-1,-1
25,-1,190.639,145.028,62.004,197.161,0.996902,-1,-1,-1
25,-1,468.537,205.745,30.831,79.823,0.9267,-1,-1,-1
25,-1,329.921,214.322,17.937,44.956,0.705324,-1,-1,-1
26,-1,188.11,145.142,69.672,203.405,0.997793,-1,-1,-1
26,-1,471.82,31.6773,167.18,408.136,0.994702,-1,-1,-1
26,-1,467.528,222.346,27.985,54.695,0.946204,-1,-1,-1
26,-1,331.357,219.602,16.1,34.007,0.681503,-1,-1,-1
27,-1,181.587,138.27,67.307,210.381,0.997602,-1,-1,-1
27,-1,461.238,219.991,36.063,63.785,0.956484,-1,-1,-1
27,-1,547.835,167.462,89.265,149.201,0.890605,-1,-1,-1
27,-1,327.886,217.338,16.718,41.036,0.811738,-1,-1,-1
27,-1,334.496,227.951,17.607,40.696,0.79034,-1,-1,-1
28,-1,168.365,136.161,78.395,216.573,0.998492,-1,-1,-1
28,-1,460.671,219.606,26.984,57.359,0.981465,-1,-1,-1
28,-1,335.714,226.14,17.184,36.395,0.852207,-1,-1,-1
28,-1,327.694,216.296,16.384,40.541,0.789084,-1,-1,-1
29,-1,176.432,138.439,65.306,216.028,0.998088,-1,-1,-1
29,-1,461.574,215.843,36.081,63.151,0.962977,-1,-1,-1
29,-1,334.209,220.077,14.914,37.386,0.796942,-1,-1,-1
29,-1,325.636,215.45,15.522,38.936,0.591467,-1,-1,-1
30,-1,164.337,124.156,78.925,229.937,0.998138,-1,-1,-1
30,-1,462.654,218.745,38.278,63.249,0.984564,-1,-1,-1
30,-1,556.988,209.601,17.997,39.757,0.51956,-1,-1,-1
31,-1,158.435,120.245,84.384,240.917,0.99531,-1,-1,-1
31,-1,464.116,214.693,29.787,64.768,0.97633,-1,-1,-1
31,-1,332.137,221.521,17.197,32.27,0.74236,-1,-1,-1
31,-1,556.734,205.813,16.84,43.004,0.522245,-1,-1,-1
32,-1,143.097,115.436,88.495,252.061,0.999169,-1,-1,-1
32,-1,461.772,221.883,35.332,64.024,0.98486,-1,-1,-1
32,-1,339.835,217.044,13.878,48.803,0.874213,-1,-1,-1
33,-1,135.818,107.967,105.146,274.139,0.997264,-1,-1,-1
33,-1,464.718,222.447,33.424,61.548,0.977726,-1,-1,-1
33,-1,327.884,219.329,16.49,38.862,0.682767,-1,-1,-1
34,-1,138.709,98.6573,94.658,305.426,0.995672,-1,-1,-1
34,-1,462.375,215.664,22.859,55.894,0.9399,-1,-1,-1
34,-1,329.592,212.769,16.928,49.942,0.804302,-1,-1,-1
35,-1,117.304,89.3795,116.591,311.329,0.999045,-1,-1,-1
35,-1,467.127,222.154,28.161,58.495,0.962761,-1,-1,-1
36,-1,102.882,74.6712,110.796,325.695,0.999195,-1,-1,-1
36,-1,463.301,211.713,30.184,68.871,0.967673,-1,-1,-1
36,-1,332.404,217.336,17.352,49.271,0.847399,-1,-1,-1
36,-1,200.016,189.11,28.078,89.447,0.77825,-1,-1,-1
37,-1,82.8424,77.7557,135.235,343.87,0.999276,-1,-1,-1
37,-1,466.314,221.255,36.54,64.265,0.988583,-1,-1,-1
37,-1,198.22,198.799,23.002,80.044,0.872421,-1,-1,-1
37,-1,338.621,218.585,13.451,45.061,0.863074,-1,-1,-1
37,-1,327.092,214.996,16.368,57.681,0.721346,-1,-1,-1
38,-1,80.2977,45.4879,120.348,382.799,0.998531,-1,-1,-1
38,-1,466.208,218.437,39.125,68.18,0.988643,-1,-1,-1
38,-1,337.083,219.35,18.932,53.078,0.798384,-1,-1,-1
38,-1,327.04,217.156,15.312,53.731,0.742938,-1,-1,-1
38,-1,62.1405,228.779,34.7394,93.605,0.738638,-1,-1,-1
38,-1,198.434,198.182,23.903,78.562,0.510993,-1,-1,-1
39,-1,62.8802,24.1887,135.83,425.546,0.998697,-1,-1,-1
39,-1,461.559,213.862,41.404,72.446,0.993128,-1,-1,-1
39,-1,192.704,200.257,29.757,86.122,0.980186,-1,-1,-1
39,-1,327.676,219.791,16.229,48.525,0.843261,-1,-1,-1
39,-1,586.396,212.842,18.315,33.323,0.553913,-1,-1,-1
40,-1,47.4283,25.8817,126.562,437.733,0.997967,-1,-1,-1
40,-1,469.542,212.725,28.353,66.771,0.983861,-1,-1,-1
40,-1,194.559,194.857,30.146,84.951,0.963784,-1,-1,-1
40,-1,334.357,216.479,17.755,46.292,0.905187,-1,-1,-1
40,-1,532.57,214.189,18.525,28.296,0.760666,-1,-1,-1
40,-1,540.216,222.104,21.385,36.293,0.522761,-1,-1,-1
41,-1,15.9508,0.715286,151.932,478.285,0.999376,-1,-1,-1
41,-1,460.336,214.193,42.861,66.717,0.991868,-1,-1,-1
41,-1,193.266,200.841,28.42,80.064,0.951228,-1,-1,-1
41,-1,331.257,223.455,27.249,50.369,0.920321,-1,-1,-1
41,-1,541.453,212.052,20.016,29.17,0.581972,-1,-1,-1
42,-1,7.59352,0,145.506,475.262,0.99801,-1,-1,-1
42,-1,188.954,201.226,33.442,81.18,0.991813,-1,-1,-1
42,-1,466.226,210.564,36.809,65.193,0.969111,-1,-1,-1
42,-1,328.167,220.342,28.451,46.123,0.868041,-1,-1,-1
42,-1,539.152,207.915,22.278,39.475,0.834772,-1,-1,-1
43,-1,466.214,212.604,27.703,60.198,0.988032,-1,-1,-1
43,-1,4.09486,7.18068,144.08,465.502,0.985987,-1,-1,-1
43,-1,186.69,194.778,29.886,86.445,0.931402,-1,-1,-1
43,-1,342.921,219.872,15.933,45.068,0.88111,-1,-1,-1
43,-1,534.584,206.593,21.668,35.512,0.843844,-1,-1,-1
43,-1,332.139,212.453,16.298,42.278,0.787637,-1,-1,-1
44,-1,0,9.61099,135.825,464.899,0.996065,-1,-1,-1
44,-1,469.324,213.058,26.978,65.39,0.992086,-1,-1,-1
44,-1,186.938,199.712,27.499,85.753,0.975837,-1,-1,-1
44,-1,339.669,212.61,16.153,56.07,0.93625,-1,-1,-1
44,-1,535.693,206.85,21.858,36.752,0.847378,-1,-1,-1
44,-1,320.885,213.777,28.654,48.501,0.540824,-1,-1,-1
45,-1,465.914,206.936,30.544,68.889,0.991152,-1,-1,-1
45,-1,185.493,192.926,27.26,93.187,0.986892,-1,-1,-1
45,-1,339.67,210.354,14.795,44.674,0.854427,-1,-1,-1
45,-1,536.121,201.598,22.523,39.109,0.762921,-1,-1,-1
45,-1,321.778,208.814,27.449,51.042,0.584102,-1,-1,-1
46,-1,472.901,213.533,25.224,57.46,0.982525,-1,-1,-1
46,-1,179.301,195.291,31.218,86.834,0.952993,-1,-1,-1
46,-1,329.323,211.226,26.906,50.614,0.806521,-1,-1,-1
46,-1,535.405,200.295,23.72,40.492,0.576024,-1,-1,-1
47,-1,467.449,203.675,29.873,69.951,0.99184,-1,-1,-1
47,-1,178.135,187.984,29.483,104.863,0.980813,-1,-1,-1
47,-1,331.407,221.065,19.665,45.387,0.713871,-1,-1,-1
48,-1,469.552,207.237,27.518,64.733,0.990754,-1,-1,-1
48,-1,176.237,182.145,30.767,115.871,0.977026,-1,-1,-1
48,-1,331.384,215.703,16.992,51.695,0.626403,-1,-1,-1
48,-1,585.514,205.22,18.616,35.269,0.615716,-1,-1,-1
48,-1,594.691,202.304,22.392,44.805,0.558033,-1,-1,-1
49,-1,467.598,204.497,27.327,69.257,0.992536,-1,-1,-1
49,-1,172.516,198.92,37.097,91.448,0.984337,-1,-1,-1
49,-1,343.941,215.814,14.462,40.804,0.839219,-1,-1,-1
49,-1,330.58,214.391,22.556,51.641,0.790187,-1,-1,-1
50,-1,477.769,210.737,27.969,64.783,0.992306,-1,-1,-1
50,-1,175.493,187.217,34.649,100.09,0.99043,-1,-1,-1
50,-1,344.462,219.59,26.827,51.811,0.944834,-1,-1,-1
50,-1,330.261,210.795,23.492,55.476,0.79976,-1,-1,-1
51,-1,472.438,207.269,29.336,65.381,0.989965,-1,-1,-1
51,-1,162.106,185.606,50.667,117.547,0.982116,-1,-1,-1
51,-1,350.043,217.673,23.555,45.559,0.924313,-1,-1,-1
51,-1,331.735,210.352,21.999,58.806,0.810485,-1,-1,-1
52,-1,168.51,183.095,35.407,107.401,0.99309,-1,-1,-1
52,-1,475.961,208.671,30.775,57.812,0.978846,-1,-1,-1
52,-1,333.663,221.454,15.935,47.874,0.905174,-1,-1,-1
52,-1,350.093,221.417,16.764,42.093,0.901471,-1,-1,-1
53,-1,164.591,186.68,39.492,107.401,0.995682,-1,-1,-1
53,-1,474.787,210.635,40.246,61.338,0.991661,-1,-1,-1
53,-1,344.941,217.546,25.425,50.518,0.935495,-1,-1,-1
53,-1,337.268,213.194,13.818,48.831,0.723314,-1,-1,-1
54,-1,476.048,209.263,38.924,64.393,0.992893,-1,-1,-1
54,-1,160.686,183.672,40.563,123.188,0.973776,-1,-1,-1
54,-1,342.436,218.881,28.11,53.107,0.9361,-1,-1,-1
54,-1,336.08,211.999,13.769,57.137,0.759856,-1,-1,-1
55,-1,149.171,188.508,42.717,108.198,0.99057,-1,-1,-1
55,-1,477.678,208.232,35.96,66.427,0.96423,-1,-1,-1
55,-1,347.281,213.178,25.378,51.97,0.899115,-1,-1,-1
55,-1,329.942,209.979,20.074,57.105,0.8639,-1,-1,-1
56,-1,146.449,181.465,47.887,118.631,0.990321,-1,-1,-1
56,-1,468.436,203.211,41.955,73.964,0.962981,-1,-1,-1
56,-1,342.587,216.911,23.784,53.123,0.87869,-1,-1,-1
56,-1,330.7,211.227,19.071,56.791,0.717564,-1,-1,-1
57,-1,478.623,202.692,28.887,70.544,0.984008,-1,-1,-1
57,-1,149.291,179.869,40.112,125.268,0.975138,-1,-1,-1
57,-1,349.694,213.03,25.989,57.778,0.859361,-1,-1,-1
57,-1,331.795,199.291,18.261,69.121,0.85099,-1,-1,-1
57,-1,342.98,202.433,17.08,60.582,0.698471,-1,-1,-1
58,-1,478.66,200.944,29.685,72.183,0.993886,-1,-1,-1
58,-1,145.794,178.896,36.806,125.964,0.990881,-1,-1,-1
58,-1,332.518,202.846,14.904,56.194,0.826585,-1,-1,-1
58,-1,349.736,215.763,23.624,53.819,0.775453,-1,-1,-1
58,-1,343.128,208.904,14.138,55.148,0.519419,-1,-1,-1
59,-1,143.776,183.122,39.33,120.054,0.99219,-1,-1,-1
59,-1,479.813,205.73,32.082,74.262,0.980579,-1,-1,-1
59,-1,330.887,222.627,22.446,49.626,0.787323,-1,-1,-1
59,-1,357.215,220.429,17.563,46.535,0.775868,-1,-1,-1
60,-1,480.176,205.533,29.129,75.904,0.990078,-1,-1,-1
60,-1,136.168,183.109,44.085,114.014,0.980819,-1,-1,-1
60,-1,328.228,209.952,23.624,59.076,0.890467,-1,-1,-1
60,-1,366.034,221.666,14.699,43.911,0.653556,-1,-1,-1
61,-1,487.225,219.727,26.18,57.779,0.93879,-1,-1,-1
61,-1,331.989,204.187,20.899,66.711,0.914468,-1,-1,-1
61,-1,363.381,211.889,15.987,64.772,0.905325,-1,-1,-1
61,-1,119.314,187.199,68.043,109.115,0.891259,-1,-1,-1
62,-1,123.465,179.513,45.123,133.407,0.985612,-1,-1,-1
62,-1,335.344,205.568,22.379,70.288,0.962461,-1,-1,-1
62,-1,483.342,214.15,30.508,68.5,0.946193,-1,-1,-1
62,-1,365.833,210.08,17.841,59.554,0.940293,-1,-1,-1
63,-1,331.294,204.2,25.119,72.116,0.96203,-1,-1,-1
63,-1,119.753,164.226,43.392,158.6,0.953488,-1,-1,-1
63,-1,484.028,209.923,30.392,81.218,0.93265,-1,-1,-1
63,-1,366.131,215.139,17.423,61.949,0.930672,-1,-1,-1
64,-1,485.513,221.037,34.161,79.887,0.982512,-1,-1,-1
64,-1,121.722,177.073,44.902,144.277,0.977756,-1,-1,-1
64,-1,336.636,208.97,23.229,69.117,0.970565,-1,-1,-1
64,-1,359.034,220.137,40.341,54.837,0.924329,-1,-1,-1
65,-1,109.914,171.368,56.678,149.159,0.984034,-1,-1,-1
65,-1,490.034,211.076,30.431,79.558,0.981542,-1,-1,-1
65,-1,336.684,205.742,24.084,71.135,0.977521,-1,-1,-1
65,-1,366.673,217.319,22.713,61.367,0.916214,-1,-1,-1
65,-1,384.848,220.121,15.128,46.979,0.577826,-1,-1,-1
66,-1,94.8652,152.925,70.6418,169.42,0.997349,-1,-1,-1
66,-1,337.413,211.266,21.456,69.789,0.96132,-1,-1,-1
66,-1,366.904,216.493,27.732,57.729,0.931421,-1,-1,-1
66,-1,501.137,221.919,24.835,52.006,0.531893,-1,-1,-1
67,-1,376.653,212.031,18.517,65.816,0.984347,-1,-1,-1
67,-1,337.712,202.803,20.552,84.533,0.982072,-1,-1,-1
67,-1,95.1737,144.904,70.9433,182.685,0.966028,-1,-1,-1
67,-1,500.908,224.606,22.503,59.339,0.665505,-1,-1,-1
68,-1,76.5582,143.096,74.7758,192.691,0.997047,-1,-1,-1
68,-1,336.924,204.605,22.822,80.481,0.977734,-1,-1,-1
68,-1,377.839,204.942,20.407,73.515,0.97613,-1,-1,-1
68,-1,496.431,211.55,26.739,79.697,0.908782,-1,-1,-1
68,-1,87.6905,155.29,51.8395,65.394,0.626076,-1,-1,-1
69,-1,71.3381,149.343,84.9919,192.48,0.995892,-1,-1,-1
69,-1,330.9,206.45,41.409,78.856,0.987312,-1,-1,-1
69,-1,496.466,218.209,29.385,71.553,0.972314,-1,-1,-1
69,-1,375.758,197.312,25.004,92.006,0.94759,-1,-1,-1
69,-1,73.2574,158.239,51.2286,81.681,0.623232,-1,-1,-1
70,-1,337.138,202.62,37.312,86.842,0.983227,-1,-1,-1
70,-1,381.112,211.351,23.443,71.096,0.958348,-1,-1,-1
70,-1,76.1926,144.454,70.1884,204.673,0.929437,-1,-1,-1
70,-1,496.781,197.201,32.93,92.755,0.905728,-1,-1,-1
71,-1,58.475,144.257,75.384,207.134,0.988877,-1,-1,-1
71,-1,368.398,199.433,36.096,91.929,0.967533,-1,-1,-1
71,-1,337.21,200.492,37.188,94.973,0.963677,-1,-1,-1
71,-1,497.877,209.713,30.793,80.423,0.958382,-1,-1,-1
71,-1,59.0317,141.04,57.9273,81.901,0.815728,-1,-1,-1
72,-1,332.281,197.32,41.53,95.536,0.973074,-1,-1,-1
72,-1,28.7786,144.276,89.6694,120.485,0.969392,-1,-1,-1
72,-1,388.399,206.945,24.769,77.2,0.968501,-1,-1,-1
72,-1,499.811,205.424,25.617,77.548,0.946047,-1,-1,-1
72,-1,224.833,214.81,20.348,53.074,0.603806,-1,-1,-1
72,-1,372.637,194.787,20.53,91.033,0.591907,-1,-1,-1
73,-1,384.259,203.714,36.627,85.302,0.991792,-1,-1,-1
73,-1,333.553,191.689,43.615,106.777,0.972239,-1,-1,-1
73,-1,24.8163,140.791,79.9837,110.887,0.971918,-1,-1,-1
73,-1,501.974,212.422,24.648,71.071,0.923043,-1,-1,-1
73,-1,216.808,213.86,28.192,54.602,0.538284,-1,-1,-1
74,-1,377.514,202.133,45.585,84.059,0.994159,-1,-1,-1
74,-1,347.249,198.199,31.367,92.127,0.974125,-1,-1,-1
74,-1,34.6808,126.699,51.4457,90.047,0.944977,-1,-1,-1
74,-1,505.402,205.395,28.202,90.443,0.93134,-1,-1,-1
74,-1,20.3974,129.906,94.1716,221.891,0.590462,-1,-1,-1
75,-1,386.307,205.424,44.889,79.262,0.990024,-1,-1,-1
75,-1,349.711,190.396,38.924,106.129,0.986051,-1,-1,-1
75,-1,7.09245,127.995,89.4708,129.09,0.953353,-1,-1,-1
75,-1,504.097,200.028,30.667,94.909,0.937069,-1,-1,-1
75,-1,583.982,203.247,26.009,36.308,0.644711,-1,-1,-1
76,-1,391.272,203.155,42.328,79.465,0.988487,-1,-1,-1
76,-1,340.523,183.519,42.85,113.2,0.987502,-1,-1,-1
76,-1,509.299,199.672,32.789,89.806,0.985913,-1,-1,-1
76,-1,2.30014,112.299,95.2378,126.281,0.98484,-1,-1,-1
76,-1,594.483,214.236,23.014,32.513,0.687042,-1,-1,-1
76,-1,234.313,204.858,20.418,54.416,0.616747,-1,-1,-1
76,-1,308.719,206.472,13.212,52.544,0.558862,-1,-1,-1
77,-1,3.27345,93.3874,80.6823,307.841,0.998707,-1,-1,-1
77,-1,344.602,187.589,36.085,107.496,0.992278,-1,-1,-1
77,-1,395.9,199.998,42.766,89.442,0.990069,-1,-1,-1
77,-1,506.958,201.544,29.782,86.514,0.959369,-1,-1,-1
77,-1,12.1323,96.775,53.0162,122.031,0.862897,-1,-1,-1
78,-1,1.79741,66.0929,82.3418,350.241,0.995803,-1,-1,-1
78,-1,345.362,180.231,37.606,113.929,0.991831,-1,-1,-1
78,-1,391.048,196.255,50.119,89.678,0.991664,-1,-1,-1
78,-1,507.849,201.831,32.081,75.065,0.987947,-1,-1,-1
78,-1,265.395,207.051,17.617,54.628,0.684476,-1,-1,-1
78,-1,591.668,207.33,26.597,42.463,0.54712,-1,-1,-1
78,-1,1.14945,86.0963,64.8856,132.075,0.5254,-1,-1,-1
78,-1,574.352,206.152,23.75,32.492,0.518299,-1,-1,-1
79,-1,348.15,183.705,42.308,118.799,0.9926,-1,-1,-1
79,-1,0,88.7019,87.8898,299.749,0.990982,-1,-1,-1
79,-1,513.072,200.083,30.066,76.442,0.987062,-1,-1,-1
79,-1,406.553,203.985,30.881,80.987,0.978174,-1,-1,-1
79,-1,593.211,212.564,23.657,31.493,0.695074,-1,-1,-1
79,-1,572.245,204.545,30.41,37.857,0.690844,-1,-1,-1
79,-1,231.912,205.398,28.998,49.028,0.592472,-1,-1,-1
79,-1,7.46162,83.635,33.7445,141.129,0.546541,-1,-1,-1
80,-1,340.5,186.241,54.209,115.529,0.990569,-1,-1,-1
80,-1,406.92,191.319,34.793,100.759,0.982926,-1,-1,-1
80,-1,516.141,209.556,25.947,60.83,0.97736,-1,-1,-1
80,-1,586.339,213.416,21.204,30.059,0.743105,-1,-1,-1
80,-1,7.67267,73.7022,72.4904,335.622,0.720376,-1,-1,-1
80,-1,267.099,202.963,17.664,54.676,0.568634,-1,-1,-1
81,-1,408.974,192.078,32.726,107.43,0.990739,-1,-1,-1
81,-1,347.231,193.889,46.528,111.737,0.988729,-1,-1,-1
81,-1,513.017,205.887,29.138,75.644,0.965406,-1,-1,-1
81,-1,219.998,215.132,28.326,53.109,0.620716,-1,-1,-1
81,-1,302.469,208.803,14.374,54.389,0.502676,-1,-1,-1
82,-1,407.905,185.679,38.478,118.875,0.989091,-1,-1,-1
82,-1,352.022,189.412,40.305,119.812,0.988857,-1,-1,-1
82,-1,513.367,207.678,31.737,68.546,0.970244,-1,-1,-1
82,-1,262,209.957,16.383,52.367,0.558344,-1,-1,-1
82,-1,303.53,209.247,13.966,55.923,0.535165,-1,-1,-1
83,-1,352.364,187.765,48.503,129.18,0.992554,-1,-1,-1
83,-1,417.171,193.182,37.772,106.214,0.990094,-1,-1,-1
83,-1,519.528,207.165,27.792,80.508,0.980016,-1,-1,-1
83,-1,256.815,208.849,21.93,64.128,0.786954,-1,-1,-1
83,-1,219.441,216.603,29.772,59.165,0.706297,-1,-1,-1
83,-1,303.992,220.255,14.369,43.951,0.646519,-1,-1,-1
84,-1,357.096,185.541,39.848,122.059,0.994818,-1,-1,-1
84,-1,417.285,189.563,43.059,116.319,0.992313,-1,-1,-1
84,-1,516.05,212.902,33.597,64.761,0.992017,-1,-1,-1
84,-1,218.11,215.26,23.975,59.42,0.852274,-1,-1,-1
84,-1,266.138,205.616,16.105,59.285,0.750178,-1,-1,-1
84,-1,302.721,210.629,14.549,52.167,0.559035,-1,-1,-1
85,-1,355.475,182.834,46.655,143.187,0.994223,-1,-1,-1
85,-1,420.815,199.115,44.241,110.161,0.99403,-1,-1,-1
85,-1,519.003,213.452,31.058,67.291,0.992579,-1,-1,-1
85,-1,260.232,208.68,18.442,61.703,0.728573,-1,-1,-1
85,-1,305.551,218.385,14.936,44.358,0.594732,-1,-1,-1
85,-1,213.908,216.309,24.124,56.718,0.540854,-1,-1,-1
86,-1,356.466,184.405,52.448,135.804,0.994263,-1,-1,-1
86,-1,429.605,200.126,45.084,108.819,0.989786,-1,-1,-1
86,-1,520.302,210.041,31.351,76.458,0.979753,-1,-1,-1
86,-1,259.889,210.861,19.55,62.404,0.872097,-1,-1,-1
86,-1,215.466,216.996,26.478,62.14,0.579725,-1,-1,-1
86,-1,311.071,219.598,13.563,49.101,0.520768,-1,-1,-1
87,-1,431.069,193.148,49.088,126.512,0.993361,-1,-1,-1
87,-1,368.016,184.91,40.51,144.096,0.992433,-1,-1,-1
87,-1,518.734,212.022,35.275,86.445,0.990612,-1,-1,-1
87,-1,316.278,225.838,14.502,43.902,0.745699,-1,-1,-1
87,-1,259.767,215.873,18.395,59.855,0.738951,-1,-1,-1
88,-1,364.765,184.829,43.004,139.765,0.995229,-1,-1,-1
88,-1,439.598,198.197,47.52,111.662,0.993854,-1,-1,-1
88,-1,520.678,213.407,39.801,84.179,0.99061,-1,-1,-1
88,-1,315.084,225.998,15.785,41.163,0.899702,-1,-1,-1
88,-1,302.92,224.976,14.039,45.568,0.783571,-1,-1,-1
88,-1,262.111,217.933,15.588,51.929,0.679818,-1,-1,-1
89,-1,373.426,187.042,43.482,140.827,0.993643,-1,-1,-1
89,-1,524.634,208.737,31.917,84.817,0.991137,-1,-1,-1
89,-1,445.474,189.274,48.312,135.045,0.991113,-1,-1,-1
89,-1,259.189,219.198,17.973,52.199,0.89414,-1,-1,-1
89,-1,313.346,223.622,23.987,49.895,0.779425,-1,-1,-1
89,-1,306.475,227.852,14.389,47.456,0.687144,-1,-1,-1
90,-1,373.411,177.992,56.783,150.376,0.996696,-1,-1,-1
90,-1,445.687,202.426,38.665,116.838,0.992204,-1,-1,-1
90,-1,528.24,206.753,28.723,82.358,0.991611,-1,-1,-1
90,-1,314.512,226.436,15.11,39.18,0.954421,-1,-1,-1
90,-1,259.513,214.816,17.046,56.989,0.812887,-1,-1,-1
91,-1,366.99,172.298,67.069,155.187,0.997569,-1,-1,-1
91,-1,454.831,188.286,45.96,133.948,0.993409,-1,-1,-1
91,-1,532.357,210.114,27.531,74.116,0.991169,-1,-1,-1
91,-1,312.488,215.978,14.668,46.455,0.812331,-1,-1,-1
91,-1,322.993,218.949,25.523,55.805,0.668132,-1,-1,-1
92,-1,371.185,182.089,75.79,148.248,0.998296,-1,-1,-1
92,-1,456.827,185.706,47.218,136.786,0.99241,-1,-1,-1
92,-1,530.935,202.473,28.013,82.604,0.987064,-1,-1,-1
92,-1,260.872,215.161,18.888,57.372,0.879379,-1,-1,-1
92,-1,312.898,221.956,18.745,50.508,0.835297,-1,-1,-1
93,-1,389.89,168.235,50.39,178.078,0.99738,-1,-1,-1
93,-1,473.369,176.959,44.915,143.675,0.992549,-1,-1,-1
93,-1,532.571,209.386,26.756,82.049,0.989361,-1,-1,-1
93,-1,258.9,210.73,17.204,59.956,0.914882,-1,-1,-1
93,-1,314.163,222.196,15.839,44.788,0.811808,-1,-1,-1
93,-1,302.96,215.078,16.468,52.291,0.619073,-1,-1,-1
94,-1,382.345,166.094,73.189,177.339,0.99884,-1,-1,-1
94,-1,472.329,178.876,58.271,140.387,0.994756,-1,-1,-1
94,-1,536.696,200.4,26.624,91.444,0.988846,-1,-1,-1
94,-1,316.257,223.888,22.014,50.448,0.915231,-1,-1,-1
94,-1,258.137,210.33,21.911,61.021,0.911237,-1,-1,-1
95,-1,398.828,156.759,69.199,176.28,0.994705,-1,-1,-1
95,-1,484.275,175.538,55.017,161.844,0.983945,-1,-1,-1
95,-1,540.877,200.351,28.196,96.531,0.972758,-1,-1,-1
95,-1,316.472,222.483,17.471,40.103,0.936129,-1,-1,-1
95,-1,236.321,209.191,23.83,62.025,0.849035,-1,-1,-1
95,-1,262.778,210.634,22.489,59.771,0.838536,-1,-1,-1
95,-1,221.371,214.635,24.893,60.112,0.653675,-1,-1,-1
95,-1,250.767,210.291,20.744,57.673,0.632114,-1,-1,-1
96,-1,392.168,162.316,86.828,175.872,0.997462,-1,-1,-1
96,-1,489.96,178.949,62.45,159.035,0.990081,-1,-1,-1
96,-1,313.05,220.046,20.998,48.615,0.959042,-1,-1,-1
96,-1,543.53,204.41,24.549,88.88,0.927855,-1,-1,-1
96,-1,262.04,221.343,22.956,52.69,0.91244,-1,-1,-1
96,-1,300.337,220.567,17.149,44.597,0.779352,-1,-1,-1
96,-1,220.24,212.081,25.137,62.181,0.710616,-1,-1,-1
96,-1,593.112,212.324,20.464,27.854,0.594424,-1,-1,-1
96,-1,602.286,220.874,24.244,31.094,0.527678,-1,-1,-1
97,-1,497.994,179.29,71.619,170.345,0.997133,-1,-1,-1
97,-1,402.127,155.158,79.188,193.865,0.996974,-1,-1,-1
97,-1,310.071,220.785,18.248,48.266,0.973053,-1,-1,-1
97,-1,226.755,212.568,23.677,60.002,0.94132,-1,-1,-1
97,-1,291.68,210.883,21.976,54.97,0.82335,-1,-1,-1
97,-1,262.707,213.481,21.53,61.666,0.816836,-1,-1,-1
98,-1,509.245,167.742,59.226,173.698,0.997038,-1,-1,-1
98,-1,413.145,148.8,72.923,206.726,0.995806,-1,-1,-1
98,-1,309.73,215.889,27.849,56.521,0.974165,-1,-1,-1
98,-1,223.738,208.871,23.261,57.588,0.92743,-1,-1,-1
98,-1,262.123,208.546,20.447,69.084,0.782817,-1,-1,-1
98,-1,252.801,207.083,14.603,64.926,0.700019,-1,-1,-1
98,-1,598.577,216.395,19.954,30.669,0.660563,-1,-1,-1
98,-1,297.922,207.982,16.422,57.908,0.659945,-1,-1,-1
98,-1,381.66,211.15,28.309,44.472,0.553483,-1,-1,-1
99,-1,525.957,162.917,61.389,188.59,0.997795,-1,-1,-1
99,-1,418.331,142.351,94.204,229.746,0.99617,-1,-1,-1
99,-1,308.621,221.039,25.223,51.977,0.963003,-1,-1,-1
99,-1,298.569,219.772,16.274,47.603,0.808472,-1,-1,-1
99,-1,223.531,208.156,26.17,68.492,0.797993,-1,-1,-1
99,-1,257.889,214.798,14.613,53.641,0.713564,-1,-1,-1
99,-1,241.563,212.161,17.845,65.389,0.618702,-1,-1,-1
99,-1,596.832,214.038,35.415,44.186,0.543852,-1,-1,-1
100,-1,432.144,132.388,79.508,239.157,0.99711,-1,-1,-1
100,-1,540.744,160.303,61.81,178.58,0.996323,-1,-1,-1
100,-1,311.484,215.959,24.241,54.458,0.933415,-1,-1,-1
100,-1,395.462,200.885,29.607,77.741,0.919269,-1,-1,-1
100,-1,225.036,212.098,24.98,65.271,0.880019,-1,-1,-1
100,-1,240.001,211.332,23.158,70.187,0.857779,-1,-1,-1
100,-1,261.068,209.564,17.835,71.725,0.832946,-1,-1,-1
100,-1,411.656,168.136,51.693,176.073,0.81041,-1,-1,-1
100,-1,301.45,220.452,19.123,53.985,0.607139,-1,-1,-1
101,-1,540.338,156.671,81.815,200.432,0.997645,-1,-1,-1
101,-1,446.217,128.542,89.415,245.347,0.995607,-1,-1,-1
101,-1,392.913,198.435,38.412,88.331,0.980888,-1,-1,-1
101,-1,310.55,214.863,24.434,58.619,0.958658,-1,-1,-1
101,-1,302.163,221.323,15.341,47.146,0.918635,-1,-1,-1
101,-1,226.732,209.736,25.594,65.195,0.901971,-1,-1,-1
101,-1,248.126,212.559,20.427,64.709,0.869792,-1,-1,-1
101,-1,416.026,185.885,29.568,107.656,0.795587,-1,-1,-1
101,-1,261.05,212.917,16.051,68.57,0.755107,-1,-1,-1
102,-1,450.643,114.343,98.691,270.788,0.99705,-1,-1,-1
102,-1,549.243,149.473,83.898,232.987,0.996743,-1,-1,-1
102,-1,389.935,200.163,43.709,85.797,0.977728,-1,-1,-1
102,-1,314.425,215.248,18.4,50.603,0.96229,-1,-1,-1
102,-1,248.476,209.653,23.331,69.938,0.960986,-1,-1,-1
102,-1,420.47,208.273,24.549,65.874,0.854582,-1,-1,-1
102,-1,293.459,212.77,21.209,53.094,0.848595,-1,-1,-1
102,-1,231.401,209.697,18.758,68.479,0.740522,-1,-1,-1
103,-1,452.317,114.768,118.245,279.659,0.998191,-1,-1,-1
103,-1,580.457,139.872,53.457,235.589,0.997489,-1,-1,-1
103,-1,245.909,206.534,31.41,76.712,0.984754,-1,-1,-1
103,-1,393.835,202.442,36.936,74.967,0.983975,-1,-1,-1
103,-1,308.953,222.065,19.381,50.162,0.962664,-1,-1,-1
103,-1,419.753,187.976,30.64,107.22,0.960484,-1,-1,-1
103,-1,298.244,220.75,16.519,51.735,0.866697,-1,-1,-1
103,-1,229.934,202.219,28.382,75.39,0.807614,-1,-1,-1
104,-1,483.272,103.834,101.221,296.595,0.996787,-1,-1,-1
104,-1,593.069,138.894,44.905,257.718,0.992208,-1,-1,-1
104,-1,244.647,204.872,26.869,74.501,0.982434,-1,-1,-1
104,-1,310.365,216.004,28.339,57.759,0.96443,-1,-1,-1
104,-1,399.203,196.649,38.132,91.348,0.94551,-1,-1,-1
104,-1,299.59,221.709,16.484,50.08,0.879427,-1,-1,-1
104,-1,234.278,208.22,16.842,63.781,0.699438,-1,-1,-1
104,-1,417.773,207.595,32.932,62.993,0.643595,-1,-1,-1
105,-1,491.049,97.2029,140.879,328.747,0.996718,-1,-1,-1
105,-1,241.382,197.322,25.697,79.041,0.978541,-1,-1,-1
105,-1,406.044,196.036,56.874,92.459,0.965369,-1,-1,-1
105,-1,308.05,215.245,32.16,61.962,0.9644,-1,-1,-1
105,-1,292.532,219.622,23.095,57.066,0.84328,-1,-1,-1
106,-1,512.73,85.3096,126.27,349.488,0.997591,-1,-1,-1
106,-1,409.704,189.982,48.869,97.062,0.993107,-1,-1,-1
106,-1,241.411,199.016,25.313,79.216,0.985561,-1,-1,-1
106,-1,307.751,213.833,22.111,53.511,0.96632,-1,-1,-1
106,-1,293.039,205.816,19.298,67.765,0.7572,-1,-1,-1
107,-1,536.837,63.3962,102.163,373.365,0.993899,-1,-1,-1
107,-1,237.662,200.485,28.536,78.113,0.980062,-1,-1,-1
107,-1,410.107,186.049,32.484,109.9,0.979619,-1,-1,-1
107,-1,307.443,206.295,30.663,59.073,0.963966,-1,-1,-1
107,-1,434.735,195.001,26.105,90.401,0.946361,-1,-1,-1
107,-1,292.891,211.628,26.819,56.444,0.935877,-1,-1,-1
107,-1,221.312,202.605,24.079,77.933,0.764622,-1,-1,-1
108,-1,559.186,69.3882,79.814,381.897,0.986225,-1,-1,-1
108,-1,416.953,191.313,44.029,99.368,0.98264,-1,-1,-1
108,-1,240.123,200.312,28.983,81.877,0.975002,-1,-1,-1
108,-1,309.374,213.697,20.283,51.627,0.953164,-1,-1,-1
108,-1,294.819,217.724,15.745,50.571,0.872761,-1,-1,-1
108,-1,552.109,194.457,28.556,79.757,0.791852,-1,-1,-1
108,-1,445.205,192.987,22.92,85.647,0.764329,-1,-1,-1
108,-1,321.766,218.57,23.325,56.288,0.628763,-1,-1,-1
108,-1,216.811,202.171,20.365,69.666,0.582478,-1,-1,-1
109,-1,553.088,195.79,28.294,83.539,0.980397,-1,-1,-1
109,-1,434.898,183.298,36.595,106.919,0.965593,-1,-1,-1
109,-1,238.796,202.555,24.518,79.53,0.956486,-1,-1,-1
109,-1,312.462,209.244,20.926,55.364,0.934747,-1,-1,-1
109,-1,415.709,185.661,35.671,109.769,0.916623,-1,-1,-1
109,-1,602.474,141.084,33.615,112.975,0.901778,-1,-1,-1
109,-1,299.151,218.391,17.266,56.23,0.87962,-1,-1,-1
109,-1,320.972,216.839,26.056,58.22,0.687718,-1,-1,-1
109,-1,219.512,202.063,20.063,73.045,0.587893,-1,-1,-1
110,-1,554.747,200.954,33.485,79.164,0.989852,-1,-1,-1
110,-1,417.018,184.346,65.332,110.558,0.984648,-1,-1,-1
110,-1,309.443,211.622,17.892,52.811,0.944996,-1,-1,-1
110,-1,294.566,219.27,16.189,46.045,0.926937,-1,-1,-1
110,-1,227.093,214.352,32.844,62.936,0.916679,-1,-1,-1
110,-1,284.459,212.893,18.311,57.281,0.574849,-1,-1,-1
111,-1,420.873,185.418,50.37,114.294,0.993092,-1,-1,-1
111,-1,550.781,191.342,34.577,105.67,0.979062,-1,-1,-1
111,-1,226.389,207.66,24.332,71.422,0.952148,-1,-1,-1
111,-1,303.196,217.207,19.687,49.097,0.945008,-1,-1,-1
111,-1,290.385,221.874,23.509,53.769,0.928675,-1,-1,-1
111,-1,315.473,220.468,19.868,50.27,0.848555,-1,-1,-1
112,-1,420.321,182.293,51.98,115.99,0.990623,-1,-1,-1
112,-1,554.219,195.289,29.466,95.192,0.980911,-1,-1,-1
112,-1,283.689,219.24,23.774,55.515,0.936475,-1,-1,-1
112,-1,226.664,202.849,26.711,87.682,0.934914,-1,-1,-1
112,-1,298.075,213.676,19.822,55.488,0.911714,-1,-1,-1
112,-1,313.22,222.175,25.42,45.942,0.906244,-1,-1,-1
113,-1,228.699,197.378,30.739,93.954,0.985968,-1,-1,-1
113,-1,415.819,181.258,46.254,123.1,0.972264,-1,-1,-1
113,-1,306.938,215.129,25.768,60.503,0.933568,-1,-1,-1
113,-1,295.576,219.919,17.251,46.233,0.921056,-1,-1,-1
113,-1,447.124,182.804,36.025,119.264,0.919794,-1,-1,-1
113,-1,556.139,196.655,27.283,81.212,0.877816,-1,-1,-1
113,-1,279.614,207.218,21.466,59.615,0.633797,-1,-1,-1
114,-1,427.696,174.714,62.576,118.678,0.984825,-1,-1,-1
114,-1,291.873,213,42.003,63.928,0.962312,-1,-1,-1
114,-1,227.617,199.595,26.703,93.015,0.936966,-1,-1,-1
114,-1,279.98,209.155,23.699,66.088,0.877752,-1,-1,-1
114,-1,549.029,192.74,35.036,97.049,0.84144,-1,-1,-1
115,-1,428.295,171.453,68.996,131.557,0.98655,-1,-1,-1
115,-1,226.259,197.304,26.404,99.091,0.975879,-1,-1,-1
115,-1,297.905,208.728,36.454,66.632,0.957602,-1,-1,-1
115,-1,292.833,213.89,18.734,51.771,0.881384,-1,-1,-1
115,-1,550.22,201.483,29.452,88.39,0.867098,-1,-1,-1
116,-1,417.366,170.507,60.056,140.304,0.992869,-1,-1,-1
116,-1,222.355,186.541,32.359,111.46,0.990936,-1,-1,-1
116,-1,291.317,211.999,31.121,61.432,0.96904,-1,-1,-1
116,-1,547.9,197.101,28.701,67.016,0.937418,-1,-1,-1
116,-1,461.707,179.165,28.461,114.52,0.908161,-1,-1,-1
116,-1,286.009,191.472,17.081,76.59,0.813563,-1,-1,-1
117,-1,424.912,177.248,73.649,128.815,0.994973,-1,-1,-1
117,-1,222.455,197.877,28.383,103.893,0.988561,-1,-1,-1
117,-1,291.499,210.885,39.852,62.051,0.98346,-1,-1,-1
117,-1,552.338,195.975,30.488,88.457,0.680412,-1,-1,-1
117,-1,281.826,213.747,16.511,58.397,0.612462,-1,-1,-1
118,-1,214.954,191.162,31.163,117.347,0.986723,-1,-1,-1
118,-1,430.242,184.122,37.479,133.567,0.983773,-1,-1,-1
118,-1,456.006,167.136,44.548,137.483,0.969717,-1,-1,-1
118,-1,298.212,204.744,24.245,74.129,0.96365,-1,-1,-1
118,-1,281.033,204.02,29.139,63.944,0.88305,-1,-1,-1
118,-1,553.342,178.201,33.495,124.407,0.838034,-1,-1,-1
119,-1,211.888,197.037,30.985,104.109,0.992149,-1,-1,-1
119,-1,424.232,169.168,72.756,150.445,0.978357,-1,-1,-1
119,-1,294.597,205.294,26.048,69.877,0.968704,-1,-1,-1
119,-1,551.439,184.385,33.679,113.747,0.94154,-1,-1,-1
119,-1,275.225,206.135,22.526,70.253,0.502078,-1,-1,-1
120,-1,211.375,192.172,32.588,116.591,0.988748,-1,-1,-1
120,-1,427.773,173.997,59.216,145.935,0.982268,-1,-1,-1
120,-1,549.92,189.725,31.458,101.155,0.972795,-1,-1,-1
120,-1,294.685,203.999,20.513,67.957,0.972603,-1,-1,-1
120,-1,463.654,168.761,43.745,139.573,0.92932,-1,-1,-1
120,-1,270.598,198.497,25.4,80.35,0.910073,-1,-1,-1
121,-1,204.664,193.888,29.5,106.704,0.989492,-1,-1,-1
121,-1,428.024,166.12,67.158,148.552,0.98747,-1,-1,-1
121,-1,546.877,201.425,42.13,90.208,0.982337,-1,-1,-1
121,-1,280.672,210.252,38.927,65.244,0.966361,-1,-1,-1
121,-1,470.194,158.527,37.445,145.006,0.937434,-1,-1,-1
122,-1,189.057,192.76,35.758,111.296,0.995353,-1,-1,-1
122,-1,435.434,163.869,49.748,153.725,0.98584,-1,-1,-1
122,-1,552.996,198.951,29.841,85.202,0.981509,-1,-1,-1
122,-1,467.284,154.465,50.022,159.156,0.962825,-1,-1,-1
122,-1,277.891,200.624,32.413,69.591,0.950065,-1,-1,-1
123,-1,186.105,188.2,31.152,119.205,0.996447,-1,-1,-1
123,-1,427.678,146.838,60.971,188.74,0.989959,-1,-1,-1
123,-1,286.071,195.401,20.471,69.536,0.981508,-1,-1,-1
123,-1,550.501,197.005,29.802,86.55,0.965035,-1,-1,-1
123,-1,470.689,151.18,43.57,168.387,0.943648,-1,-1,-1
123,-1,262.618,199.639,23.818,62.123,0.814273,-1,-1,-1
124,-1,188.661,184.426,27.198,131.725,0.996849,-1,-1,-1
124,-1,548.488,196.807,36.038,90.937,0.985099,-1,-1,-1
124,-1,436.579,156.555,57.295,165.946,0.981146,-1,-1,-1
124,-1,283.416,200.018,20.757,75.529,0.955747,-1,-1,-1
124,-1,479.33,161.631,44.776,143.296,0.95564,-1,-1,-1
124,-1,255.069,208.994,21.971,62.787,0.913858,-1,-1,-1
124,-1,271.572,206.447,20.747,63.077,0.761723,-1,-1,-1
124,-1,297.458,208.696,25.213,57.998,0.653399,-1,-1,-1
125,-1,175.252,180.514,46.436,129.083,0.996582,-1,-1,-1
125,-1,552.777,197.726,33.137,86.846,0.992483,-1,-1,-1
125,-1,443.385,167.703,53.721,174.249,0.988223,-1,-1,-1
125,-1,281.704,208.341,22.309,69.408,0.971066,-1,-1,-1
125,-1,484.262,148.979,47.597,169.385,0.96731,-1,-1,-1
125,-1,270.273,199.971,19.275,70.269,0.901853,-1,-1,-1
125,-1,251.727,207.26,21.117,65.576,0.597461,-1,-1,-1
126,-1,544.425,199.086,46.717,86.758,0.993106,-1,-1,-1
126,-1,493.155,153.062,47.885,179.814,0.982299,-1,-1,-1
126,-1,281.153,210.701,23.316,67.485,0.977236,-1,-1,-1
126,-1,181.203,193.862,35.516,118.057,0.972968,-1,-1,-1
126,-1,450.854,153.369,46.142,182.527,0.959528,-1,-1,-1
126,-1,257.431,205.189,29.913,68.536,0.897523,-1,-1,-1
127,-1,545.635,205.004,33.832,77.908,0.987112,-1,-1,-1
127,-1,172.732,199.114,37.053,114.835,0.980752,-1,-1,-1
127,-1,448.974,156.326,55.795,184.5,0.980452,-1,-1,-1
127,-1,496.81,151.89,49.485,173.068,0.948118,-1,-1,-1
127,-1,276.448,212.933,18.88,63.874,0.936235,-1,-1,-1
127,-1,250.712,209.033,28.629,61.776,0.881938,-1,-1,-1
127,-1,290.66,215.965,20.497,57.962,0.661539,-1,-1,-1
128,-1,458.553,147.09,51.727,204.122,0.977914,-1,-1,-1
128,-1,161.256,192.313,37.041,133.17,0.970989,-1,-1,-1
128,-1,260.442,206.605,42.873,78.966,0.959049,-1,-1,-1
128,-1,499.354,134.377,52.557,194.247,0.959003,-1,-1,-1
128,-1,553.551,193.537,30.082,73.61,0.955287,-1,-1,-1
128,-1,200.842,197.262,17.848,72.359,0.94591,-1,-1,-1
128,-1,243.934,203.823,33.814,70.917,0.912066,-1,-1,-1
129,-1,155.104,200.674,43.952,124.393,0.994162,-1,-1,-1
129,-1,509.214,132.573,58.211,216.512,0.984497,-1,-1,-1
129,-1,457.946,134.162,68.496,226.485,0.981856,-1,-1,-1
129,-1,268.089,211.357,25.005,71.941,0.981349,-1,-1,-1
129,-1,191.721,195.859,28.812,88.585,0.974019,-1,-1,-1
129,-1,245.211,201.109,23.788,76.817,0.972228,-1,-1,-1
130,-1,511.049,133.127,69.954,224.073,0.99551,-1,-1,-1
130,-1,270.426,211.404,25.037,74.126,0.988976,-1,-1,-1
130,-1,245.277,212.386,23.094,68.279,0.980916,-1,-1,-1
130,-1,153.495,194.097,43.068,133.004,0.974302,-1,-1,-1
130,-1,195.616,204.061,25.976,64.206,0.966823,-1,-1,-1
130,-1,459.315,156.44,75.687,196.906,0.914667,-1,-1,-1
131,-1,140.328,195.348,45.704,139.359,0.996087,-1,-1,-1
131,-1,530.262,130.471,61.255,231.714,0.993399,-1,-1,-1
131,-1,268.438,207,22.639,75.912,0.986395,-1,-1,-1
131,-1,186.204,204.432,36.36,64.903,0.979145,-1,-1,-1
131,-1,471.526,157.704,80.668,206.38,0.975022,-1,-1,-1
131,-1,251.349,217.086,21.27,69.794,0.927616,-1,-1,-1
131,-1,233.307,215.978,28.515,62.847,0.856528,-1,-1,-1
132,-1,135.837,193.707,40.256,149.398,0.993967,-1,-1,-1
132,-1,530.432,136.105,70.088,246.894,0.993472,-1,-1,-1
132,-1,267.897,219.521,26.014,75.651,0.983415,-1,-1,-1
132,-1,186.27,216.073,35.837,67.02,0.983106,-1,-1,-1
132,-1,480.625,146.578,81.753,246.931,0.980755,-1,-1,-1
132,-1,231.629,222.196,30.764,63.422,0.949105,-1,-1,-1
132,-1,254.236,205.097,24.066,78.731,0.916344,-1,-1,-1
133,-1,126.448,180.876,45.181,162.859,0.992382,-1,-1,-1
133,-1,259.477,213.056,31.097,67.88,0.989442,-1,-1,-1
133,-1,180.266,203.593,20.649,76.578,0.987775,-1,-1,-1
133,-1,488.78,125.15,98.768,262.053,0.9873,-1,-1,-1
133,-1,555.595,122.289,65.25,255.201,0.985905,-1,-1,-1
133,-1,228.847,201.795,25.752,81.652,0.974619,-1,-1,-1
133,-1,247.666,198.752,25.212,91.719,0.802954,-1,-1,-1
134,-1,509.547,105.058,95.281,292.567,0.992712,-1,-1,-1
134,-1,112.611,180.876,58.123,166.14,0.991147,-1,-1,-1
134,-1,261.154,218.325,27.517,69.81,0.979356,-1,-1,-1
134,-1,177.755,214.915,24.721,64.955,0.976995,-1,-1,-1
134,-1,234.981,220.471,28.289,69.554,0.969319,-1,-1,-1
134,-1,569.883,104.718,53.858,253.249,0.899675,-1,-1,-1
135,-1,517.397,109.075,96.704,304.438,0.996911,-1,-1,-1
135,-1,171.421,205.271,28.154,69.853,0.993388,-1,-1,-1
135,-1,96.5595,181.952,64.6325,165.08,0.990984,-1,-1,-1
135,-1,252.507,214.659,23.683,80.476,0.984663,-1,-1,-1
135,-1,229.263,203.367,27.68,81.302,0.964659,-1,-1,-1
135,-1,582.873,94.8337,47.995,219.675,0.866606,-1,-1,-1
135,-1,427.934,214.41,20.222,37.918,0.582843,-1,-1,-1
136,-1,535.443,96.2074,83.236,317.692,0.99899,-1,-1,-1
136,-1,171.806,201.248,27.001,79.551,0.987372,-1,-1,-1
136,-1,249.695,211.203,27.78,83.262,0.985702,-1,-1,-1
136,-1,89.0608,165.699,64.7772,179.824,0.972026,-1,-1,-1
136,-1,219.696,209.819,29.511,72.452,0.939293,-1,-1,-1
136,-1,600.758,95.6798,31.398,129.656,0.912819,-1,-1,-1
137,-1,538.852,128.374,97.827,295.976,0.997896,-1,-1,-1
137,-1,169.422,210.461,28.564,65.59,0.99144,-1,-1,-1
137,-1,78.7434,170.253,63.9926,173.388,0.991323,-1,-1,-1
137,-1,213.913,202.801,28.561,88.993,0.982693,-1,-1,-1
137,-1,249.76,216.797,24.103,82.465,0.960693,-1,-1,-1
137,-1,241.289,200.823,19.94,82.216,0.917334,-1,-1,-1
137,-1,535.687,173.119,41.22,119.399,0.785322,-1,-1,-1
137,-1,558.796,165.261,59.295,132.72,0.68876,-1,-1,-1
137,-1,263.856,218.938,21.634,69.052,0.54112,-1,-1,-1
138,-1,565.106,105.753,67.86,336.686,0.99779,-1,-1,-1
138,-1,63.9824,172.327,68.5426,169.041,0.985423,-1,-1,-1
138,-1,171.138,206.624,23.314,66.295,0.980775,-1,-1,-1
138,-1,246.011,209.135,23.495,88.801,0.973989,-1,-1,-1
138,-1,534.262,195.591,37.496,101.49,0.971641,-1,-1,-1
138,-1,218.777,205.568,28.44,90.918,0.971111,-1,-1,-1
139,-1,54.618,150.683,69.947,202.777,0.992453,-1,-1,-1
139,-1,533.742,200.539,35.21,88.118,0.987079,-1,-1,-1
139,-1,159.053,212.188,29.047,60.183,0.973918,-1,-1,-1
139,-1,215.154,204.635,27.887,84.816,0.951068,-1,-1,-1
139,-1,242.498,202.363,21.674,90.97,0.947123,-1,-1,-1
139,-1,115.483,207.804,19.563,81.666,0.742239,-1,-1,-1
139,-1,599.29,123.048,37.82,114.455,0.737509,-1,-1,-1
139,-1,417.359,208.393,17.625,44.076,0.716605,-1,-1,-1
139,-1,594.274,334.904,27.513,77.584,0.652656,-1,-1,-1
140,-1,532.409,211.055,29.218,70.556,0.987717,-1,-1,-1
140,-1,151.737,209.709,43.032,67.2,0.987402,-1,-1,-1
140,-1,52.7123,179.143,58.4167,162.56,0.98451,-1,-1,-1
140,-1,239.884,217.04,29.152,75.767,0.978275,-1,-1,-1
140,-1,206.737,204.914,34.435,91.049,0.977184,-1,-1,-1
140,-1,111.969,213.82,26.768,66.683,0.891903,-1,-1,-1
140,-1,416.79,212.745,19.571,36.255,0.829111,-1,-1,-1
140,-1,235.261,202.486,15.994,81.805,0.768245,-1,-1,-1
141,-1,532.186,199.381,36.337,88.135,0.987254,-1,-1,-1
141,-1,202.823,209.341,36.473,89.751,0.97039,-1,-1,-1
141,-1,231.324,209.001,35.934,89.275,0.96807,-1,-1,-1
141,-1,33.7214,146.244,58.7701,182.578,0.963144,-1,-1,-1
141,-1,159.132,211.883,38.009,75.873,0.917397,-1,-1,-1
141,-1,102.798,209.789,26.118,67.2,0.856607,-1,-1,-1
141,-1,406.976,212,25.236,46.864,0.854083,-1,-1,-1
141,-1,154.246,222.603,21.888,47.437,0.506048,-1,-1,-1
142,-1,529.411,200.046,37.019,86.287,0.990152,-1,-1,-1
142,-1,228.317,203.096,26.543,96.929,0.975849,-1,-1,-1
142,-1,158.954,210.82,34.792,68.173,0.968617,-1,-1,-1
142,-1,16.5656,166.231,72.735,182.141,0.961144,-1,-1,-1
142,-1,194.718,207.771,34.675,89.556,0.959981,-1,-1,-1
142,-1,219.518,199.253,17.994,97.129,0.8371,-1,-1,-1
142,-1,98.4292,205.128,27.3378,67.456,0.749968,-1,-1,-1
142,-1,243.325,216.044,26.878,68.395,0.675631,-1,-1,-1
143,-1,527.079,199.375,38.609,93.255,0.98927,-1,-1,-1
143,-1,226.834,200.551,25.413,98.44,0.982623,-1,-1,-1
143,-1,192.574,186.126,32.219,118.356,0.981049,-1,-1,-1
143,-1,155.659,205.729,21.963,69.36,0.971481,-1,-1,-1
143,-1,8.24331,150.9,94.2097,218.647,0.856872,-1,-1,-1
143,-1,92.5587,202.146,31.9153,73.177,0.777753,-1,-1,-1
143,-1,405.496,213.049,17.803,33.741,0.767326,-1,-1,-1
143,-1,178.657,192.423,26.858,102.545,0.606327,-1,-1,-1
144,-1,526.066,207.234,33.595,80.851,0.993851,-1,-1,-1
144,-1,215.443,193.522,42.803,106.509,0.985595,-1,-1,-1
144,-1,187.899,189.29,32.653,111.654,0.979182,-1,-1,-1
144,-1,154.173,207.844,22.994,69.449,0.957829,-1,-1,-1
144,-1,4.47295,140.055,90.4544,228.232,0.945548,-1,-1,-1
144,-1,409.686,201.243,18.528,43.848,0.818041,-1,-1,-1
144,-1,92.7265,205.447,25.1745,72.996,0.696723,-1,-1,-1
145,-1,521.414,189.95,40.102,96.682,0.991605,-1,-1,-1
145,-1,180.648,191.768,41.214,101.62,0.984614,-1,-1,-1
145,-1,221.309,190.8,25.66,105.165,0.97398,-1,-1,-1
145,-1,91.6743,197.762,30.0417,69.221,0.94163,-1,-1,-1
145,-1,0,155.769,70.5964,166.689,0.924439,-1,-1,-1
145,-1,159.435,198.211,22.675,74.233,0.910617,-1,-1,-1
146,-1,526.393,196.06,34.076,87.003,0.991808,-1,-1,-1
146,-1,211.549,184.908,27.749,115.76,0.990793,-1,-1,-1
146,-1,183.521,179.362,29.152,110.309,0.976096,-1,-1,-1
146,-1,155.718,188.991,27.446,78.307,0.953786,-1,-1,-1
146,-1,9.3745,163.31,55.2365,150.427,0.940504,-1,-1,-1
146,-1,89.5827,205.99,29.3403,61.94,0.650802,-1,-1,-1
146,-1,229.828,186.313,26.671,99.77,0.63466,-1,-1,-1
146,-1,404.319,208.911,15.818,36.745,0.556539,-1,-1,-1
147,-1,526.97,204.164,34.357,78.52,0.992453,-1,-1,-1
147,-1,212.173,181.274,31.577,127.039,0.990368,-1,-1,-1
147,-1,175.568,192.661,42.297,112.112,0.966733,-1,-1,-1
147,-1,159.56,207.687,15.717,58.521,0.895649,-1,-1,-1
147,-1,404.985,206.376,16.977,39.426,0.809272,-1,-1,-1
148,-1,521.665,201.279,44.332,93.948,0.988409,-1,-1,-1
148,-1,211.196,186.832,31.812,117.974,0.986934,-1,-1,-1
148,-1,159.153,185.852,52.673,116.554,0.965613,-1,-1,-1
148,-1,403.716,210.56,17.014,39.325,0.903718,-1,-1,-1
148,-1,149.3,201.285,31.883,67.305,0.755466,-1,-1,-1
149,-1,207.067,195.532,32.412,115.381,0.994045,-1,-1,-1
149,-1,527.435,198.955,32.16,89.947,0.988521,-1,-1,-1
149,-1,163.939,185.889,47.828,114.19,0.979941,-1,-1,-1
150,-1,208.223,192.987,30.147,121.507,0.991809,-1,-1,-1
150,-1,519.799,196.601,56.697,101.246,0.990816,-1,-1,-1
150,-1,157.754,183.716,49.48,117.662,0.97532,-1,-1,-1
150,-1,83.8771,202.794,33.6869,73.949,0.680649,-1,-1,-1
150,-1,13.3461,251.134,36.5212,66.798,0.670211,-1,-1,-1
150,-1,226.088,198.435,22.671,99.333,0.520334,-1,-1,-1
151,-1,528.884,196.705,32.759,97.398,0.989986,-1,-1,-1
151,-1,205.393,188.344,34.466,127.194,0.98372,-1,-1,-1
151,-1,160.766,190.997,47.571,116.573,0.976814,-1,-1,-1
152,-1,156.171,192.999,52.668,116.912,0.991676,-1,-1,-1
152,-1,193.218,196.603,53.8,111.825,0.988121,-1,-1,-1
152,-1,528.961,200.098,34.201,105.529,0.982817,-1,-1,-1
152,-1,2.35472,255.572,37.6656,82.629,0.780245,-1,-1,-1
153,-1,529.003,201.071,40.649,103.216,0.990071,-1,-1,-1
153,-1,199.91,189.122,36.203,129.104,0.985747,-1,-1,-1
153,-1,143.228,188.215,57.483,126.377,0.983191,-1,-1,-1
154,-1,194.665,191.715,38.949,132.102,0.993643,-1,-1,-1
154,-1,145.755,193.484,44.11,123.692,0.991715,-1,-1,-1
154,-1,528.851,205.801,40.07,98.512,0.991617,-1,-1,-1
154,-1,189.37,210.407,21.491,95.275,0.55388,-1,-1,-1
155,-1,189.881,187.328,40.757,129.218,0.995004,-1,-1,-1
155,-1,128.525,192.123,73.259,131.624,0.994848,-1,-1,-1
155,-1,531.202,200.808,35.58,93.288,0.985332,-1,-1,-1
155,-1,600.996,227.878,22.059,30.134,0.703502,-1,-1,-1
156,-1,129.597,193.624,50.65,130.687,0.991184,-1,-1,-1
156,-1,530.321,202.221,36.419,101.826,0.985752,-1,-1,-1
156,-1,180.526,191.791,46.251,139.227,0.979866,-1,-1,-1
156,-1,596.454,228.442,21.745,32.071,0.830829,-1,-1,-1
157,-1,521.718,206.623,47.282,97.123,0.989552,-1,-1,-1
157,-1,170.078,199.006,56.841,128.385,0.9861,-1,-1,-1
157,-1,128.057,183.117,48.412,132.556,0.983014,-1,-1,-1
157,-1,253.109,223.434,16.18,39.498,0.787599,-1,-1,-1
157,-1,598.754,225.551,21.711,38.19,0.785107,-1,-1,-1
157,-1,174.155,208.597,19.672,106.761,0.517994,-1,-1,-1
158,-1,163.812,187.618,59.099,137.637,0.995003,-1,-1,-1
158,-1,522.289,200.097,49.176,112.475,0.987053,-1,-1,-1
158,-1,125.499,181.82,44.606,138.891,0.983297,-1,-1,-1
158,-1,600.462,216.7,21.08,41.946,0.718015,-1,-1,-1
159,-1,117.551,174.034,53.484,152.206,0.996068,-1,-1,-1
159,-1,167.369,173.428,45.162,172.536,0.988487,-1,-1,-1
159,-1,535.831,202.099,31.227,97.547,0.976302,-1,-1,-1
159,-1,594.486,220.745,24.86,37.312,0.831046,-1,-1,-1
159,-1,494.228,200.599,23.925,45.197,0.742398,-1,-1,-1
159,-1,256.789,223.354,17.41,43.782,0.655764,-1,-1,-1
160,-1,163.06,173.348,48.859,170.864,0.993408,-1,-1,-1
160,-1,103.641,158.356,55.671,163.419,0.984385,-1,-1,-1
160,-1,526.81,200.049,42.589,93.323,0.973621,-1,-1,-1
160,-1,598.165,222.914,19.478,37.591,0.758804,-1,-1,-1
160,-1,253.296,216.333,16.062,37.595,0.656473,-1,-1,-1
160,-1,380.842,228.225,17.252,40.206,0.644376,-1,-1,-1
161,-1,155.418,178.267,60.212,163.518,0.996943,-1,-1,-1
161,-1,102.308,154.126,50.507,175.147,0.974995,-1,-1,-1
161,-1,541.842,198.331,29.698,87.723,0.963179,-1,-1,-1
161,-1,246.467,224.138,28.697,47.011,0.890025,-1,-1,-1
161,-1,370.612,232.017,23.917,45.495,0.729626,-1,-1,-1
161,-1,595.986,213.057,24.977,39.451,0.619075,-1,-1,-1
162,-1,151.588,162.828,51.064,180.763,0.997362,-1,-1,-1
162,-1,84.473,160.316,86.918,167.583,0.991753,-1,-1,-1
162,-1,538.477,199.252,33.466,76.218,0.940735,-1,-1,-1
162,-1,251.748,218.035,17.354,47.345,0.875039,-1,-1,-1
163,-1,148.441,162.514,52.387,175.977,0.994971,-1,-1,-1
163,-1,86.8346,170.568,58.7554,165.321,0.993543,-1,-1,-1
163,-1,601.698,219.338,23.085,42.942,0.885648,-1,-1,-1
163,-1,253.359,212.733,17.159,49.597,0.769009,-1,-1,-1
163,-1,594.683,220.726,16.788,32.137,0.618903,-1,-1,-1
163,-1,541.601,200.316,34.11,91.351,0.618633,-1,-1,-1
164,-1,139.493,159.864,62.778,196.734,0.995897,-1,-1,-1
164,-1,81.8778,163.766,56.7832,172.638,0.992297,-1,-1,-1
164,-1,536,191.685,38.951,106.177,0.95579,-1,-1,-1
164,-1,598.744,214.557,25.24,46.768,0.839811,-1,-1,-1
165,-1,72.6432,157.244,55.2278,188.455,0.996293,-1,-1,-1
165,-1,128.501,150.617,75.794,207.758,0.994552,-1,-1,-1
165,-1,255.845,225.347,16.266,39.21,0.868839,-1,-1,-1
165,-1,596.734,216.948,23.653,38.57,0.752064,-1,-1,-1
166,-1,67.7971,150.461,65.3329,208.014,0.997634,-1,-1,-1
166,-1,132.35,158.222,55.933,199.31,0.996587,-1,-1,-1
166,-1,542.713,206.72,24.859,86.37,0.915924,-1,-1,-1
166,-1,251.053,219.245,18.705,36.618,0.80196,-1,-1,-1
166,-1,603.167,213.956,26.098,46.188,0.761471,-1,-1,-1
167,-1,60.1249,147.007,66.8251,203.517,0.996482,-1,-1,-1
167,-1,128.749,154.671,61.049,200.029,0.994485,-1,-1,-1
167,-1,532.813,197.584,38.194,102.678,0.981854,-1,-1,-1
167,-1,253.069,218.227,19.316,40.032,0.907905,-1,-1,-1
167,-1,601.928,212.812,29.98,47.264,0.860121,-1,-1,-1
168,-1,37.7413,142.688,80.9537,211.333,0.998356,-1,-1,-1
168,-1,119.522,155.606,62.941,197.839,0.995431,-1,-1,-1
168,-1,536.132,192.581,33.389,114.417,0.96702,-1,-1,-1
168,-1,251.4,219.943,22.461,41.8,0.921443,-1,-1,-1
168,-1,606.251,221.47,26.312,41.281,0.794871,-1,-1,-1
169,-1,30.0855,133.762,84.6165,231.515,0.998274,-1,-1,-1
169,-1,100.206,149.965,80.602,205.1,0.995793,-1,-1,-1
169,-1,534.558,193.587,38.286,113.893,0.984026,-1,-1,-1
169,-1,253.077,223.718,20.733,40.584,0.942299,-1,-1,-1
170,-1,32.4762,132.635,76.3188,246.899,0.997927,-1,-1,-1
170,-1,108.113,145.682,64.68,229.806,0.99665,-1,-1,-1
170,-1,539.691,202.396,33.775,96.5,0.985629,-1,-1,-1
170,-1,250.319,221.115,22.511,36.632,0.883571,-1,-1,-1
171,-1,23.0231,134.358,75.9438,249.287,0.996156,-1,-1,-1
171,-1,534.857,197.296,40.5,105.718,0.990085,-1,-1,-1
171,-1,99.4919,135.214,71.9911,249.607,0.975128,-1,-1,-1
171,-1,254.457,214.848,20.556,50.995,0.90208,-1,-1,-1
172,-1,1.81887,131.038,91.5057,267.946,0.997982,-1,-1,-1
172,-1,83.6662,146.779,70.1898,231.038,0.995571,-1,-1,-1
172,-1,532.476,202.275,47.577,101.245,0.993776,-1,-1,-1
172,-1,254.858,224.603,20.349,41.2,0.959626,-1,-1,-1
173,-1,58.602,138.483,92.973,248.373,0.996321,-1,-1,-1
173,-1,0,125.453,75.1504,273.852,0.995051,-1,-1,-1
173,-1,533.288,192.689,45.769,109.627,0.98742,-1,-1,-1
173,-1,255.955,225.038,17.757,40.277,0.959916,-1,-1,-1
173,-1,145.448,169.903,26.321,135.555,0.874926,-1,-1,-1
174,-1,47.2598,119.351,90.7802,272.024,0.995493,-1,-1,-1
174,-1,543.319,203.591,31.398,93.08,0.990869,-1,-1,-1
174,-1,0,128.04,71.3776,272.325,0.980772,-1,-1,-1
174,-1,133.891,162.833,41.658,139.747,0.974487,-1,-1,-1
174,-1,253.14,212.06,17.158,44.707,0.908756,-1,-1,-1
174,-1,261.501,222.378,14.816,41.66,0.806655,-1,-1,-1
175,-1,32.3565,131.28,99.6025,267.487,0.992353,-1,-1,-1
175,-1,533.003,196.649,47.272,104.442,0.987981,-1,-1,-1
175,-1,124.097,166.569,49.605,144.65,0.980678,-1,-1,-1
175,-1,258.398,218.688,26.888,46.373,0.79198,-1,-1,-1
175,-1,2.44201,134.632,46.7773,145.613,0.536185,-1,-1,-1
176,-1,24.6672,131.092,93.0228,290.236,0.997246,-1,-1,-1
176,-1,540.58,190.32,42.846,112.676,0.992591,-1,-1,-1
176,-1,116.335,173.457,59.826,126.356,0.991066,-1,-1,-1
176,-1,252.669,214.839,21.355,50.091,0.917154,-1,-1,-1
177,-1,15.3116,120.858,83.3812,328.707,0.999037,-1,-1,-1
177,-1,541.556,194.592,41.276,101.237,0.987697,-1,-1,-1
177,-1,118.073,163.611,54.176,144.709,0.984466,-1,-1,-1
177,-1,250.429,216.089,21.133,48.062,0.859318,-1,-1,-1
177,-1,260.062,211.522,25.246,45.46,0.843384,-1,-1,-1
178,-1,7.83945,96.0307,87.3698,353.036,0.997241,-1,-1,-1
178,-1,112.142,168.653,56.603,141.423,0.992692,-1,-1,-1
178,-1,543.812,201.595,37.27,100.864,0.992501,-1,-1,-1
178,-1,260.225,220.406,15.398,51.836,0.878564,-1,-1,-1
179,-1,0,101.465,82.0087,363.489,0.996366,-1,-1,-1
179,-1,107.308,178.278,66.469,135.766,0.992231,-1,-1,-1
179,-1,541.58,204.264,45.28,102.703,0.98454,-1,-1,-1
179,-1,261.384,219.954,19.9,43.962,0.967378,-1,-1,-1
180,-1,104.509,179.202,72.022,140.713,0.994777,-1,-1,-1
180,-1,546.153,197.462,37.987,110.614,0.985277,-1,-1,-1
180,-1,585.896,44.3726,36.084,62.0894,0.912603,-1,-1,-1
180,-1,262.888,219.354,19.37,47.424,0.907215,-1,-1,-1
181,-1,553.869,199.97,36.097,97.118,0.994243,-1,-1,-1
181,-1,105.322,183.36,69.641,125.691,0.989862,-1,-1,-1
181,-1,263.079,221.856,18.72,42.748,0.956572,-1,-1,-1
181,-1,509.426,191.706,25.734,52.951,0.519884,-1,-1,-1
182,-1,546.514,204.559,46.628,99.245,0.994758,-1,-1,-1
182,-1,101.626,176.431,54.195,152.104,0.987687,-1,-1,-1
182,-1,155.408,197.244,23.284,93.772,0.981389,-1,-1,-1
182,-1,264.923,218.894,21.717,45.99,0.950896,-1,-1,-1
183,-1,553.788,206.524,40.864,93.359,0.992712,-1,-1,-1
183,-1,149.562,206.689,25.152,82.669,0.985809,-1,-1,-1
183,-1,103.103,180.785,42.633,145.763,0.984783,-1,-1,-1
183,-1,266.015,222.635,18.915,44.117,0.956622,-1,-1,-1
183,-1,511.449,184.764,25.225,59.323,0.611365,-1,-1,-1
184,-1,546.64,192.406,48.594,114.808,0.990653,-1,-1,-1
184,-1,151.996,197.279,27.59,91.909,0.985664,-1,-1,-1
184,-1,97.2874,176.263,51.5716,146.501,0.9834,-1,-1,-1
184,-1,267.765,218.957,20.132,57.008,0.94241,-1,-1,-1
184,-1,252.913,210.23,25.144,61.319,0.809811,-1,-1,-1
185,-1,90.2772,173.499,55.1048,157.867,0.995866,-1,-1,-1
185,-1,557.874,203.034,48.397,94.752,0.988999,-1,-1,-1
185,-1,152.718,193.578,28.362,97.912,0.988375,-1,-1,-1
185,-1,273.94,219.587,18.892,57.35,0.93582,-1,-1,-1
185,-1,216.873,225.411,17.34,39.368,0.739125,-1,-1,-1
186,-1,83.5747,175.045,52.0573,151.415,0.994586,-1,-1,-1
186,-1,562.227,197.794,42.938,107.369,0.993995,-1,-1,-1
186,-1,154.002,203.392,25.386,77.475,0.990505,-1,-1,-1
186,-1,270.05,214.631,23.198,57.664,0.974214,-1,-1,-1
186,-1,220.99,217.264,14.537,44.49,0.73958,-1,-1,-1
187,-1,76.9724,170.508,55.3186,164.897,0.992603,-1,-1,-1
187,-1,556.616,203.478,44.001,101.998,0.991311,-1,-1,-1
187,-1,274.008,223.326,18.954,46.793,0.98217,-1,-1,-1
187,-1,155.273,201.114,32.554,86.856,0.97851,-1,-1,-1
187,-1,216.583,225.181,16.152,35.42,0.779006,-1,-1,-1
188,-1,566.757,193.824,45.379,121.408,0.994685,-1,-1,-1
188,-1,79.6978,166.373,44.2982,164.419,0.993752,-1,-1,-1
188,-1,154.396,192.214,33.291,91.632,0.984562,-1,-1,-1
188,-1,273.419,218.699,18.778,46.397,0.98013,-1,-1,-1
188,-1,216.607,223.687,19.867,44.639,0.939961,-1,-1,-1
189,-1,74.773,171.632,53.751,165.538,0.995084,-1,-1,-1
189,-1,562.246,196.088,50.975,105.729,0.993477,-1,-1,-1
189,-1,156.566,193.637,29.444,89.46,0.986609,-1,-1,-1
189,-1,274.88,221.706,19.004,47.058,0.969907,-1,-1,-1
189,-1,219.803,217.968,16.845,40.334,0.934334,-1,-1,-1
190,-1,568.452,194.387,42.387,109.972,0.993914,-1,-1,-1
190,-1,67.0088,162.792,48.4012,176.874,0.989195,-1,-1,-1
190,-1,155.925,188.589,38.849,99.643,0.98036,-1,-1,-1
190,-1,274.639,223.302,19.25,43.436,0.958439,-1,-1,-1
190,-1,215.905,214.179,18.721,46.395,0.922994,-1,-1,-1
191,-1,56.9362,161.957,62.3908,170.612,0.995019,-1,-1,-1
191,-1,568.443,185.985,42.401,107.214,0.993931,-1,-1,-1
191,-1,155.873,200.464,30.154,80.87,0.989294,-1,-1,-1
191,-1,275.447,221.78,15.426,48.962,0.94711,-1,-1,-1
191,-1,217.068,215.264,16.914,44.005,0.787707,-1,-1,-1
191,-1,284.152,214.7,17.013,49.312,0.618216,-1,-1,-1
192,-1,55.8218,152.249,51.2152,184.716,0.996804,-1,-1,-1
192,-1,570.564,201.154,39.979,81.876,0.985388,-1,-1,-1
192,-1,159.12,204.047,34.11,70.108,0.981881,-1,-1,-1
192,-1,276.227,210.889,19.238,45.648,0.937642,-1,-1,-1
192,-1,223.101,208.501,17.498,45.167,0.772229,-1,-1,-1
193,-1,40.6662,147.366,66.2468,191.796,0.997602,-1,-1,-1
193,-1,566.809,192.209,51.497,107.407,0.986922,-1,-1,-1
193,-1,156.111,193.973,34.378,94.764,0.984721,-1,-1,-1
193,-1,280.086,222.097,19.558,46.63,0.948832,-1,-1,-1
193,-1,222.392,211.739,17.789,51.238,0.840783,-1,-1,-1
194,-1,38.3073,148.531,60.5009,200.711,0.997752,-1,-1,-1
194,-1,568.89,195.897,52.596,111.541,0.981189,-1,-1,-1
194,-1,155.596,189.496,31.588,82.397,0.979617,-1,-1,-1
194,-1,277.043,221.22,22.255,48.722,0.948103,-1,-1,-1
194,-1,221.85,217.717,17.55,35.84,0.941556,-1,-1,-1
195,-1,25.9897,140.336,72.8275,216.241,0.998539,-1,-1,-1
195,-1,568.039,199.015,54.377,105.467,0.991166,-1,-1,-1
195,-1,153.755,193.105,37.085,96.97,0.980823,-1,-1,-1
195,-1,222.619,213.393,18.86,49.058,0.953984,-1,-1,-1
195,-1,281.073,219.264,17.429,36.147,0.843559,-1,-1,-1
196,-1,20.899,141.976,75.9959,210.834,0.999087,-1,-1,-1
196,-1,568.12,200.191,52.116,109.404,0.995092,-1,-1,-1
196,-1,151.618,193.06,44.159,90.661,0.979124,-1,-1,-1
196,-1,286.951,221.062,16.819,49.929,0.93079,-1,-1,-1
196,-1,220.129,215.08,16.1,45.159,0.731335,-1,-1,-1
196,-1,227.9,215.361,19.969,56.576,0.604674,-1,-1,-1
197,-1,10.0239,136.227,81.6322,213.067,0.999488,-1,-1,-1
197,-1,572.107,199.119,56.553,114.616,0.989679,-1,-1,-1
197,-1,154.416,198.361,35.742,86.258,0.983363,-1,-1,-1
197,-1,279.229,210.437,24.675,61.542,0.968273,-1,-1,-1
197,-1,221.869,217.385,15.257,44.883,0.869493,-1,-1,-1
198,-1,1.87394,129.757,81.5756,240.229,0.999172,-1,-1,-1
198,-1,153.818,200.937,34.78,85.748,0.993689,-1,-1,-1
198,-1,581.595,196.285,45.197,116.868,0.993648,-1,-1,-1
198,-1,279.178,220.163,30.516,54.814,0.968123,-1,-1,-1
198,-1,220.633,221.975,16.532,39.522,0.815345,-1,-1,-1
199,-1,0.981171,133.697,72.72,245.876,0.998832,-1,-1,-1
199,-1,152.302,204.295,35.398,75.791,0.993056,-1,-1,-1
199,-1,584.199,200.943,45.558,107.602,0.991779,-1,-1,-1
199,-1,280.633,223.845,28.959,52.124,0.967658,-1,-1,-1
199,-1,212.456,224.134,16.56,39.786,0.868455,-1,-1,-1
199,-1,223.839,220.062,16.48,48.211,0.743735,-1,-1,-1
200,-1,0.97794,147.183,64.2998,231.457,0.997255,-1,-1,-1
200,-1,578.987,193.317,52.885,120.64,0.990678,-1,-1,-1
200,-1,160.341,215.967,27.99,78.614,0.98874,-1,-1,-1
200,-1,286.172,222.001,21.906,57.339,0.959812,-1,-1,-1
200,-1,217.016,221.373,27.13,52.184,0.937483,-1,-1,-1
201,-1,1.21984,146.52,56.7309,232.503,0.995892,-1,-1,-1
201,-1,578.959,196.722,51.786,114.104,0.993612,-1,-1,-1
201,-1,157.663,215.635,35.99,67.215,0.987635,-1,-1,-1
201,-1,278.298,223.192,31.53,54.923,0.953614,-1,-1,-1
201,-1,222.25,224.098,25.129,52.328,0.943433,-1,-1,-1
202,-1,157.02,204.634,39.776,77.246,0.993624,-1,-1,-1
202,-1,581.482,198.038,50.028,114.571,0.991729,-1,-1,-1
202,-1,279.812,215.733,25.961,62.47,0.944426,-1,-1,-1
202,-1,7.76587,135.085,38.8234,230.289,0.922764,-1,-1,-1
203,-1,159.996,210.806,29.583,75.535,0.99595,-1,-1,-1
203,-1,586.498,203.599,45.369,109.597,0.993919,-1,-1,-1
203,-1,275.043,222.97,25.129,59.264,0.931031,-1,-1,-1
203,-1,215.264,222.829,17.594,41.922,0.886728,-1,-1,-1
204,-1,159.382,205.229,40.972,71.534,0.994886,-1,-1,-1
204,-1,585.787,203.875,47.859,106.032,0.994442,-1,-1,-1
204,-1,277.956,217.942,25.293,52.146,0.924754,-1,-1,-1
204,-1,214.049,222.619,22.747,42.779,0.848051,-1,-1,-1
205,-1,158.111,216.594,29.967,58.116,0.994162,-1,-1,-1
205,-1,586.779,201.877,46.294,111.579,0.987324,-1,-1,-1
205,-1,277.584,218.299,25.608,52.586,0.92229,-1,-1,-1
205,-1,211.953,223.143,20.965,47.24,0.919122,-1,-1,-1
206,-1,582.322,203.701,53.476,108.319,0.993709,-1,-1,-1
206,-1,157.706,211.465,34.728,68.051,0.977619,-1,-1,-1
206,-1,219.239,218.494,26.044,57.102,0.926926,-1,-1,-1
206,-1,274.314,216.8,28.347,57.402,0.918255,-1,-1,-1
207,-1,581.191,196.763,56.985,120.552,0.985379,-1,-1,-1
207,-1,159.717,221.298,34.783,59.924,0.9727,-1,-1,-1
207,-1,219.298,211.61,24.94,62.977,0.945657,-1,-1,-1
207,-1,274.643,217.676,29.435,60.489,0.9009,-1,-1,-1
208,-1,588.934,200.291,44.064,111.145,0.988231,-1,-1,-1
208,-1,159.357,218.122,40.164,66.958,0.984193,-1,-1,-1
208,-1,222.184,222.682,16.073,43.288,0.959125,-1,-1,-1
208,-1,275.137,219.327,31.31,58.779,0.910425,-1,-1,-1
209,-1,162.169,216.567,36.278,65.45,0.992404,-1,-1,-1
209,-1,593.003,194.447,37.974,116.024,0.986559,-1,-1,-1
209,-1,271.558,216.258,31.875,60.962,0.957051,-1,-1,-1
209,-1,222.701,217.713,23.696,52.609,0.907851,-1,-1,-1
210,-1,161.496,211.533,28.642,70.123,0.989149,-1,-1,-1
210,-1,272.264,218.633,37.472,70.323,0.982672,-1,-1,-1
210,-1,587.405,197.232,48.468,104.495,0.981066,-1,-1,-1
210,-1,224.501,215.901,18.569,50.194,0.817519,-1,-1,-1
211,-1,160.176,205.067,28.683,78.439,0.99238,-1,-1,-1
211,-1,273.189,211.173,35.581,73.59,0.988266,-1,-1,-1
211,-1,592.166,200.579,42.644,91.549,0.965739,-1,-1,-1
211,-1,221.96,212.951,25.414,56.326,0.904652,-1,-1,-1
212,-1,160.604,204.787,29.498,73.368,0.993478,-1,-1,-1
212,-1,274.855,213.018,27.68,68.15,0.980339,-1,-1,-1
212,-1,592.07,193.932,43.511,114.29,0.974067,-1,-1,-1
212,-1,215.186,212.413,29.033,59.275,0.920802,-1,-1,-1
213,-1,157.938,206.628,43.186,70.287,0.993037,-1,-1,-1
213,-1,273.441,215.94,33.009,67.518,0.972155,-1,-1,-1
213,-1,588.044,206.09,47.196,88.884,0.968564,-1,-1,-1
213,-1,223.105,212.67,21.159,55.677,0.950663,-1,-1,-1
214,-1,265.745,208.127,33.93,80.892,0.988449,-1,-1,-1
214,-1,594.562,188.005,36.98,123.632,0.987296,-1,-1,-1
214,-1,162.432,208.822,36.079,71.79,0.976049,-1,-1,-1
214,-1,221.861,219.812,17.862,51.508,0.960284,-1,-1,-1
215,-1,167.879,209.302,28.115,68.254,0.993849,-1,-1,-1
215,-1,269.674,220.187,33.439,60.685,0.984172,-1,-1,-1
215,-1,592.507,196.884,43.942,117.482,0.970125,-1,-1,-1
215,-1,219.104,212.901,22.915,55.73,0.916796,-1,-1,-1
216,-1,166.147,208.511,28.008,77.164,0.994611,-1,-1,-1
216,-1,266.846,212.117,26.226,71.976,0.991354,-1,-1,-1
216,-1,594.443,195.655,41.608,122.882,0.984445,-1,-1,-1
216,-1,213.883,213.182,19.031,56.659,0.932725,-1,-1,-1
216,-1,231.058,210.812,17.14,62.337,0.606627,-1,-1,-1
217,-1,166.735,211.734,32.698,70.014,0.99438,-1,-1,-1
217,-1,269.104,213.276,26.498,65.407,0.993347,-1,-1,-1
217,-1,595.596,191.921,37.052,124.472,0.965907,-1,-1,-1
217,-1,217.766,217.636,20.451,54.577,0.827646,-1,-1,-1
218,-1,261.749,215.287,31.485,75.827,0.990824,-1,-1,-1
218,-1,166.242,212.158,26.465,75.625,0.980771,-1,-1,-1
218,-1,602.027,213.909,32.232,87.598,0.943969,-1,-1,-1
218,-1,213.521,210.325,19.5,62.31,0.926152,-1,-1,-1
219,-1,161.069,206.473,35.857,73.922,0.986292,-1,-1,-1
219,-1,264.196,215.772,36.244,74.59,0.976767,-1,-1,-1
219,-1,602.776,217.621,32.306,90.522,0.967578,-1,-1,-1
219,-1,215.902,222.681,19.373,56.253,0.939152,-1,-1,-1
220,-1,260.331,207.765,30.797,81.865,0.990466,-1,-1,-1
220,-1,162.493,210.213,38.257,71.123,0.987937,-1,-1,-1
220,-1,606.676,208.287,30.388,99.214,0.982657,-1,-1,-1
220,-1,217.935,210.378,18.791,61.612,0.938512,-1,-1,-1
220,-1,235.815,208.537,19.739,73.343,0.532547,-1,-1,-1
221,-1,271.001,211.594,26.596,78.464,0.991965,-1,-1,-1
221,-1,162.458,207.492,33.914,73.776,0.991552,-1,-1,-1
221,-1,597.298,205.698,34.848,109.687,0.97217,-1,-1,-1
221,-1,214.947,220.524,22.175,57.414,0.932742,-1,-1,-1
221,-1,233.171,208.316,15.709,73.017,0.596916,-1,-1,-1
222,-1,161.016,212.361,35.628,76.392,0.990765,-1,-1,-1
222,-1,264.925,212.76,37.685,74.389,0.990318,-1,-1,-1
222,-1,604.679,211.61,32.934,100.711,0.984551,-1,-1,-1
222,-1,215.315,219.279,21.826,62.126,0.962506,-1,-1,-1
223,-1,269.109,204.229,28.038,84.212,0.991261,-1,-1,-1
223,-1,160.322,206.527,40.401,83.096,0.991016,-1,-1,-1
223,-1,210.633,216.479,24.069,70.116,0.951183,-1,-1,-1
223,-1,598.2,228.636,34.464,81.506,0.941971,-1,-1,-1
224,-1,171.849,205.605,28.226,72.075,0.993727,-1,-1,-1
224,-1,264.635,199.243,32.463,94.564,0.989971,-1,-1,-1
224,-1,602.464,221.598,34.885,93.431,0.979546,-1,-1,-1
224,-1,211.463,204.671,22.312,63.279,0.916681,-1,-1,-1
225,-1,267.613,207.301,34.007,92.524,0.99324,-1,-1,-1
225,-1,166.793,212.244,24.642,76.134,0.978857,-1,-1,-1
225,-1,599.233,208.067,32.285,101.682,0.968279,-1,-1,-1
225,-1,213.594,208.371,20.387,64.319,0.774034,-1,-1,-1
226,-1,263.371,197.973,32.793,92.399,0.992804,-1,-1,-1
226,-1,166.27,200.379,23.119,85.245,0.959344,-1,-1,-1
226,-1,204.727,209.204,28.044,74,0.947469,-1,-1,-1
226,-1,604.079,218.174,28.011,89.981,0.841367,-1,-1,-1
226,-1,181.211,205.041,18.987,69.345,0.724754,-1,-1,-1
227,-1,170.132,201.902,26.211,76.913,0.991557,-1,-1,-1
227,-1,202.051,210.655,31.996,70.233,0.983666,-1,-1,-1
227,-1,263.801,194.715,39.147,103.021,0.981938,-1,-1,-1
227,-1,604.858,205.674,29.718,96.49,0.590921,-1,-1,-1
227,-1,595.749,221.968,19.675,36.939,0.575612,-1,-1,-1
228,-1,272.865,200.196,28.339,95.579,0.990007,-1,-1,-1
228,-1,166.277,204.496,27.455,78.712,0.985567,-1,-1,-1
228,-1,209.154,211.623,26.395,71.973,0.964152,-1,-1,-1
228,-1,597.392,219.266,24.09,54.67,0.703391,-1,-1,-1
229,-1,265.917,202.238,42.732,93.88,0.988282,-1,-1,-1
229,-1,212.939,207.143,24.237,78.55,0.974875,-1,-1,-1
229,-1,169.162,206.208,36.842,73.04,0.952595,-1,-1,-1
229,-1,599.139,218.223,21.856,50.419,0.716886,-1,-1,-1
229,-1,563.617,192.016,24.798,42.464,0.619298,-1,-1,-1
230,-1,271.756,191.539,31.801,110.252,0.994347,-1,-1,-1
230,-1,173.197,207.289,30.879,71.786,0.981108,-1,-1,-1
230,-1,215.442,206.004,21.312,69.634,0.937887,-1,-1,-1
230,-1,232.056,210.52,13.911,61.107,0.831312,-1,-1,-1
230,-1,602.263,225.362,22.791,39.473,0.81143,-1,-1,-1
230,-1,195.797,208.621,15.502,62.462,0.621104,-1,-1,-1
231,-1,274.696,190.605,33.504,111.563,0.993149,-1,-1,-1
231,-1,177.861,202.655,31.422,76.767,0.988708,-1,-1,-1
231,-1,210.355,210.026,22.75,76.938,0.964364,-1,-1,-1
231,-1,196.787,210.65,23.441,74.425,0.673628,-1,-1,-1
231,-1,603.663,217.702,21.799,54.393,0.555504,-1,-1,-1
232,-1,274.609,191.938,37.779,123.524,0.984663,-1,-1,-1
232,-1,183.957,199.508,27.813,88.458,0.980927,-1,-1,-1
232,-1,205.882,201.669,21.685,79.984,0.946375,-1,-1,-1
232,-1,224.906,211.048,16.636,66.44,0.802091,-1,-1,-1
232,-1,573.13,191.146,22.072,46.698,0.686255,-1,-1,-1
233,-1,278.383,199.538,30.762,107.161,0.987678,-1,-1,-1
233,-1,201.832,206.477,28.292,80.163,0.974613,-1,-1,-1
233,-1,218.761,211.99,19.238,66.435,0.898702,-1,-1,-1
233,-1,181.877,204.239,32.349,74.348,0.839019,-1,-1,-1
233,-1,232.974,210.993,13.213,59.25,0.610565,-1,-1,-1
234,-1,276.752,192.4,42.932,110.652,0.991433,-1,-1,-1
234,-1,185.181,202.959,33.267,76.571,0.97384,-1,-1,-1
234,-1,206.072,206.16,21.005,80.315,0.955813,-1,-1,-1
234,-1,220.913,211.024,15.732,74.082,0.787362,-1,-1,-1
234,-1,236.799,214.876,19.462,55.744,0.705484,-1,-1,-1
235,-1,279.799,195.42,42.38,105.898,0.991954,-1,-1,-1
235,-1,189.74,195.422,35.014,97.003,0.983207,-1,-1,-1
235,-1,217.428,208.456,17.944,73.788,0.915864,-1,-1,-1
235,-1,234.463,210.586,15.356,65.333,0.64815,-1,-1,-1
236,-1,286.402,190.202,35.506,125.094,0.990405,-1,-1,-1
236,-1,188.706,198.571,47.258,94.126,0.986008,-1,-1,-1
236,-1,213.155,207.525,16.836,76.156,0.61936,-1,-1,-1
236,-1,606.72,220.732,25.017,48.273,0.510197,-1,-1,-1
237,-1,283.549,194.034,53.576,118.05,0.994243,-1,-1,-1
237,-1,195.689,199.826,29.182,88.671,0.981504,-1,-1,-1
237,-1,244.678,210.92,16.847,59.897,0.872855,-1,-1,-1
237,-1,228.874,210.646,18.694,66.225,0.706742,-1,-1,-1
238,-1,291.897,192.57,39.553,120.457,0.995968,-1,-1,-1
238,-1,185.036,199.208,46.674,100.069,0.983917,-1,-1,-1
238,-1,237.868,211.462,18.351,61.615,0.805855,-1,-1,-1
239,-1,297.74,195.439,42.893,124.907,0.994363,-1,-1,-1
239,-1,192.921,206.196,36.058,95.294,0.987449,-1,-1,-1
239,-1,236.293,215.265,19.796,60.187,0.91783,-1,-1,-1
240,-1,302.62,195.767,38.538,123.993,0.993176,-1,-1,-1
240,-1,196.193,203.997,30.969,92.095,0.981879,-1,-1,-1
240,-1,237.04,220.018,21.776,49.431,0.903145,-1,-1,-1
241,-1,305.938,193.87,44.689,122.811,0.993909,-1,-1,-1
241,-1,192.974,200.957,37.153,103.047,0.992335,-1,-1,-1
241,-1,236.858,215.517,23.149,60.605,0.91993,-1,-1,-1
242,-1,308.535,195.024,47.906,126.334,0.993662,-1,-1,-1
242,-1,190.572,189.161,39.07,119.258,0.990203,-1,-1,-1
242,-1,238.033,215.401,26.289,64.773,0.795873,-1,-1,-1
242,-1,595.514,188.971,24.924,64.704,0.636374,-1,-1,-1
243,-1,192.013,190.16,34.651,117.848,0.992723,-1,-1,-1
243,-1,305.536,189.245,55.622,133.162,0.990379,-1,-1,-1
243,-1,237.875,224.594,21.564,51.239,0.902087,-1,-1,-1
244,-1,317.501,193.718,44.88,130.537,0.994699,-1,-1,-1
244,-1,191.832,192.583,41.321,120.466,0.994527,-1,-1,-1
244,-1,245.707,218.948,22.87,52.594,0.924673,-1,-1,-1
245,-1,316.477,194.97,64.07,134.121,0.997663,-1,-1,-1
245,-1,193.05,191.988,42.556,119.899,0.984673,-1,-1,-1
245,-1,242.661,217.532,24.829,56.435,0.960465,-1,-1,-1
246,-1,333.387,185.411,49.129,150.461,0.997784,-1,-1,-1
246,-1,191.943,197.328,56.003,120.142,0.983939,-1,-1,-1
246,-1,255.051,216.997,30.171,54.477,0.879973,-1,-1,-1
247,-1,346.774,183.92,63.408,155.625,0.998873,-1,-1,-1
247,-1,192.062,184.351,59.049,125.502,0.996661,-1,-1,-1
247,-1,263.008,222.911,23.243,51.106,0.926673,-1,-1,-1
247,-1,309.054,225.561,17.438,33.536,0.501821,-1,-1,-1
248,-1,342.886,187.248,72.052,140.77,0.999057,-1,-1,-1
248,-1,193.799,191.212,59.129,124.654,0.996593,-1,-1,-1
248,-1,270.245,216.879,24.434,49.983,0.912274,-1,-1,-1
248,-1,255.225,213.001,25.425,70.965,0.822868,-1,-1,-1
249,-1,350.861,179.324,74.302,153.364,0.99871,-1,-1,-1
249,-1,193.45,183.683,57.714,136.218,0.99271,-1,-1,-1
249,-1,265.047,215.512,24.723,59.043,0.940582,-1,-1,-1
250,-1,367.39,181.937,66.082,162.888,0.998261,-1,-1,-1
250,-1,191.224,186.635,54.218,142.063,0.988083,-1,-1,-1
250,-1,276.613,212.898,24.748,62.868,0.977861,-1,-1,-1
251,-1,378.035,167.956,56.717,179.231,0.998913,-1,-1,-1
251,-1,192.63,187.033,52.782,134.858,0.992855,-1,-1,-1
251,-1,274.703,218.863,24.203,56.377,0.944927,-1,-1,-1
252,-1,373.863,173.164,86.265,178.898,0.998342,-1,-1,-1
252,-1,190.968,183.488,57.894,143.16,0.99266,-1,-1,-1
252,-1,282.079,210.335,24.743,70.888,0.963233,-1,-1,-1
252,-1,270.359,209.326,22.387,66.821,0.906207,-1,-1,-1
252,-1,246.596,199.762,22.15,91.09,0.761693,-1,-1,-1
252,-1,228.609,191.334,28.481,123.144,0.578689,-1,-1,-1
253,-1,388.481,166.025,77.267,185.449,0.99909,-1,-1,-1
253,-1,194.318,171.029,60.556,152.454,0.989977,-1,-1,-1
253,-1,282.694,211.782,25.927,68.847,0.954694,-1,-1,-1
253,-1,247.302,193.287,37.818,99.735,0.817363,-1,-1,-1
254,-1,402.495,162.426,75.864,189.331,0.998366,-1,-1,-1
254,-1,199.4,171.454,49.046,158.981,0.994231,-1,-1,-1
254,-1,295.713,211.836,22.383,62.289,0.946066,-1,-1,-1
254,-1,261.645,197.842,27.242,82.829,0.940795,-1,-1,-1
254,-1,343.797,218.721,17.202,32.738,0.92721,-1,-1,-1
254,-1,279.827,203.22,22.306,71.156,0.815398,-1,-1,-1
254,-1,310.375,212.175,16.271,59.769,0.65396,-1,-1,-1
255,-1,413.996,150.707,89.259,214.313,0.998726,-1,-1,-1
255,-1,199.71,164.522,63.086,164.19,0.98935,-1,-1,-1
255,-1,262.757,199.696,30.394,93.503,0.973325,-1,-1,-1
255,-1,306.557,203.187,21.541,72.03,0.94223,-1,-1,-1
255,-1,292.065,201.3,24.469,81.142,0.843584,-1,-1,-1
255,-1,320.117,209.601,17.033,60.302,0.661094,-1,-1,-1
255,-1,356.371,222.103,15.398,38.405,0.543726,-1,-1,-1
256,-1,420.684,153.887,96.519,210.322,0.998445,-1,-1,-1
256,-1,206.282,152.678,50.518,184.472,0.996388,-1,-1,-1
256,-1,271.873,186.97,40.358,102.37,0.985621,-1,-1,-1
256,-1,309.237,205.917,29.363,68.508,0.940103,-1,-1,-1
256,-1,366.004,222.994,19.067,34.558,0.714103,-1,-1,-1
257,-1,437.534,149.434,84.981,225.939,0.997325,-1,-1,-1
257,-1,202.152,151.868,64.93,193.512,0.997275,-1,-1,-1
257,-1,277.052,199.95,37.434,84.878,0.986899,-1,-1,-1
257,-1,311.259,202.956,34.682,65.594,0.944247,-1,-1,-1
258,-1,449.563,129.802,89.25,254.697,0.99838,-1,-1,-1
258,-1,193.052,149.218,73.705,197.585,0.997591,-1,-1,-1
258,-1,277.129,182.48,33.891,107.134,0.988694,-1,-1,-1
258,-1,307.475,189.296,36.803,76.143,0.933078,-1,-1,-1
259,-1,462.533,134.054,89.379,240.649,0.998562,-1,-1,-1
259,-1,181.641,139.702,79.523,194.592,0.997717,-1,-1,-1
259,-1,280.889,193.724,34.292,90.21,0.990461,-1,-1,-1
259,-1,319.534,198.767,19.682,71.917,0.941585,-1,-1,-1
259,-1,421.253,217.995,23.688,33.45,0.911371,-1,-1,-1
260,-1,470.66,127.711,97.264,243.917,0.999067,-1,-1,-1
260,-1,181.286,134.124,74.965,202.845,0.998845,-1,-1,-1
260,-1,280.004,202.316,33.838,80.44,0.986605,-1,-1,-1
260,-1,316.21,210.109,18.909,59.125,0.941453,-1,-1,-1
260,-1,427.551,219.505,19.134,32.047,0.931334,-1,-1,-1
260,-1,336.386,204.008,14.957,51.438,0.691531,-1,-1,-1
260,-1,438.207,222.7,24.8,41.601,0.503616,-1,-1,-1
261,-1,489.306,119.566,91.355,285.726,0.999048,-1,-1,-1
261,-1,180.692,138.334,72.902,203.597,0.997305,-1,-1,-1
261,-1,276.569,203.776,39.983,73.862,0.990346,-1,-1,-1
261,-1,430.727,223.044,18.992,41.346,0.938175,-1,-1,-1
261,-1,321.958,212.035,16.39,54.967,0.856383,-1,-1,-1
261,-1,309.611,202.093,20.544,74.596,0.831801,-1,-1,-1
261,-1,421.072,226.809,17.695,29.149,0.768275,-1,-1,-1
262,-1,487.261,111.747,116.744,299.626,0.99952,-1,-1,-1
262,-1,170.92,139.765,81.227,224.497,0.998665,-1,-1,-1
262,-1,284.461,195.818,35.283,100.219,0.981968,-1,-1,-1
262,-1,434.129,224.645,20.129,38.783,0.953973,-1,-1,-1
262,-1,318.827,217.039,16.699,60.524,0.870862,-1,-1,-1
262,-1,448.662,219.864,17.224,44.488,0.861093,-1,-1,-1
262,-1,421.994,230.57,16.457,33.654,0.550723,-1,-1,-1
263,-1,497.72,96.6642,134.649,345.492,0.999234,-1,-1,-1
263,-1,142.408,132.57,97.132,235.331,0.99867,-1,-1,-1
263,-1,282.728,194.95,36.944,97.836,0.98348,-1,-1,-1
263,-1,432.399,225.503,20.736,41.043,0.936784,-1,-1,-1
263,-1,304.681,206.591,33.065,75.626,0.914014,-1,-1,-1
263,-1,441.167,228.982,22.256,24.626,0.799148,-1,-1,-1
263,-1,422.654,229.339,16.647,35.302,0.791771,-1,-1,-1
264,-1,505.16,83.9316,132.605,365.509,0.999545,-1,-1,-1
264,-1,137.73,135.651,90.049,237.119,0.99793,-1,-1,-1
264,-1,279.849,199.885,39.561,92.999,0.977313,-1,-1,-1
264,-1,426.948,227.708,21.73,42.129,0.898393,-1,-1,-1
264,-1,303.021,211.369,23.558,66.954,0.879578,-1,-1,-1
264,-1,319.111,218,18.154,62.647,0.822696,-1,-1,-1
265,-1,536.756,69.9662,101.488,368.646,0.999121,-1,-1,-1
265,-1,109.146,126.564,109.84,250.862,0.998702,-1,-1,-1
265,-1,277.338,207.725,44.898,91.884,0.987291,-1,-1,-1
265,-1,425.438,229.304,22.52,40.21,0.967451,-1,-1,-1
265,-1,417.904,237.435,17.911,30.589,0.944902,-1,-1,-1
265,-1,316.061,216.306,19.004,63.047,0.738763,-1,-1,-1
266,-1,96.7705,110.658,111.418,289.673,0.998736,-1,-1,-1
266,-1,561.866,40.1383,77.134,393.352,0.99405,-1,-1,-1
266,-1,275.767,217.858,51.69,80.992,0.987468,-1,-1,-1
266,-1,424.192,235.426,21.306,34.515,0.94016,-1,-1,-1
266,-1,417.047,233.382,14.733,35.961,0.774016,-1,-1,-1
267,-1,75.4307,104.403,110.52,313.8,0.999111,-1,-1,-1
267,-1,275.804,215.752,48.794,87.738,0.995278,-1,-1,-1
267,-1,430.48,232.447,21.884,41.207,0.918325,-1,-1,-1
267,-1,570.17,225.766,67.951,248.169,0.848977,-1,-1,-1
267,-1,166.037,244.771,47.929,119.729,0.814962,-1,-1,-1
267,-1,333.303,224.685,16.032,43.697,0.691861,-1,-1,-1
268,-1,65.1292,85.7524,125.834,317.033,0.998933,-1,-1,-1
268,-1,276.903,216.251,40.169,78.601,0.99387,-1,-1,-1
268,-1,422.192,232.361,21.794,38.117,0.928335,-1,-1,-1
268,-1,328.874,222.94,14.049,41.052,0.781597,-1,-1,-1
268,-1,429.639,236.853,29.76,48.603,0.759418,-1,-1,-1
269,-1,44.4936,83.1299,120.564,352.197,0.999434,-1,-1,-1
269,-1,265.54,213.929,48.882,93.946,0.98778,-1,-1,-1
269,-1,413.868,235.083,29.286,40.675,0.954765,-1,-1,-1
269,-1,332.861,227.372,13.924,36.283,0.588568,-1,-1,-1
269,-1,318.491,229.984,21.445,44.955,0.57162,-1,-1,-1
270,-1,11.9433,66.2402,127.973,378.313,0.998495,-1,-1,-1
270,-1,269.323,211.783,38.61,78.358,0.9875,-1,-1,-1
270,-1,398.117,236.982,20.894,31.011,0.92386,-1,-1,-1
270,-1,243.766,218.122,40.121,65.955,0.781206,-1,-1,-1
270,-1,318.486,224.157,14.121,43.689,0.695111,-1,-1,-1
271,-1,1.81737,55.2859,108.518,405.65,0.998139,-1,-1,-1
271,-1,253.281,210.927,59.825,84.475,0.986241,-1,-1,-1
271,-1,389.726,230.332,23.026,34,0.947495,-1,-1,-1
271,-1,246.92,222.754,29.781,67.665,0.894612,-1,-1,-1
271,-1,406.071,226.628,19,40.644,0.704092,-1,-1,-1
272,-1,0.74094,58.9425,94.7608,387.793,0.989262,-1,-1,-1
272,-1,257.6,203.31,43.844,96.593,0.985427,-1,-1,-1
272,-1,389.491,225.463,26.425,41.432,0.909277,-1,-1,-1
272,-1,241.163,212.103,29.605,81.159,0.899453,-1,-1,-1
273,-1,261.59,202.468,37.403,102.738,0.987732,-1,-1,-1
273,-1,386.866,225.571,22.978,40.292,0.922246,-1,-1,-1
273,-1,234.469,213.861,25.262,67.687,0.875536,-1,-1,-1
273,-1,369.015,228.419,29.281,42.481,0.689278,-1,-1,-1
274,-1,268.659,195.811,28.207,100.149,0.984337,-1,-1,-1
274,-1,235.484,206.082,27.528,86.552,0.962409,-1,-1,-1
274,-1,386.209,227.746,20.789,39.716,0.863692,-1,-1,-1
274,-1,369.901,227.185,27.053,42.391,0.62187,-1,-1,-1
275,-1,261.291,194.332,38.541,104.506,0.986647,-1,-1,-1
275,-1,233.401,207.549,30.851,83.118,0.985898,-1,-1,-1
275,-1,381.691,229.593,27.91,35.263,0.7969,-1,-1,-1
276,-1,266.2,200.041,26.883,94.362,0.986734,-1,-1,-1
276,-1,231.314,202.491,32.119,87.605,0.983348,-1,-1,-1
276,-1,391.476,233.283,17.721,31.366,0.670352,-1,-1,-1
277,-1,260.632,198.481,34.716,98.946,0.984259,-1,-1,-1
277,-1,222.99,210.674,32.078,74.836,0.96551,-1,-1,-1
277,-1,374.665,229.489,25.373,37.448,0.915895,-1,-1,-1
278,-1,257.08,195.87,35.66,96.171,0.991697,-1,-1,-1
278,-1,220.598,206.341,28.841,82.206,0.985598,-1,-1,-1
278,-1,372.871,235.237,19.597,28.996,0.915574,-1,-1,-1
279,-1,250.908,199.882,45.116,96.81,0.986761,-1,-1,-1
279,-1,212.246,205.271,29.89,77.226,0.984955,-1,-1,-1
279,-1,362.738,218.878,21.166,43.536,0.814257,-1,-1,-1
280,-1,244.656,201.039,38.464,96.385,0.991443,-1,-1,-1
280,-1,208.28,200.657,30.123,86.717,0.991175,-1,-1,-1
280,-1,354.626,225.214,18.505,32.884,0.805551,-1,-1,-1
281,-1,237.038,195.627,43.367,100.077,0.991624,-1,-1,-1
281,-1,196.647,206.001,28.083,73.303,0.985774,-1,-1,-1
281,-1,351.69,227.207,22.423,33.187,0.904212,-1,-1,-1
282,-1,231,199.664,39.877,94.259,0.992525,-1,-1,-1
282,-1,185.783,220.906,30.171,62.802,0.967269,-1,-1,-1
282,-1,334.045,229.851,22.391,36.055,0.909563,-1,-1,-1
282,-1,347.763,227.276,17.108,34.738,0.736623,-1,-1,-1
283,-1,226.884,193.135,38.568,105.709,0.992639,-1,-1,-1
283,-1,183.634,202.042,28.456,85.041,0.980265,-1,-1,-1
283,-1,336.769,225.546,19.353,37.88,0.888845,-1,-1,-1
283,-1,328.087,220.46,15.783,39.388,0.683134,-1,-1,-1
283,-1,208.109,198.009,32.122,92.136,0.665038,-1,-1,-1
284,-1,225.287,196.014,39.653,110.596,0.982185,-1,-1,-1
284,-1,176.325,214.065,29.097,75.15,0.949872,-1,-1,-1
284,-1,325.613,236.462,18.854,28.309,0.882282,-1,-1,-1
284,-1,335.41,229.336,19.26,35.167,0.623723,-1,-1,-1
285,-1,213.772,194.661,57.617,105.053,0.992101,-1,-1,-1
285,-1,173.296,205.768,25.891,76.404,0.978747,-1,-1,-1
285,-1,331.918,230.652,19.661,30.497,0.802765,-1,-1,-1
285,-1,191.878,201.612,29.971,92.687,0.587137,-1,-1,-1
286,-1,217.864,195.64,43.022,106.195,0.991799,-1,-1,-1
286,-1,171.259,206.839,26.7,78.687,0.980097,-1,-1,-1
286,-1,329.171,225.821,18.929,35.484,0.84026,-1,-1,-1
286,-1,192.738,199.412,30.899,94.822,0.709912,-1,-1,-1
286,-1,583.404,255.799,40.245,110.269,0.547735,-1,-1,-1
287,-1,216.764,198.396,46.86,98.162,0.990339,-1,-1,-1
287,-1,166.883,211.089,29.166,71.485,0.99006,-1,-1,-1
287,-1,590.305,261.135,33.235,110.873,0.839835,-1,-1,-1
287,-1,203.861,193.19,24.539,99.604,0.700952,-1,-1,-1
287,-1,335.425,231.61,14.779,33.269,0.654066,-1,-1,-1
287,-1,322.613,226.97,18.327,34.254,0.627874,-1,-1,-1
288,-1,220.993,198.238,41.18,93.421,0.98842,-1,-1,-1
288,-1,164.669,199.068,35.865,94.759,0.988068,-1,-1,-1
288,-1,197.216,203.491,25.79,85.794,0.903867,-1,-1,-1
288,-1,335.427,225.314,15.167,34.313,0.58409,-1,-1,-1
288,-1,343.182,216.83,21.015,38.102,0.529805,-1,-1,-1
289,-1,213.75,199.957,57.289,104.335,0.990208,-1,-1,-1
289,-1,166.817,206.875,28.738,74.769,0.988794,-1,-1,-1
289,-1,195.698,195.189,30.225,99.052,0.777585,-1,-1,-1
289,-1,321.455,232.058,16.23,30.972,0.742339,-1,-1,-1
289,-1,340.353,225.26,15.91,34.097,0.530969,-1,-1,-1
290,-1,214.522,196.46,54.859,104.271,0.985189,-1,-1,-1
290,-1,152.074,198.809,51.064,99.801,0.971624,-1,-1,-1
290,-1,191.69,198.575,34.932,101.16,0.824248,-1,-1,-1
290,-1,314.021,226.316,16.656,35.892,0.747825,-1,-1,-1
291,-1,218.305,194.44,38.956,107.856,0.991443,-1,-1,-1
291,-1,158.582,207.019,32.538,87.96,0.987849,-1,-1,-1
291,-1,315.371,226.754,18.938,37.812,0.927031,-1,-1,-1
291,-1,325.726,227.997,19.069,42.635,0.719231,-1,-1,-1
291,-1,188.016,207.877,26.264,81.856,0.608585,-1,-1,-1
292,-1,217.991,187.803,39.979,118.776,0.987858,-1,-1,-1
292,-1,151.181,202.364,34.7,93.42,0.985287,-1,-1,-1
292,-1,190.168,192.826,27.652,105.56,0.923225,-1,-1,-1
292,-1,317.171,223.37,17.88,39.241,0.803276,-1,-1,-1
293,-1,222.407,196.455,39.031,113.142,0.993084,-1,-1,-1
293,-1,146.57,195.76,39.372,102.846,0.984524,-1,-1,-1
293,-1,179.079,196.447,44.844,106.368,0.95477,-1,-1,-1
293,-1,306.828,229.883,21.313,41.201,0.698437,-1,-1,-1
294,-1,219.026,192.626,38.044,116.373,0.993273,-1,-1,-1
294,-1,145.063,210.293,36.721,84.376,0.983428,-1,-1,-1
294,-1,182.097,197.184,29.905,91.666,0.935382,-1,-1,-1
294,-1,312.871,224.624,16.946,38.125,0.86582,-1,-1,-1
295,-1,218.011,187.689,38.238,116.777,0.994661,-1,-1,-1
295,-1,141.155,205.244,34.628,88.492,0.986023,-1,-1,-1
295,-1,183.676,187.852,31.686,109.554,0.983691,-1,-1,-1
295,-1,308.361,221.508,20.323,44.702,0.947878,-1,-1,-1
295,-1,325.942,219.733,19.733,49.303,0.569535,-1,-1,-1
295,-1,343.892,220.601,20.034,35.912,0.533949,-1,-1,-1
296,-1,218.707,191.684,35.277,109.19,0.99413,-1,-1,-1
296,-1,183.844,189.445,29.728,107.962,0.978951,-1,-1,-1
296,-1,145.848,204.348,31.772,85.268,0.971638,-1,-1,-1
296,-1,314.792,223.926,20.404,42.659,0.947599,-1,-1,-1
296,-1,59.5574,184.003,32.6352,111.267,0.826094,-1,-1,-1
296,-1,302.981,221.156,18.055,41.459,0.7994,-1,-1,-1
297,-1,217.484,192.45,36.946,109.757,0.994226,-1,-1,-1
297,-1,182.427,183.704,31.44,118.759,0.974348,-1,-1,-1
297,-1,142.463,200.697,33.202,94.975,0.971511,-1,-1,-1
297,-1,60.0357,184.498,37.2206,118.573,0.960371,-1,-1,-1
297,-1,305.937,224.198,28.822,33.193,0.908796,-1,-1,-1
298,-1,218.923,184.974,45.432,126.343,0.992686,-1,-1,-1
298,-1,51.0833,191.411,35.8379,114.227,0.987084,-1,-1,-1
298,-1,179.918,188.728,32.302,118.126,0.97764,-1,-1,-1
298,-1,139.595,202.804,29.745,97.012,0.976591,-1,-1,-1
298,-1,309.55,220.129,19.659,43.297,0.960342,-1,-1,-1
298,-1,323.375,220.056,20.425,46.291,0.667684,-1,-1,-1
299,-1,221.85,195.662,39.792,105.65,0.993865,-1,-1,-1
299,-1,180.847,190.208,36.039,112.693,0.982442,-1,-1,-1
299,-1,50.383,180.583,39.2331,121.203,0.975678,-1,-1,-1
299,-1,135.785,196.663,33.962,102.702,0.965454,-1,-1,-1
299,-1,314.457,225.182,21.393,43.137,0.932995,-1,-1,-1
299,-1,302.574,213.984,18.526,45.262,0.783149,-1,-1,-1
300,-1,214.66,188.594,48.704,115.729,0.992411,-1,-1,-1
300,-1,45.9546,187.015,43.0262,124.416,0.989101,-1,-1,-1
300,-1,128.977,202.632,36.514,88.504,0.988445,-1,-1,-1
300,-1,179.97,186.285,31.714,120.822,0.954563,-1,-1,-1
300,-1,308.457,224.967,19.192,37.639,0.95377,-1,-1,-1
300,-1,342.433,221.852,20.503,43.452,0.643655,-1,-1,-1
301,-1,218.962,176.513,41.066,127.917,0.989406,-1,-1,-1
301,-1,48.7326,185.079,39.8953,117.656,0.987937,-1,-1,-1
301,-1,133.866,199.105,32.654,94.784,0.986017,-1,-1,-1
301,-1,180.428,190.703,31.539,115.509,0.977775,-1,-1,-1
301,-1,308.226,226.323,21.597,37.301,0.909645,-1,-1,-1
301,-1,343.459,220.254,20.405,41.053,0.805423,-1,-1,-1
301,-1,297.876,223.23,17.929,42.378,0.679446,-1,-1,-1
302,-1,214.507,188.023,47.924,116.174,0.992201,-1,-1,-1
302,-1,130.216,196.493,34.806,98.117,0.98654,-1,-1,-1
302,-1,48.6679,183.069,41.0071,124.014,0.964516,-1,-1,-1
302,-1,175.7,182.402,37.599,118.046,0.961765,-1,-1,-1
302,-1,310.667,220.766,21.757,42.829,0.946244,-1,-1,-1
302,-1,343.954,220.885,21.416,42.363,0.865558,-1,-1,-1
302,-1,300.306,223.185,16.7,43.454,0.716904,-1,-1,-1
303,-1,215.17,195.26,48.079,109.979,0.994196,-1,-1,-1
303,-1,125.256,199.946,36.062,97.454,0.983234,-1,-1,-1
303,-1,173.806,177.935,38.738,130.115,0.980558,-1,-1,-1
303,-1,47.1066,171.723,45.3353,134.686,0.975515,-1,-1,-1
303,-1,303.556,228.799,34.119,37.877,0.862093,-1,-1,-1
303,-1,343.738,214.504,20.083,49.632,0.776414,-1,-1,-1
303,-1,5.62382,214.673,47.4238,146.743,0.577114,-1,-1,-1
303,-1,298.924,226.538,15.469,41.074,0.563338,-1,-1,-1
304,-1,212.731,195.914,49.342,109.526,0.993806,-1,-1,-1
304,-1,41.4824,169.161,53.7988,139.403,0.987318,-1,-1,-1
304,-1,171.926,177.404,40.91,141.914,0.979603,-1,-1,-1
304,-1,123.321,198.536,35.259,105.57,0.965019,-1,-1,-1
304,-1,312.651,222.689,19.253,41.415,0.957419,-1,-1,-1
305,-1,48.7273,173.56,47.6244,136.523,0.993822,-1,-1,-1
305,-1,211.484,187.272,46.096,114.371,0.993245,-1,-1,-1
305,-1,173.809,182.906,34.496,134.328,0.983545,-1,-1,-1
305,-1,124.099,201.378,37.653,109.582,0.973584,-1,-1,-1
305,-1,111.192,207.212,29.085,92.193,0.876799,-1,-1,-1
305,-1,303.98,231.275,15.477,33.457,0.813846,-1,-1,-1
305,-1,346.552,221.357,19.934,41.052,0.788631,-1,-1,-1
306,-1,205.581,195.966,56.537,111.108,0.991315,-1,-1,-1
306,-1,41.9283,178.967,46.1509,137.426,0.988546,-1,-1,-1
306,-1,168.422,188.651,33.856,125.965,0.9877,-1,-1,-1
306,-1,106.986,214.954,30.52,86.571,0.936968,-1,-1,-1
306,-1,122.328,203.722,35.453,108.931,0.932042,-1,-1,-1
306,-1,306.271,232.535,18.213,35.925,0.887197,-1,-1,-1
306,-1,346.207,220.282,20.096,42.627,0.840434,-1,-1,-1
306,-1,293.299,229.4,18.526,41.659,0.810306,-1,-1,-1
307,-1,201.487,195.319,51.748,118.741,0.992055,-1,-1,-1
307,-1,35.9063,177.732,53.9217,130.18,0.989681,-1,-1,-1
307,-1,163.328,186.335,39.128,136.226,0.985433,-1,-1,-1
307,-1,100.089,209.198,32.5,91.782,0.937439,-1,-1,-1
307,-1,299.973,229.448,19.067,39.336,0.929437,-1,-1,-1
307,-1,125.342,195.14,29.241,119.783,0.835629,-1,-1,-1
307,-1,341.475,221.989,22.323,51.107,0.712748,-1,-1,-1
307,-1,309.925,223.766,18.861,42.712,0.616749,-1,-1,-1
308,-1,32.6588,164.462,60.1101,147.697,0.996175,-1,-1,-1
308,-1,208.634,188.948,40.548,123.663,0.989733,-1,-1,-1
308,-1,160.909,175.513,36.908,140.392,0.98568,-1,-1,-1
308,-1,120.409,207.909,30.771,95.064,0.926876,-1,-1,-1
308,-1,91.1837,195.064,35.1273,110.156,0.908515,-1,-1,-1
308,-1,292.092,222.41,18.479,43.287,0.905357,-1,-1,-1
309,-1,207.068,188.735,33.32,119.907,0.995704,-1,-1,-1
309,-1,23.9675,157.379,71.4589,163.28,0.989164,-1,-1,-1
309,-1,153.463,184.633,35.357,125.003,0.9796,-1,-1,-1
309,-1,110.874,196.094,34.774,114.439,0.950207,-1,-1,-1
309,-1,75.2725,194.806,48.7855,111.16,0.921715,-1,-1,-1
309,-1,292.271,225.353,13.863,32.847,0.709237,-1,-1,-1
310,-1,203.176,185.666,38.781,125.841,0.995863,-1,-1,-1
310,-1,29.043,153.592,63.331,177.68,0.992591,-1,-1,-1
310,-1,150.83,181.336,45.803,124.532,0.990872,-1,-1,-1
310,-1,76.9742,188.454,45.1258,122.469,0.94754,-1,-1,-1
310,-1,109.79,194.616,38.624,109.714,0.934752,-1,-1,-1
310,-1,294.445,226.467,15.631,37.035,0.919485,-1,-1,-1
310,-1,342.544,218.641,20.388,45.764,0.801563,-1,-1,-1
311,-1,15.0385,150.213,83.2973,174.081,0.995237,-1,-1,-1
311,-1,209.576,187.44,38.727,122.081,0.994937,-1,-1,-1
311,-1,148.586,178.743,45.787,132.277,0.990169,-1,-1,-1
311,-1,105.867,196.591,38.58,113.454,0.953237,-1,-1,-1
311,-1,72.31,193.359,42.969,109.35,0.928386,-1,-1,-1
311,-1,292.947,219.541,17.29,40.025,0.815301,-1,-1,-1
311,-1,341.564,216.505,21.742,51.109,0.780579,-1,-1,-1
312,-1,191.049,197.354,53.25,117.124,0.993364,-1,-1,-1
312,-1,21.3463,155.869,62.4181,165.906,0.99192,-1,-1,-1
312,-1,145.274,178.342,44.42,135.608,0.983998,-1,-1,-1
312,-1,98.7797,185.31,42.9323,129.324,0.943802,-1,-1,-1
312,-1,293.131,232.191,16.442,40.424,0.826354,-1,-1,-1
312,-1,74.4405,187.466,36.6715,115.656,0.817269,-1,-1,-1
312,-1,304.253,221.806,16.61,44.069,0.685333,-1,-1,-1
312,-1,342.843,220.508,20.198,51.486,0.680601,-1,-1,-1
313,-1,2.54732,155.95,91.975,176.934,0.993904,-1,-1,-1
313,-1,196.166,185.374,40.87,122.464,0.98951,-1,-1,-1
313,-1,139.442,181.301,56.764,132.931,0.978868,-1,-1,-1
313,-1,104.042,179.311,38.59,130.841,0.973261,-1,-1,-1
313,-1,293.206,230.137,18.352,38.255,0.908829,-1,-1,-1
313,-1,62.9667,190.23,44.8623,121.045,0.901095,-1,-1,-1
313,-1,348.384,214.815,18.946,51.408,0.801967,-1,-1,-1
313,-1,303.97,223.093,13.184,39.319,0.527764,-1,-1,-1
313,-1,231.355,195.731,14.629,104.124,0.509842,-1,-1,-1
314,-1,10.1681,153.402,71.7314,182.114,0.996578,-1,-1,-1
314,-1,193.123,194.373,39.933,109.314,0.992161,-1,-1,-1
314,-1,143.036,172.954,40.408,149.508,0.987477,-1,-1,-1
314,-1,98.1821,184.26,37.1049,128.429,0.962853,-1,-1,-1
314,-1,290.681,233.96,18.279,38.966,0.892377,-1,-1,-1
314,-1,343.182,224.144,21.508,40.193,0.806166,-1,-1,-1
314,-1,56.939,181.452,47.646,132.082,0.791505,-1,-1,-1
314,-1,280.613,228.685,16.617,41.63,0.713934,-1,-1,-1
314,-1,227.571,209.205,14.842,80.218,0.627021,-1,-1,-1
314,-1,300.59,226.186,17.659,43.808,0.531763,-1,-1,-1
315,-1,0,148.33,78.3976,202.466,0.993326,-1,-1,-1
315,-1,186.336,186.829,37.763,121.452,0.988786,-1,-1,-1
315,-1,138.733,174.233,48.033,142.186,0.988691,-1,-1,-1
315,-1,99.1169,186.205,36.5071,123.044,0.968812,-1,-1,-1
315,-1,52.1857,178.626,42.3968,130.141,0.91822,-1,-1,-1
315,-1,343.068,225.638,21.721,47,0.836461,-1,-1,-1
315,-1,217.345,209.189,18.11,96.724,0.82537,-1,-1,-1
315,-1,229.726,219.301,14.923,62.905,0.822031,-1,-1,-1
315,-1,294.222,229.388,14.265,33.374,0.609057,-1,-1,-1
315,-1,282.656,225.816,14.12,38.117,0.582762,-1,-1,-1
316,-1,135.193,171.368,46.981,148.647,0.989412,-1,-1,-1
316,-1,182.677,198.681,49.949,108.746,0.988763,-1,-1,-1
316,-1,4.02799,142.638,67.5066,217.229,0.988225,-1,-1,-1
316,-1,87.0202,176.793,44.1778,138.297,0.95042,-1,-1,-1
316,-1,350.519,223.051,18.714,47.274,0.924969,-1,-1,-1
316,-1,224.136,215.513,15.911,78.974,0.847217,-1,-1,-1
316,-1,281.688,229.559,15.269,35.544,0.846285,-1,-1,-1
316,-1,49.6212,179.499,36.5549,127.048,0.82701,-1,-1,-1
316,-1,231.795,225.672,16.782,57.795,0.714477,-1,-1,-1
316,-1,293.993,224.559,15.517,38.152,0.620093,-1,-1,-1
317,-1,1.33216,129.132,67.4981,231.969,0.996053,-1,-1,-1
317,-1,83.4101,188.825,44.3379,123.132,0.986022,-1,-1,-1
317,-1,185.479,178.237,35.789,141.926,0.984158,-1,-1,-1
317,-1,133.249,172.439,40.856,150.633,0.96771,-1,-1,-1
317,-1,225.705,211.504,15.151,72.164,0.899442,-1,-1,-1
317,-1,217.05,200.009,14.613,94.46,0.872613,-1,-1,-1
317,-1,283.372,228.604,15.653,40.632,0.850248,-1,-1,-1
317,-1,351.89,221.707,18.263,45.915,0.844397,-1,-1,-1
317,-1,293.741,223.423,26.073,39.68,0.775239,-1,-1,-1
317,-1,340.816,228.119,14.891,37.811,0.586088,-1,-1,-1
318,-1,6.03621,137.117,58.0008,217.839,0.997937,-1,-1,-1
318,-1,131.415,168.484,42.416,152.891,0.982624,-1,-1,-1
318,-1,177.468,187.507,40.578,129.947,0.979918,-1,-1,-1
318,-1,347.956,222.933,19.669,39.529,0.925622,-1,-1,-1
318,-1,217.811,209.183,16.635,88.174,0.898454,-1,-1,-1
318,-1,93.4028,172.011,37.1422,146.86,0.892173,-1,-1,-1
318,-1,294.792,223.52,27.326,40.769,0.762578,-1,-1,-1
318,-1,280.855,231.443,16.537,38.676,0.741075,-1,-1,-1
318,-1,228.69,220.447,15.363,65.336,0.734237,-1,-1,-1
318,-1,336.407,218.721,22.184,51.659,0.563504,-1,-1,-1
319,-1,1.06318,157.038,69.051,184.124,0.993604,-1,-1,-1
319,-1,171.35,178.975,39.914,131.336,0.988645,-1,-1,-1
319,-1,125.116,170.021,41.752,151.576,0.979992,-1,-1,-1
319,-1,214.508,212.463,26.001,78.48,0.955263,-1,-1,-1
319,-1,82.9642,175.026,37.3648,141.435,0.955206,-1,-1,-1
319,-1,276.412,229.462,16.228,32.083,0.888268,-1,-1,-1
319,-1,345.733,222.367,19.207,44.09,0.821718,-1,-1,-1
319,-1,284.535,235.418,26.606,34.161,0.788681,-1,-1,-1
319,-1,306.599,231.247,13.53,35.188,0.664914,-1,-1,-1
319,-1,226.904,217.021,22.095,44.99,0.560491,-1,-1,-1
320,-1,11.3511,165.345,49.1371,167.507,0.989323,-1,-1,-1
320,-1,123.14,163.744,48.261,163.26,0.988104,-1,-1,-1
320,-1,212.232,219.045,25.469,80.802,0.98203,-1,-1,-1
320,-1,164.027,187.71,38.75,129.798,0.981937,-1,-1,-1
320,-1,71.2731,178.319,45.0559,141.698,0.978783,-1,-1,-1
320,-1,348.133,222.737,24.042,41.861,0.967831,-1,-1,-1
320,-1,228.581,224.161,17.22,52.965,0.828135,-1,-1,-1
320,-1,276.225,225.491,15.703,33.821,0.827077,-1,-1,-1
320,-1,307.732,223.664,16.398,37.767,0.662533,-1,-1,-1
321,-1,8.56182,164.46,48.6169,164.155,0.995897,-1,-1,-1
321,-1,211.185,209.089,29.17,92.109,0.986863,-1,-1,-1
321,-1,160.082,178.852,38.685,137.092,0.986198,-1,-1,-1
321,-1,118.142,161.813,45.306,169.07,0.984384,-1,-1,-1
321,-1,340.602,218.524,30.053,45.927,0.966561,-1,-1,-1
321,-1,68.1215,170.873,42.9845,150.056,0.934488,-1,-1,-1
321,-1,228.889,219.719,17.238,57.188,0.818763,-1,-1,-1
321,-1,306.902,230.421,15.082,33.729,0.806358,-1,-1,-1
321,-1,268.836,230.66,15.531,32.592,0.710085,-1,-1,-1
321,-1,297.229,229.661,16.425,35.954,0.634724,-1,-1,-1
322,-1,106.039,165.435,55.633,158.194,0.991198,-1,-1,-1
322,-1,155.738,177.243,31.033,141.73,0.986409,-1,-1,-1
322,-1,203.693,211.609,27.113,82.142,0.98403,-1,-1,-1
322,-1,64.5749,177.975,36.4551,135.723,0.953566,-1,-1,-1
322,-1,339.418,223.111,21.716,42.875,0.931872,-1,-1,-1
322,-1,6.80018,203.59,39.4085,124.155,0.91714,-1,-1,-1
322,-1,297.412,232.111,15.777,34.264,0.734394,-1,-1,-1
322,-1,7.24366,176.191,33.7217,63.368,0.713032,-1,-1,-1
323,-1,96.0891,160.191,52.9029,160.959,0.989738,-1,-1,-1
323,-1,141.45,181.42,38.407,127.937,0.983177,-1,-1,-1
323,-1,196.561,194.711,32.782,105.074,0.978685,-1,-1,-1
323,-1,46.2956,174.876,47.9262,150.329,0.977595,-1,-1,-1
323,-1,338.245,218.612,18.28,44.797,0.976475,-1,-1,-1
323,-1,291.611,226.652,18.308,36.574,0.798336,-1,-1,-1
323,-1,217.661,219.404,24.056,62.842,0.653058,-1,-1,-1
323,-1,256.684,224.039,17.484,39.101,0.652739,-1,-1,-1
324,-1,91.0798,160.32,55.0022,157.11,0.985115,-1,-1,-1
324,-1,36.8755,165.738,46.2132,148.609,0.984692,-1,-1,-1
324,-1,190.382,206.472,34.562,91.34,0.983603,-1,-1,-1
324,-1,126.683,176.034,47.265,138.619,0.974495,-1,-1,-1
324,-1,283.702,217.23,15.724,40.367,0.891082,-1,-1,-1
324,-1,328.284,215.464,19.223,48.646,0.831852,-1,-1,-1
324,-1,258.77,224.976,15.376,34.071,0.785415,-1,-1,-1
324,-1,242.26,217.667,20.111,35.868,0.550605,-1,-1,-1
324,-1,273.291,223.309,14.708,33.561,0.532356,-1,-1,-1
325,-1,27.2205,170.708,53.6663,146.43,0.994452,-1,-1,-1
325,-1,84.1459,150.729,53.7871,180.613,0.988802,-1,-1,-1
325,-1,182.743,206.533,50.726,93.039,0.988472,-1,-1,-1
325,-1,126.499,173.236,39.54,138.372,0.963688,-1,-1,-1
325,-1,267.951,224.502,26.638,37.978,0.892058,-1,-1,-1
325,-1,284.558,220.156,16.067,37.469,0.882182,-1,-1,-1
325,-1,325.973,216.392,25.562,41.421,0.866858,-1,-1,-1
325,-1,259.56,220.445,19.527,33.97,0.802932,-1,-1,-1
326,-1,24.235,162.004,53.9185,160.492,0.995117,-1,-1,-1
326,-1,175.775,204.459,60.685,97.778,0.993,-1,-1,-1
326,-1,79.5763,153.417,56.7317,173.033,0.987,-1,-1,-1
326,-1,128.588,176.351,30.513,130.82,0.921807,-1,-1,-1
326,-1,325.225,220.7,26.506,41.218,0.906014,-1,-1,-1
326,-1,261.05,214.265,16.154,44.198,0.631436,-1,-1,-1
326,-1,272.64,214.106,14.379,42.796,0.579224,-1,-1,-1
326,-1,282.49,222.293,14.145,37.204,0.503085,-1,-1,-1
327,-1,74.9119,152.104,61.4691,165.147,0.995147,-1,-1,-1
327,-1,14.7736,160.164,55.4198,150.942,0.994839,-1,-1,-1
327,-1,181.041,189.845,34.421,107.001,0.984508,-1,-1,-1
327,-1,266.091,216.262,19.863,43.454,0.900535,-1,-1,-1
327,-1,201.516,214.111,33.344,79.214,0.865402,-1,-1,-1
327,-1,328.03,217.058,24.218,50.334,0.778537,-1,-1,-1
327,-1,608.766,204.771,19.944,64.942,0.778122,-1,-1,-1
327,-1,276.77,222.977,18.514,39.019,0.748549,-1,-1,-1
327,-1,116.318,162.937,33.732,148.165,0.647932,-1,-1,-1
328,-1,73.1712,154.534,66.4318,170.737,0.996563,-1,-1,-1
328,-1,12.3815,169.566,48.3382,161.352,0.994476,-1,-1,-1
328,-1,179.632,197.201,52.067,115.475,0.991168,-1,-1,-1
328,-1,265.158,223.826,30.805,40.178,0.940285,-1,-1,-1
328,-1,607.562,216.1,21.052,56.539,0.931118,-1,-1,-1
328,-1,325.166,219.021,21.753,50.293,0.698769,-1,-1,-1
328,-1,285.902,224.674,14.436,40.528,0.506203,-1,-1,-1
329,-1,67.5809,155.164,60.7641,176.723,0.99669,-1,-1,-1
329,-1,3.68173,166.069,56.4849,162.375,0.98579,-1,-1,-1
329,-1,177.755,201.117,47.994,107.85,0.981993,-1,-1,-1
329,-1,258.214,216.991,31.09,46.295,0.971085,-1,-1,-1
329,-1,597.369,208.545,26.211,66.668,0.938789,-1,-1,-1
329,-1,281.689,218.48,17.167,46.63,0.860557,-1,-1,-1
329,-1,325.981,219.911,24.122,49.714,0.836632,-1,-1,-1
329,-1,102.287,170.633,41.195,132.706,0.701016,-1,-1,-1
330,-1,5.2405,161.594,44.576,169.889,0.997384,-1,-1,-1
330,-1,60.1996,163.424,68.8944,165.625,0.996874,-1,-1,-1
330,-1,175.964,192.108,49.403,116.773,0.99578,-1,-1,-1
330,-1,266.635,222.104,22.037,42.301,0.959914,-1,-1,-1
330,-1,595.897,206.817,29.521,57.917,0.951574,-1,-1,-1
330,-1,242.395,220.755,15.699,47.667,0.787268,-1,-1,-1
330,-1,325.284,216.975,23.991,52.886,0.732681,-1,-1,-1
330,-1,282.633,218.405,15.845,46.225,0.642731,-1,-1,-1
331,-1,1.18437,166.674,42.0441,179.789,0.996298,-1,-1,-1
331,-1,50.6958,157.427,79.9582,170.603,0.995623,-1,-1,-1
331,-1,169.723,198.64,64.877,113.883,0.993731,-1,-1,-1
331,-1,263.842,225.778,24.405,45.295,0.95653,-1,-1,-1
331,-1,599.85,213.75,22.024,58.928,0.799103,-1,-1,-1
331,-1,279.416,225.239,16.88,45.441,0.68244,-1,-1,-1
332,-1,46.6793,148.753,63.8347,181.55,0.995615,-1,-1,-1
332,-1,168.048,195.898,51.556,126.717,0.991942,-1,-1,-1
332,-1,264.749,218.86,19.682,46.136,0.96933,-1,-1,-1
332,-1,598.087,205.707,21.562,55.909,0.835363,-1,-1,-1
332,-1,321.732,226.511,21.124,40.396,0.694807,-1,-1,-1
333,-1,42.3802,154.981,68.5038,187.142,0.996856,-1,-1,-1
333,-1,164,194.866,60.637,119.496,0.991163,-1,-1,-1
333,-1,265.92,221.536,18.276,44.558,0.964319,-1,-1,-1
333,-1,595.847,201.132,24.282,71.348,0.924057,-1,-1,-1
333,-1,319.11,217.837,24.981,51.421,0.64742,-1,-1,-1
334,-1,36.6852,155.473,61.1766,192.127,0.995437,-1,-1,-1
334,-1,170.406,189.615,54.805,133.31,0.992398,-1,-1,-1
334,-1,594.452,196.716,22.489,78.746,0.967118,-1,-1,-1
334,-1,265.653,225.764,18.352,41.207,0.933946,-1,-1,-1
334,-1,322.487,214.777,24.026,54.134,0.874101,-1,-1,-1
334,-1,235.061,218.262,14.679,49.324,0.635502,-1,-1,-1
335,-1,23.6165,153.293,62.6407,193.864,0.998504,-1,-1,-1
335,-1,158.454,195.57,58.85,124.564,0.997611,-1,-1,-1
335,-1,262.773,215.665,19.241,54.153,0.956617,-1,-1,-1
335,-1,596.012,188.78,22.841,82.438,0.908737,-1,-1,-1
335,-1,323.715,220.445,23.211,52.197,0.837266,-1,-1,-1
336,-1,23.542,152.728,61.1072,197.777,0.997946,-1,-1,-1
336,-1,158.152,193.521,63.703,133.203,0.996777,-1,-1,-1
336,-1,260.834,224,19.891,44.471,0.959157,-1,-1,-1
336,-1,593.124,198.6,29.94,67.301,0.945196,-1,-1,-1
336,-1,318.577,222.062,23.867,52.873,0.681735,-1,-1,-1
337,-1,19.7353,144.599,61.3876,209.566,0.998792,-1,-1,-1
337,-1,165.665,181.929,47.999,155.678,0.996955,-1,-1,-1
337,-1,262.008,223.537,16.217,44.532,0.968516,-1,-1,-1
337,-1,590.222,214.028,25.428,55.538,0.958999,-1,-1,-1
337,-1,322.61,219.637,23.996,53.116,0.897698,-1,-1,-1
338,-1,9.80603,146.215,62.5897,206.108,0.998365,-1,-1,-1
338,-1,152.136,181.392,63.01,150.415,0.996461,-1,-1,-1
338,-1,257.868,224.155,28.803,47.554,0.965287,-1,-1,-1
338,-1,590.617,209.182,19.778,57.125,0.946439,-1,-1,-1
338,-1,320.907,217.613,22.882,48.263,0.909711,-1,-1,-1
339,-1,4.72291,141.779,67.5427,211.403,0.997638,-1,-1,-1
339,-1,148.149,170.55,67.07,173.137,0.995976,-1,-1,-1
339,-1,591.351,209.534,17.666,49.16,0.941449,-1,-1,-1
339,-1,257.573,218.397,25.424,45.031,0.91384,-1,-1,-1
339,-1,323.621,220.215,18.495,43.655,0.902015,-1,-1,-1
339,-1,221.423,213.977,18.48,58.994,0.626117,-1,-1,-1
340,-1,0,143.08,69.8959,213.456,0.996827,-1,-1,-1
340,-1,150.466,181.55,55.605,156.667,0.996477,-1,-1,-1
340,-1,320.821,222.408,21.365,46.506,0.950757,-1,-1,-1
340,-1,258.498,222.404,25.116,46.115,0.935911,-1,-1,-1
340,-1,588.18,203.614,21.937,50.949,0.917275,-1,-1,-1
341,-1,257.548,216.75,30.351,47.812,0.980774,-1,-1,-1
341,-1,0.62019,136.456,60.4421,234.007,0.979467,-1,-1,-1
341,-1,140.45,169.009,63.248,144.521,0.978905,-1,-1,-1
341,-1,587.793,210.037,27.855,53.104,0.975779,-1,-1,-1
341,-1,319.841,224.742,20.384,41.694,0.915667,-1,-1,-1
342,-1,135.939,162.157,71.15,183.406,0.994289,-1,-1,-1
342,-1,580.365,190.176,37.062,74.127,0.979531,-1,-1,-1
342,-1,257.279,217.14,30.762,49.457,0.97928,-1,-1,-1
342,-1,322.771,226.361,21.376,42.584,0.857864,-1,-1,-1
342,-1,0,123.317,56.6005,219.609,0.836451,-1,-1,-1
342,-1,223.255,224.938,21.702,37.566,0.672833,-1,-1,-1
343,-1,119.992,167.742,91.8,141.522,0.993461,-1,-1,-1
343,-1,260.243,220.975,28.66,44.135,0.975359,-1,-1,-1
343,-1,589.751,199.598,26.682,66.369,0.952581,-1,-1,-1
343,-1,6.04491,234.996,38.7718,125.144,0.950612,-1,-1,-1
343,-1,322.742,216.731,27.882,53.951,0.831025,-1,-1,-1
343,-1,1.47513,134.06,47.9353,159.344,0.731191,-1,-1,-1
344,-1,129.019,167.95,66.667,183.712,0.99109,-1,-1,-1
344,-1,258.344,219.532,29.561,44.341,0.980799,-1,-1,-1
344,-1,1.86782,238.885,34.6564,113.076,0.958947,-1,-1,-1
344,-1,593.013,199.191,25.579,67.544,0.951194,-1,-1,-1
344,-1,319.08,224.909,33.594,42.215,0.890781,-1,-1,-1
345,-1,123.593,147.648,78.631,213.35,0.997238,-1,-1,-1
345,-1,262.574,214.689,19.371,52.656,0.951948,-1,-1,-1
345,-1,323.094,218.659,25.106,51.982,0.820134,-1,-1,-1
345,-1,593.845,176.805,30.022,82.084,0.814374,-1,-1,-1
346,-1,114.27,149.624,73.861,221.469,0.994004,-1,-1,-1
346,-1,253.272,212.812,30.908,40.306,0.97691,-1,-1,-1
346,-1,585.805,194.83,33.327,61.784,0.937388,-1,-1,-1
346,-1,322.69,218.44,26.997,49.105,0.809514,-1,-1,-1
346,-1,161.847,195.158,49.29,151.5,0.602784,-1,-1,-1
347,-1,97.1344,139.137,103.483,218.713,0.994891,-1,-1,-1
347,-1,259.706,211.597,19.654,44.566,0.975503,-1,-1,-1
347,-1,587.297,185.075,27.694,64.691,0.920081,-1,-1,-1
347,-1,217.364,212.862,17.882,45.725,0.730498,-1,-1,-1
347,-1,330.382,207.566,32.778,49.238,0.707367,-1,-1,-1
348,-1,90.772,136.078,98.481,226.012,0.995799,-1,-1,-1
348,-1,258.727,211.291,21.628,50.723,0.978353,-1,-1,-1
348,-1,590.339,190.038,25.057,60.504,0.914536,-1,-1,-1
348,-1,220.502,212.357,16.38,48.529,0.83087,-1,-1,-1
349,-1,79.2541,127.395,103.968,247.785,0.997496,-1,-1,-1
349,-1,258.119,213.987,27.881,50.381,0.975408,-1,-1,-1
349,-1,592.044,189.819,33.132,63.175,0.952723,-1,-1,-1
349,-1,330.561,214.592,23.099,49.502,0.719633,-1,-1,-1
350,-1,64.602,113.88,112.814,280.332,0.997659,-1,-1,-1
350,-1,256.557,209.819,22.739,53.263,0.981162,-1,-1,-1
350,-1,590.049,180.443,29.83,74.476,0.963952,-1,-1,-1
350,-1,329.916,211.584,22.415,52.845,0.658672,-1,-1,-1
351,-1,40.3776,136.528,116.751,236.429,0.996533,-1,-1,-1
351,-1,251.074,217.115,31.886,49.983,0.978224,-1,-1,-1
351,-1,589.604,191.286,27.134,67.629,0.952677,-1,-1,-1
351,-1,327.255,213.018,28.548,57.865,0.881368,-1,-1,-1
352,-1,26.387,99.6558,118.306,328.635,0.996398,-1,-1,-1
352,-1,257.778,216.245,31.625,48.963,0.972843,-1,-1,-1
352,-1,594.134,199.852,28.603,61.843,0.961008,-1,-1,-1
352,-1,170.279,198.267,28.426,77.708,0.848471,-1,-1,-1
352,-1,330.151,220.922,24.422,47.691,0.615716,-1,-1,-1
353,-1,6.52715,113.888,135.049,309.312,0.998072,-1,-1,-1
353,-1,255.555,215.55,26.877,52.245,0.966475,-1,-1,-1
353,-1,592.661,201.958,23.63,54.938,0.958193,-1,-1,-1
353,-1,171.583,202.372,22.929,63.721,0.946939,-1,-1,-1
353,-1,327.201,213.383,26.159,59.934,0.858762,-1,-1,-1
353,-1,157.061,194.916,25.816,73.895,0.645531,-1,-1,-1
353,-1,184.632,181.255,24.059,99.556,0.630661,-1,-1,-1
354,-1,4.68464,100.14,116.721,375.33,0.999123,-1,-1,-1
354,-1,249.75,221.587,32.123,52.197,0.974777,-1,-1,-1
354,-1,589.313,200.051,26.454,60.728,0.966617,-1,-1,-1
354,-1,159.622,186.348,35.189,87.183,0.928744,-1,-1,-1
354,-1,330.331,215.319,23.989,56.637,0.870617,-1,-1,-1
354,-1,204.277,212.96,12.997,59.488,0.511008,-1,-1,-1
354,-1,185.697,195.987,20.11,91.393,0.503323,-1,-1,-1
355,-1,3.13384,120.626,92.9962,350.276,0.997617,-1,-1,-1
355,-1,586.563,195.199,30.621,58.059,0.965057,-1,-1,-1
355,-1,251.233,222.471,31.478,49.863,0.962796,-1,-1,-1
355,-1,160.732,200.938,28.215,66.627,0.954772,-1,-1,-1
355,-1,202.208,216.331,14.692,58.909,0.666712,-1,-1,-1
355,-1,181.854,197.467,20.286,79.304,0.653498,-1,-1,-1
355,-1,334.321,218.651,22.588,45.63,0.617232,-1,-1,-1
356,-1,6.18824,73.3365,82.1425,269.962,0.989285,-1,-1,-1
356,-1,152.958,205.377,38.666,61.703,0.980021,-1,-1,-1
356,-1,593.045,204.343,28.57,49.447,0.968479,-1,-1,-1
356,-1,258.217,216.177,26.944,52.115,0.961285,-1,-1,-1
356,-1,179.247,203.673,21.71,75.027,0.732904,-1,-1,-1
356,-1,201.292,218.087,14.84,59.136,0.728738,-1,-1,-1
357,-1,591.083,212.179,27.581,47.9,0.977293,-1,-1,-1
357,-1,169.684,200.696,25.492,74.27,0.965772,-1,-1,-1
357,-1,259.353,212.07,22.262,57.233,0.950971,-1,-1,-1
357,-1,155.387,207.588,25.007,58.336,0.906289,-1,-1,-1
357,-1,5.93948,83.179,70.5033,225.664,0.831439,-1,-1,-1
357,-1,183.887,195.419,22.609,87.441,0.684788,-1,-1,-1
357,-1,8.0017,139.444,140.308,310.765,0.639409,-1,-1,-1
357,-1,575.562,202.951,30.354,53.198,0.578438,-1,-1,-1
358,-1,260.048,219.264,21.386,46.037,0.964112,-1,-1,-1
358,-1,159.864,191.648,33.532,83.674,0.962283,-1,-1,-1
358,-1,593.097,204.424,26.267,56.936,0.953681,-1,-1,-1
358,-1,250.194,221.334,18.901,45.126,0.860166,-1,-1,-1
358,-1,197.242,207.413,18.679,70.499,0.795446,-1,-1,-1
358,-1,104.566,214.943,28.747,64.355,0.571176,-1,-1,-1
359,-1,157.153,194.821,36.493,79.988,0.985991,-1,-1,-1
359,-1,258.449,205.666,22.099,53.872,0.956814,-1,-1,-1
359,-1,588.856,190.619,26.043,64.646,0.947208,-1,-1,-1
359,-1,328.956,211.885,24.816,51.141,0.507965,-1,-1,-1
360,-1,159.103,188.833,37.055,90.153,0.987361,-1,-1,-1
360,-1,590.038,194.925,23.706,58.752,0.963541,-1,-1,-1
360,-1,260.662,206.827,22.113,56.191,0.962527,-1,-1,-1
361,-1,156.467,201.792,30.748,67.447,0.983832,-1,-1,-1
361,-1,250.6,206.698,27.303,49.817,0.962161,-1,-1,-1
361,-1,590.659,195.978,25.03,57.297,0.931806,-1,-1,-1
361,-1,265.324,209.844,26.327,53.542,0.794543,-1,-1,-1
361,-1,190.14,191.308,22.982,81.671,0.681468,-1,-1,-1
361,-1,103.841,207.658,28.677,69.379,0.67523,-1,-1,-1
362,-1,154.04,193.876,32.47,83.239,0.988291,-1,-1,-1
362,-1,258.535,208.317,25.542,51.348,0.957588,-1,-1,-1
362,-1,597.084,199.937,21.036,50.424,0.829835,-1,-1,-1
362,-1,585.754,195.793,20.343,50.686,0.562706,-1,-1,-1
363,-1,154.673,193.376,29.376,86.347,0.98861,-1,-1,-1
363,-1,257.834,208.547,29.625,56.028,0.961027,-1,-1,-1
363,-1,589.716,200.46,19.654,53.072,0.917749,-1,-1,-1
363,-1,575.215,203.761,24.158,55.593,0.773014,-1,-1,-1
363,-1,200.923,216.238,16.648,57.725,0.736616,-1,-1,-1
363,-1,334.236,206.42,28.255,59.055,0.609795,-1,-1,-1
364,-1,151.761,197.455,28.657,75.898,0.983932,-1,-1,-1
364,-1,258.952,211.939,25.163,50.781,0.940127,-1,-1,-1
364,-1,195.74,203.758,19.973,73.798,0.897797,-1,-1,-1
364,-1,586.366,192.212,21.819,66.432,0.70143,-1,-1,-1
365,-1,152.622,196.66,25.752,78.887,0.984717,-1,-1,-1
365,-1,595.34,203.737,22.328,54.059,0.971876,-1,-1,-1
365,-1,193.575,204.251,22.531,79.291,0.94846,-1,-1,-1
365,-1,260.759,210.996,22.155,53.217,0.914399,-1,-1,-1
365,-1,578.184,202.626,22.451,52.895,0.809714,-1,-1,-1
365,-1,177.464,199.473,22.126,81.887,0.71096,-1,-1,-1
365,-1,567.539,209.851,20.993,50.873,0.634141,-1,-1,-1
366,-1,141.073,190.547,45.935,103.004,0.981146,-1,-1,-1
366,-1,259.713,209.487,20.452,49.23,0.962676,-1,-1,-1
366,-1,591.534,210.387,21.72,48.145,0.952645,-1,-1,-1
366,-1,185.888,190.586,28.215,94.433,0.934059,-1,-1,-1
366,-1,203.977,199.185,19.48,78.285,0.614774,-1,-1,-1
366,-1,581.689,205.632,19.172,49.688,0.553802,-1,-1,-1
367,-1,147.815,196.385,29.147,86.413,0.989497,-1,-1,-1
367,-1,259.444,210.191,23.08,55.916,0.968737,-1,-1,-1
367,-1,194.503,204.611,24.726,76.882,0.937354,-1,-1,-1
367,-1,585.849,197.231,27.87,52.739,0.911609,-1,-1,-1
367,-1,181.315,183.374,26.466,113.227,0.839057,-1,-1,-1
367,-1,572.928,198.977,22.014,52.406,0.680211,-1,-1,-1
368,-1,143.221,187.837,34.739,96.36,0.983791,-1,-1,-1
368,-1,257.508,213.44,22.6,51.995,0.964663,-1,-1,-1
368,-1,586.806,198.095,26.062,53.971,0.954845,-1,-1,-1
368,-1,186.642,195.587,25.857,98.795,0.946723,-1,-1,-1
368,-1,573.604,198.017,23.992,54.771,0.706766,-1,-1,-1
369,-1,144.704,180.038,34.658,106.08,0.984553,-1,-1,-1
369,-1,582.343,197.985,27.964,52.975,0.961106,-1,-1,-1
369,-1,183.526,180.134,29.818,108.509,0.948727,-1,-1,-1
369,-1,258.782,206.799,25.635,57.303,0.946399,-1,-1,-1
369,-1,517.223,212.253,21.648,35.735,0.935868,-1,-1,-1
369,-1,568.087,206.123,26.855,52.618,0.540408,-1,-1,-1
370,-1,183.217,194.343,28.184,99.438,0.977461,-1,-1,-1
370,-1,587.879,201.556,25.863,55.596,0.970772,-1,-1,-1
370,-1,144.153,182.501,30.437,105.354,0.970766,-1,-1,-1
370,-1,255.408,211.469,41.305,57.55,0.960642,-1,-1,-1
370,-1,513.512,202.964,27.487,47.214,0.628698,-1,-1,-1
370,-1,345.142,208.312,29.351,51.868,0.577406,-1,-1,-1
371,-1,135.136,181.851,38.79,111.217,0.975822,-1,-1,-1
371,-1,587.934,210.489,27.117,53.44,0.974806,-1,-1,-1
371,-1,184.955,188.938,29.778,109.915,0.972468,-1,-1,-1
371,-1,255.412,209.724,30.926,60.63,0.955717,-1,-1,-1
371,-1,509.627,211.617,25.453,40.454,0.689569,-1,-1,-1
371,-1,280.134,213.777,16.67,52.676,0.664147,-1,-1,-1
372,-1,183.488,195.512,32.424,97.643,0.972641,-1,-1,-1
372,-1,137.322,191.913,35.425,103.668,0.964002,-1,-1,-1
372,-1,261.146,210.742,27.444,61.138,0.951721,-1,-1,-1
372,-1,586.746,217.977,30.205,34.564,0.950325,-1,-1,-1
372,-1,226.614,223.668,18.659,50.251,0.841902,-1,-1,-1
372,-1,278.079,217.34,16.78,48.941,0.836296,-1,-1,-1
373,-1,134.359,188.371,38.733,107.954,0.981964,-1,-1,-1
373,-1,180.531,194.072,34.683,100.668,0.977473,-1,-1,-1
373,-1,590.909,211.035,19.447,44.579,0.953652,-1,-1,-1
373,-1,264.145,213.13,23.965,56.888,0.93633,-1,-1,-1
373,-1,280.083,214.077,18.602,51.158,0.871309,-1,-1,-1
373,-1,226.676,222.608,12.748,48.147,0.826717,-1,-1,-1
373,-1,521.677,212.304,21.5,27.822,0.702627,-1,-1,-1
374,-1,127.684,189.589,52.21,103.983,0.973987,-1,-1,-1
374,-1,268.217,223.254,21.078,50.957,0.97225,-1,-1,-1
374,-1,182.59,207.706,34.788,88.72,0.968083,-1,-1,-1
374,-1,224.751,218.805,17.401,49.25,0.922301,-1,-1,-1
374,-1,598.084,212,21.488,43.356,0.878046,-1,-1,-1
374,-1,234.587,213.581,16.614,52.281,0.706921,-1,-1,-1
374,-1,585.179,212.67,22.523,44.281,0.506154,-1,-1,-1
375,-1,128.251,182.101,39.052,113.247,0.98052,-1,-1,-1
375,-1,263.97,213.516,28.716,55.078,0.978391,-1,-1,-1
375,-1,173.401,195.083,39.966,104.227,0.976574,-1,-1,-1
375,-1,597.438,208.15,22.343,46.25,0.950051,-1,-1,-1
375,-1,224.566,213.619,16.733,47.139,0.877217,-1,-1,-1
375,-1,235.1,218.42,16.637,43.966,0.659141,-1,-1,-1
376,-1,125.202,179.986,38.113,116.006,0.988965,-1,-1,-1
376,-1,167.331,184.287,39.403,121.184,0.984619,-1,-1,-1
376,-1,265.635,213.718,27.83,53.823,0.973787,-1,-1,-1
376,-1,223.887,210.286,18.044,54.918,0.843488,-1,-1,-1
376,-1,595.501,203.86,16.971,40.819,0.839886,-1,-1,-1
376,-1,529.187,202.963,26.102,48.195,0.773901,-1,-1,-1
376,-1,354.974,205.167,26.204,56.071,0.537675,-1,-1,-1
377,-1,167.56,190.822,34.956,120.83,0.988718,-1,-1,-1
377,-1,122.045,185.907,38.212,113.56,0.977244,-1,-1,-1
377,-1,270.527,214.356,21.602,49.781,0.972488,-1,-1,-1
377,-1,595.479,202.244,21.403,54.81,0.918771,-1,-1,-1
377,-1,221.402,220.317,22.677,48.237,0.90183,-1,-1,-1
378,-1,131.471,184.288,39.94,126.389,0.974716,-1,-1,-1
378,-1,164.221,191.368,31.623,115.042,0.970603,-1,-1,-1
378,-1,270.502,214.884,21.726,51.201,0.967275,-1,-1,-1
378,-1,216.611,221.783,24.67,51.264,0.915518,-1,-1,-1
378,-1,232.137,211.246,16.38,42.839,0.802527,-1,-1,-1
378,-1,601.283,216.015,21.815,38.763,0.70071,-1,-1,-1
378,-1,363.699,215.699,21.265,51.028,0.610439,-1,-1,-1
379,-1,119.275,190.788,41.157,113.527,0.976346,-1,-1,-1
379,-1,272.83,221.74,21.097,52.419,0.967351,-1,-1,-1
379,-1,228.846,219.052,18.859,43.254,0.934682,-1,-1,-1
379,-1,171.529,195.481,18.905,109.512,0.909213,-1,-1,-1
379,-1,597.735,208.251,22.48,55.447,0.894745,-1,-1,-1
379,-1,214.141,215.148,20.024,56.196,0.774886,-1,-1,-1
379,-1,253.861,217.8,24.305,55.557,0.523637,-1,-1,-1
380,-1,159.827,186.267,35.697,121.05,0.979278,-1,-1,-1
380,-1,121.674,181.481,39.182,118.239,0.976858,-1,-1,-1
380,-1,271.475,219.245,19.881,48.205,0.957928,-1,-1,-1
380,-1,213.915,223.472,23.913,47.278,0.930753,-1,-1,-1
380,-1,224.117,212.53,24.707,48.909,0.878415,-1,-1,-1
380,-1,283.107,212.113,17.223,58.788,0.868312,-1,-1,-1
380,-1,598.377,186.637,24.646,68.258,0.66168,-1,-1,-1
380,-1,256.072,211.049,25.133,54.983,0.517238,-1,-1,-1
381,-1,111.152,185.325,41.552,128.889,0.982548,-1,-1,-1
381,-1,155.472,175.638,36.183,132.625,0.978486,-1,-1,-1
381,-1,270.576,214.775,24.425,50.796,0.96031,-1,-1,-1
381,-1,214.552,221.371,27.371,51.296,0.949323,-1,-1,-1
381,-1,262.096,216.903,17.019,52.5,0.831396,-1,-1,-1
381,-1,234.694,209.542,27.203,54.19,0.553114,-1,-1,-1
382,-1,152.366,178.349,34.339,136.128,0.979874,-1,-1,-1
382,-1,268.822,215.995,21.873,52.568,0.966425,-1,-1,-1
382,-1,107.653,181.782,42.763,129.737,0.957904,-1,-1,-1
382,-1,232.789,222.108,16.812,41.576,0.903724,-1,-1,-1
382,-1,283.164,212.175,17.778,57.402,0.757773,-1,-1,-1
382,-1,599.263,206.928,20.315,46.994,0.583452,-1,-1,-1
383,-1,109.639,182.261,38.175,124.184,0.986099,-1,-1,-1
383,-1,148.086,187.449,32.709,118.677,0.967744,-1,-1,-1
383,-1,279.156,220.842,18.38,42.742,0.941681,-1,-1,-1
383,-1,265.491,219.662,17.65,48.67,0.862248,-1,-1,-1
383,-1,293.809,212.869,16.995,50.401,0.764877,-1,-1,-1
384,-1,107.556,170.801,38.685,143.457,0.982732,-1,-1,-1
384,-1,144.619,192.693,35.407,128.544,0.980989,-1,-1,-1
384,-1,277.807,214.362,25.477,57.361,0.953069,-1,-1,-1
384,-1,227.692,215.517,24.33,53.759,0.83965,-1,-1,-1
384,-1,179.324,176.592,28.805,92.591,0.821475,-1,-1,-1
384,-1,264.961,200.011,18.011,59.718,0.773078,-1,-1,-1
384,-1,600.557,203.956,20.532,51.977,0.703391,-1,-1,-1
385,-1,100.565,169.672,46.544,155.098,0.985646,-1,-1,-1
385,-1,136.416,179.529,42.122,141.114,0.982055,-1,-1,-1
385,-1,279.495,219.193,23.496,54.169,0.949456,-1,-1,-1
385,-1,188.988,203.702,17.467,55.242,0.860372,-1,-1,-1
385,-1,603.422,219.804,23.319,40.805,0.809956,-1,-1,-1
385,-1,225.792,219.08,23.276,46.521,0.798089,-1,-1,-1
385,-1,177.802,191.124,17.77,76.26,0.585738,-1,-1,-1
385,-1,254.885,209.065,33.889,53.987,0.505681,-1,-1,-1
386,-1,129.697,179.226,46.515,142.712,0.977145,-1,-1,-1
386,-1,285.215,220.794,21.605,48.604,0.964688,-1,-1,-1
386,-1,189.416,197.311,21.092,68.047,0.92689,-1,-1,-1
386,-1,109.102,179.295,39.186,142.313,0.911713,-1,-1,-1
386,-1,235.683,225.315,15.135,48.109,0.871282,-1,-1,-1
386,-1,603.553,214.18,19.769,49.121,0.804785,-1,-1,-1
386,-1,350.384,213.663,19.579,61.656,0.519193,-1,-1,-1
387,-1,125.484,184.403,47.584,148.191,0.98589,-1,-1,-1
387,-1,276.363,215.219,45.544,62.113,0.967422,-1,-1,-1
387,-1,106.704,176.532,36.943,140.567,0.846487,-1,-1,-1
387,-1,236.033,224.206,15.109,47.122,0.624067,-1,-1,-1
387,-1,185.822,177.575,30.904,87.191,0.543559,-1,-1,-1
387,-1,345.583,204.159,23.006,71.053,0.51822,-1,-1,-1
388,-1,127.127,178.849,49.709,143.43,0.985669,-1,-1,-1
388,-1,187.089,206.498,27.026,60.526,0.959626,-1,-1,-1
388,-1,291.595,215.799,23.346,55.56,0.94919,-1,-1,-1
388,-1,236.804,222.497,18.242,41.56,0.879905,-1,-1,-1
388,-1,274.248,217.186,22.369,56.359,0.786983,-1,-1,-1
388,-1,104.051,175.747,35.915,136.093,0.726631,-1,-1,-1
389,-1,122.988,180.063,49.831,155.946,0.985535,-1,-1,-1
389,-1,300.18,213.007,23.648,60.357,0.964046,-1,-1,-1
389,-1,197.291,213.214,22.224,48.449,0.954191,-1,-1,-1
389,-1,271.917,214.955,40.214,62.155,0.907265,-1,-1,-1
389,-1,189.084,207.808,18.432,42.918,0.729517,-1,-1,-1
389,-1,366.842,208.437,19.134,58.841,0.595029,-1,-1,-1
389,-1,239.295,223.118,14.915,45.561,0.516909,-1,-1,-1
390,-1,115.019,170.755,52.269,166.39,0.9952,-1,-1,-1
390,-1,291.144,222.748,25.471,52.179,0.972966,-1,-1,-1
390,-1,187.825,206.732,31.815,58.346,0.925723,-1,-1,-1
390,-1,360.403,208.678,20.345,64.763,0.78514,-1,-1,-1
390,-1,558.69,214.156,23.273,38.443,0.715646,-1,-1,-1
390,-1,276.802,213.481,15.702,58.696,0.599695,-1,-1,-1
390,-1,286.762,211.301,16.062,51.415,0.560308,-1,-1,-1
391,-1,102.607,169.632,54.541,165.962,0.99583,-1,-1,-1
391,-1,198.893,199.362,22.681,62.152,0.957013,-1,-1,-1
391,-1,295.368,211.693,23.568,63.599,0.930997,-1,-1,-1
391,-1,286.6,219.601,18.565,48.546,0.841823,-1,-1,-1
391,-1,241.412,219.192,16.571,50.521,0.750226,-1,-1,-1
391,-1,361.887,209.52,18.981,59.73,0.735834,-1,-1,-1
391,-1,188.608,199.993,19.958,56.839,0.649026,-1,-1,-1
391,-1,248.339,215.908,27.629,55.107,0.514222,-1,-1,-1
392,-1,100.89,164.579,52.432,168.576,0.990899,-1,-1,-1
392,-1,196.617,207.585,15.869,45.546,0.93893,-1,-1,-1
392,-1,291.802,219.224,23.147,57.953,0.938825,-1,-1,-1
392,-1,361.937,211.721,21.092,62.508,0.91489,-1,-1,-1
392,-1,305.736,221.596,14.94,44.696,0.913513,-1,-1,-1
392,-1,248.48,223.147,15.755,50.817,0.869197,-1,-1,-1
392,-1,277.28,217.745,14.169,55.379,0.805026,-1,-1,-1
392,-1,183.432,207.389,15.915,47.227,0.605953,-1,-1,-1
393,-1,191.142,213.541,31.186,49.49,0.934156,-1,-1,-1
393,-1,291.036,209.934,24.892,63.209,0.91666,-1,-1,-1
393,-1,81.0335,162.653,78.8855,146.947,0.902404,-1,-1,-1
393,-1,307.65,211.33,16.803,55.755,0.899936,-1,-1,-1
393,-1,371.005,202.232,25.92,63.936,0.872242,-1,-1,-1
393,-1,246.837,221.661,14.753,44.202,0.685552,-1,-1,-1
393,-1,181.401,212.479,25.175,36.055,0.645048,-1,-1,-1
393,-1,473.198,216.099,22.588,32.574,0.563403,-1,-1,-1
394,-1,80.6417,165.898,64.2533,174.778,0.987563,-1,-1,-1
394,-1,248.35,215.402,21.441,59.351,0.946542,-1,-1,-1
394,-1,291.899,213.731,17.93,56.618,0.933095,-1,-1,-1
394,-1,300.749,222.995,19.082,53.2,0.897099,-1,-1,-1
394,-1,200.499,205.905,15.769,47.755,0.854074,-1,-1,-1
394,-1,209.32,212.789,18.361,49.541,0.792168,-1,-1,-1
395,-1,69.6623,157.918,68.3847,180.662,0.972235,-1,-1,-1
395,-1,295.502,212.167,15.462,55.194,0.934696,-1,-1,-1
395,-1,212.293,212.382,19.773,46.309,0.911571,-1,-1,-1
395,-1,257.479,218.471,21.096,49.543,0.862697,-1,-1,-1
395,-1,370.974,207.922,26.154,57.823,0.860452,-1,-1,-1
395,-1,313.417,217.859,16.813,55.955,0.839644,-1,-1,-1
395,-1,284.338,212.955,18.783,59.404,0.837812,-1,-1,-1
395,-1,199.966,207.94,16.031,50.038,0.590572,-1,-1,-1
396,-1,57.8347,165.292,59.9843,154.667,0.971261,-1,-1,-1
396,-1,291.133,212.654,19.571,53.673,0.945159,-1,-1,-1
396,-1,252.376,214.832,26.073,50.993,0.865434,-1,-1,-1
396,-1,210.715,209.878,19.77,53.168,0.857635,-1,-1,-1
396,-1,310.58,218.385,16.238,57.211,0.855385,-1,-1,-1
396,-1,411.412,207.025,25.074,58.986,0.548796,-1,-1,-1
397,-1,54.6291,165.207,75.7789,172.09,0.988673,-1,-1,-1
397,-1,314.771,210.813,19.93,52.956,0.916856,-1,-1,-1
397,-1,202.37,197.505,28.839,65.529,0.91229,-1,-1,-1
397,-1,283.278,210.744,28.198,64.488,0.911988,-1,-1,-1
397,-1,417.754,213.24,21.347,52.573,0.842275,-1,-1,-1
397,-1,255.205,218.054,15.226,46.63,0.807637,-1,-1,-1
397,-1,262.392,210.421,17.727,63.054,0.785917,-1,-1,-1
397,-1,243.622,210.014,15.954,60.426,0.67158,-1,-1,-1
397,-1,381.933,204.504,20.943,65.312,0.508049,-1,-1,-1
398,-1,285.346,206.991,28.161,62.127,0.918575,-1,-1,-1
398,-1,42.2693,155.175,71.0467,173.259,0.876001,-1,-1,-1
398,-1,258.307,212.889,17.578,53.472,0.755465,-1,-1,-1
398,-1,315.329,215.194,16.125,55.738,0.736813,-1,-1,-1
398,-1,203.098,184.157,24.603,68.236,0.656572,-1,-1,-1
398,-1,494.631,216.643,20.273,31.51,0.524762,-1,-1,-1
399,-1,36.2576,152.639,76.1254,189.447,0.979013,-1,-1,-1
399,-1,289.246,207.875,30.442,64.593,0.935537,-1,-1,-1
399,-1,253.184,222.311,28.722,46.917,0.900703,-1,-1,-1
399,-1,211.332,202.756,20.142,51.103,0.888545,-1,-1,-1
399,-1,313.807,214.541,15.253,54.066,0.875963,-1,-1,-1
399,-1,191.023,203.975,29.711,56.017,0.688588,-1,-1,-1
399,-1,388.12,206.663,22.707,62.301,0.617327,-1,-1,-1
399,-1,495.01,219.021,19.378,30.243,0.573647,-1,-1,-1
400,-1,29.5611,151.462,83.6169,208.907,0.989756,-1,-1,-1
400,-1,315.594,218.407,20.135,57.947,0.952614,-1,-1,-1
400,-1,289.623,217.692,16.107,53.199,0.927796,-1,-1,-1
400,-1,301.036,209.288,20.211,57.697,0.853274,-1,-1,-1
400,-1,261.711,219.102,14.722,49.318,0.706972,-1,-1,-1
400,-1,252.774,214.645,15.659,54.444,0.639492,-1,-1,-1
400,-1,389.351,197.1,24.269,70.556,0.590774,-1,-1,-1
400,-1,412.124,204.441,19.506,63.105,0.588039,-1,-1,-1
401,-1,32.018,163.31,67.5449,204.624,0.979661,-1,-1,-1
401,-1,280.669,212.173,33.526,55.141,0.974681,-1,-1,-1
401,-1,315.702,222.964,18.355,54.04,0.840195,-1,-1,-1
401,-1,428.02,213.046,19.462,55.819,0.665254,-1,-1,-1
401,-1,331.805,222.117,14.615,43.813,0.527949,-1,-1,-1
402,-1,4.90618,133.49,93.2951,238.303,0.996124,-1,-1,-1
402,-1,291.405,210.243,33.311,57.445,0.960279,-1,-1,-1
402,-1,327.109,220.603,16.869,51.202,0.902852,-1,-1,-1
402,-1,495.967,217.18,28.434,26.792,0.728304,-1,-1,-1
402,-1,395.69,203.956,22.024,65.668,0.662485,-1,-1,-1
402,-1,288.714,218.236,13.828,45.48,0.648325,-1,-1,-1
402,-1,197.75,207.137,22.67,55.006,0.516666,-1,-1,-1
403,-1,10.5842,122.584,78.0916,248.745,0.991025,-1,-1,-1
403,-1,298.404,212.762,18.672,51.403,0.951559,-1,-1,-1
403,-1,328.826,213.838,18.508,57.705,0.927413,-1,-1,-1
403,-1,430.581,199.312,23.361,64.359,0.884473,-1,-1,-1
403,-1,312.674,218.776,16.813,50.394,0.824341,-1,-1,-1
403,-1,256.917,210.353,14.104,52.982,0.585575,-1,-1,-1
403,-1,233.947,205.228,16.028,55.41,0.581067,-1,-1,-1
403,-1,263.7,217.212,23.384,52.727,0.577854,-1,-1,-1
403,-1,280.988,213.722,28.503,59.155,0.565935,-1,-1,-1
403,-1,401.764,201.458,21.622,72.246,0.528703,-1,-1,-1
403,-1,244.583,207.495,14.957,54.396,0.51898,-1,-1,-1
404,-1,2.30994,115.59,83.1626,272.333,0.997093,-1,-1,-1
404,-1,294.671,212.34,21.726,55.405,0.974213,-1,-1,-1
404,-1,433.161,204.85,24.52,60.916,0.937568,-1,-1,-1
404,-1,307.21,211.948,19.878,52.187,0.820671,-1,-1,-1
404,-1,329.545,215.396,18.503,51.145,0.73537,-1,-1,-1
404,-1,201.506,203.212,19.584,53.527,0.664381,-1,-1,-1
404,-1,255.674,223.467,16.301,44.455,0.593419,-1,-1,-1
405,-1,2.01123,110.076,87.7107,285.504,0.996985,-1,-1,-1
405,-1,297.44,208.541,17.763,56.859,0.969053,-1,-1,-1
405,-1,439.221,209.905,24.38,63.575,0.943182,-1,-1,-1
405,-1,328.783,222.303,15.737,43.803,0.923724,-1,-1,-1
405,-1,401.789,206.193,23.361,67.325,0.846941,-1,-1,-1
405,-1,196.68,200.712,24.189,62.974,0.824153,-1,-1,-1
405,-1,312.772,214.138,17.872,53.97,0.654214,-1,-1,-1
405,-1,289.397,217.619,15.998,52.428,0.62449,-1,-1,-1
405,-1,418.519,199.331,23.03,70.888,0.546475,-1,-1,-1
406,-1,0.33696,118.342,77.5443,275.034,0.997097,-1,-1,-1
406,-1,442.246,207.181,24.404,61.035,0.955141,-1,-1,-1
406,-1,326.754,223.502,17.004,47.199,0.938794,-1,-1,-1
406,-1,302.446,209.737,17.644,57.03,0.928657,-1,-1,-1
406,-1,202.252,202.054,16.817,53.089,0.863146,-1,-1,-1
406,-1,393.898,197.734,26.134,81.964,0.829801,-1,-1,-1
406,-1,290.35,218.208,15.411,56.611,0.815164,-1,-1,-1
406,-1,276.883,218.368,13.02,46.538,0.736193,-1,-1,-1
406,-1,414.241,204.713,23.559,69.048,0.660845,-1,-1,-1
407,-1,6.12857,150.444,61.5956,255.253,0.996274,-1,-1,-1
407,-1,300.683,210.433,16.891,59.536,0.937471,-1,-1,-1
407,-1,433.492,208.672,22.938,68.13,0.914062,-1,-1,-1
407,-1,328.283,222.294,16.877,51.155,0.912084,-1,-1,-1
407,-1,265.285,222.528,13.183,47.653,0.733087,-1,-1,-1
407,-1,409.107,197.504,26.125,82.155,0.64808,-1,-1,-1
407,-1,282.138,215.365,14.518,59.513,0.576539,-1,-1,-1
407,-1,598.774,206.992,32.327,54.065,0.52006,-1,-1,-1
408,-1,1.6985,101.794,67.3193,318.943,0.97563,-1,-1,-1
408,-1,437.792,202.726,28.477,71.767,0.951751,-1,-1,-1
408,-1,288.996,212.701,44.86,63.564,0.924763,-1,-1,-1
408,-1,328.17,219.178,17.023,50.786,0.860699,-1,-1,-1
408,-1,271.319,220.629,16.194,47.187,0.780138,-1,-1,-1
409,-1,6.59299,116.984,41.975,162.641,0.959115,-1,-1,-1
409,-1,426.452,200.194,37.026,79.361,0.94217,-1,-1,-1
409,-1,209.943,211.306,21.829,51.176,0.893885,-1,-1,-1
409,-1,293.659,217.631,27.085,63.359,0.864994,-1,-1,-1
409,-1,335.671,227.897,15.188,48.9,0.794962,-1,-1,-1
409,-1,12.1172,223.861,62.736,157.978,0.783852,-1,-1,-1
409,-1,237.968,208.361,19.322,63.41,0.762926,-1,-1,-1
409,-1,281.86,221.404,14.532,47.095,0.74248,-1,-1,-1
409,-1,198.101,214.783,15.291,43.742,0.530644,-1,-1,-1
409,-1,313.651,211.387,14.763,58.027,0.521628,-1,-1,-1
410,-1,2.01907,232.781,79.4322,150.841,0.972648,-1,-1,-1
410,-1,297.896,211.56,22.685,63.381,0.962765,-1,-1,-1
410,-1,211.426,211.334,20.996,54.479,0.930271,-1,-1,-1
410,-1,332.814,223.635,16.571,52.428,0.789495,-1,-1,-1
410,-1,311.622,210.494,17.741,57.221,0.686686,-1,-1,-1
410,-1,235.928,202.005,14.356,59.174,0.651334,-1,-1,-1
410,-1,518.782,218.194,26.544,34.167,0.643946,-1,-1,-1
410,-1,202.887,210.837,18.107,40.422,0.607011,-1,-1,-1
410,-1,245.553,208.484,15.27,61.268,0.590649,-1,-1,-1
410,-1,420.021,192.54,36.454,88.918,0.564841,-1,-1,-1
410,-1,281.02,219.729,15.968,48.238,0.559828,-1,-1,-1
410,-1,450.628,197.84,23.626,71.485,0.531279,-1,-1,-1
411,-1,300.747,208.574,26.7,66.594,0.946442,-1,-1,-1
411,-1,212.195,202.346,22.883,61.077,0.92782,-1,-1,-1
411,-1,442.035,202.239,30.081,78.06,0.916352,-1,-1,-1
411,-1,336.946,221.697,15.055,52.852,0.828645,-1,-1,-1
411,-1,243.432,201.445,16.908,60.98,0.748604,-1,-1,-1
411,-1,521.548,214.122,23.811,33.472,0.615733,-1,-1,-1
411,-1,323.855,211.161,18.377,60.347,0.580813,-1,-1,-1
412,-1,444.442,199.678,34.654,68.036,0.972453,-1,-1,-1
412,-1,300.691,213.868,29.25,63.984,0.971893,-1,-1,-1
412,-1,214.369,209.187,21.183,53.651,0.870432,-1,-1,-1
412,-1,345.257,217.964,16.593,47.601,0.838481,-1,-1,-1
412,-1,242.987,207.734,15.392,56.72,0.806471,-1,-1,-1
412,-1,292.297,210.852,18.394,60.982,0.765971,-1,-1,-1
412,-1,282.407,218.473,15.124,48.036,0.731461,-1,-1,-1
412,-1,203.702,205.176,16.159,50.275,0.688586,-1,-1,-1
413,-1,448.892,206.273,32.325,60.927,0.987884,-1,-1,-1
413,-1,301.947,213.505,29.714,65.694,0.984819,-1,-1,-1
413,-1,199.797,202.92,32.324,51.045,0.967466,-1,-1,-1
413,-1,292.843,212.969,18.099,53.03,0.727155,-1,-1,-1
413,-1,428.32,192.936,34.065,85.516,0.716821,-1,-1,-1
413,-1,344.669,222.992,15.706,44.514,0.715345,-1,-1,-1
413,-1,277.103,218.543,15.199,54.254,0.71068,-1,-1,-1
413,-1,243.378,201.93,13.718,59.638,0.663631,-1,-1,-1
413,-1,222.96,199.09,14.231,58.556,0.66249,-1,-1,-1
413,-1,522.992,215.226,25.316,36.814,0.590824,-1,-1,-1
414,-1,455.191,206.136,31.13,72.653,0.991983,-1,-1,-1
414,-1,300.694,208.415,28.453,72.823,0.983765,-1,-1,-1
414,-1,205.626,212.344,19.618,55.107,0.965624,-1,-1,-1
414,-1,424.412,201.732,29.027,75.962,0.956091,-1,-1,-1
414,-1,340.238,223.105,18.715,56.158,0.909871,-1,-1,-1
415,-1,461.893,207.985,26.875,66.439,0.992118,-1,-1,-1
415,-1,307.966,212.524,29.166,61.773,0.985887,-1,-1,-1
415,-1,211.334,205.22,18.624,56.97,0.938621,-1,-1,-1
415,-1,424.954,200.745,27.167,81.264,0.874327,-1,-1,-1
415,-1,445.091,199.265,30.404,80.991,0.867327,-1,-1,-1
415,-1,282.319,225.616,16.446,51.521,0.835258,-1,-1,-1
415,-1,341.103,221.673,15.091,58.631,0.724274,-1,-1,-1
415,-1,294.62,221.59,22.872,53.796,0.622175,-1,-1,-1
415,-1,245.02,203.11,13.324,62.981,0.557517,-1,-1,-1
416,-1,462.018,209.343,26.086,67.043,0.99013,-1,-1,-1
416,-1,312.359,207.404,22.525,79.689,0.949513,-1,-1,-1
416,-1,343.222,227.609,17.432,49.526,0.947017,-1,-1,-1
416,-1,203.083,202.142,33.881,64.634,0.915879,-1,-1,-1
416,-1,245.452,183.034,27.915,92.354,0.683242,-1,-1,-1
416,-1,422.709,197.718,26.497,83.35,0.553896,-1,-1,-1
417,-1,461.5,203.238,30.797,71.12,0.991504,-1,-1,-1
417,-1,315.064,214.392,17.186,68.614,0.920011,-1,-1,-1
417,-1,208.874,212.545,16.393,42.729,0.902255,-1,-1,-1
417,-1,350.856,229.127,13.969,50.1,0.85756,-1,-1,-1
417,-1,241.832,189.983,30.904,80.4,0.837879,-1,-1,-1
417,-1,444.933,205.248,26.128,76.175,0.783361,-1,-1,-1
417,-1,219.178,199.904,16.787,59.189,0.710476,-1,-1,-1
417,-1,282.639,220.647,16.365,58.541,0.550273,-1,-1,-1
418,-1,459.092,209.426,31.299,70.716,0.972227,-1,-1,-1
418,-1,308.748,222.634,27.225,54.085,0.954257,-1,-1,-1
418,-1,203.008,207.905,34.051,60.452,0.933222,-1,-1,-1
418,-1,439.312,208.225,26.162,74.655,0.917187,-1,-1,-1
418,-1,481.509,215.117,20.956,63.795,0.672086,-1,-1,-1
418,-1,288.198,227.091,12.895,48.244,0.590922,-1,-1,-1
418,-1,252.51,209.716,18.201,56.87,0.548967,-1,-1,-1
418,-1,297.619,227.235,12.94,43.438,0.528643,-1,-1,-1
419,-1,477.575,210.536,26.924,66.855,0.993883,-1,-1,-1
419,-1,209.374,208.177,33.372,60.405,0.957215,-1,-1,-1
419,-1,308.024,217.404,33.047,66.971,0.951909,-1,-1,-1
419,-1,293.881,222.929,14.46,45.872,0.81641,-1,-1,-1
419,-1,437.138,207.443,26.505,78.737,0.808893,-1,-1,-1
419,-1,254.065,202.451,18.152,62.017,0.805803,-1,-1,-1
419,-1,355.665,232.083,16.497,46.924,0.64808,-1,-1,-1
419,-1,457.231,199.938,27.801,82.657,0.585956,-1,-1,-1
420,-1,469.963,200.032,31.214,78.074,0.990452,-1,-1,-1
420,-1,209.829,209.749,32.257,57.484,0.965444,-1,-1,-1
420,-1,314.282,218.245,31.341,55.744,0.949724,-1,-1,-1
420,-1,434.096,204.031,32.576,78.279,0.93064,-1,-1,-1
420,-1,255.243,209.491,19.442,56.503,0.855177,-1,-1,-1
420,-1,353.13,225.892,15.925,52.514,0.823532,-1,-1,-1
420,-1,297.811,224.08,14.713,52.533,0.813595,-1,-1,-1
420,-1,453.64,201.475,28.775,85.713,0.626641,-1,-1,-1
420,-1,245.796,207.121,17.641,60.349,0.617731,-1,-1,-1
421,-1,477.289,209.419,27.468,76.032,0.985038,-1,-1,-1
421,-1,437.613,203.368,32.707,81.331,0.959449,-1,-1,-1
421,-1,212.008,211.192,24.414,58.604,0.945954,-1,-1,-1
421,-1,325.962,216.883,17.314,64.681,0.88249,-1,-1,-1
421,-1,354.896,230.904,15.336,48.21,0.872624,-1,-1,-1
421,-1,258.203,212.133,17.2,52.924,0.86405,-1,-1,-1
421,-1,314.615,221.199,13.559,58.424,0.640681,-1,-1,-1
421,-1,460.51,198.897,28.474,95.785,0.61213,-1,-1,-1
421,-1,295.326,232.054,16.421,51.091,0.517546,-1,-1,-1
421,-1,250.12,205.88,14.379,57.399,0.517509,-1,-1,-1
422,-1,475.425,202.839,34.351,79.462,0.988752,-1,-1,-1
422,-1,325.592,211.127,20.851,67.885,0.982627,-1,-1,-1
422,-1,204.813,209.606,33.328,55.196,0.96319,-1,-1,-1
422,-1,440.651,202.153,32.186,82.791,0.937383,-1,-1,-1
422,-1,248.272,195.626,29.498,70.078,0.8804,-1,-1,-1
422,-1,352.758,228.517,15.945,53.531,0.86037,-1,-1,-1
422,-1,307.294,218.072,13.156,49.634,0.633764,-1,-1,-1
422,-1,294.925,223.572,16.632,59.055,0.579058,-1,-1,-1
423,-1,480.429,203.672,30.411,76.344,0.965829,-1,-1,-1
423,-1,204.781,208.802,33.216,54.755,0.960275,-1,-1,-1
423,-1,323.825,216.317,22.753,59.513,0.94967,-1,-1,-1
423,-1,248.074,180.967,31.165,86.032,0.89397,-1,-1,-1
423,-1,355.968,229.117,18.963,42.796,0.73373,-1,-1,-1
423,-1,436.815,198.63,32.031,90.659,0.628213,-1,-1,-1
424,-1,483.122,207.724,33.559,79.908,0.980314,-1,-1,-1
424,-1,209.769,206.894,27.619,61.662,0.942967,-1,-1,-1
424,-1,326.239,218.852,21.754,56.021,0.934035,-1,-1,-1
424,-1,248.777,197.969,30.751,66.958,0.887155,-1,-1,-1
424,-1,350.86,229.42,18.877,54.522,0.886116,-1,-1,-1
424,-1,439.344,206.882,33.946,92.216,0.8489,-1,-1,-1
425,-1,325.69,213.641,23.944,62.365,0.979429,-1,-1,-1
425,-1,486.678,206.201,31.953,72.112,0.943064,-1,-1,-1
425,-1,209.099,202.878,20.896,60.428,0.882335,-1,-1,-1
425,-1,352.903,228.96,17.593,57.387,0.746319,-1,-1,-1
425,-1,258.644,208.575,20.312,62.642,0.724307,-1,-1,-1
425,-1,294.905,228.563,16.703,44.848,0.665671,-1,-1,-1
425,-1,436.698,191.512,40.308,101.265,0.590893,-1,-1,-1
425,-1,343.199,220.129,17.364,56.464,0.504033,-1,-1,-1
426,-1,327.33,207.077,25.733,68.367,0.977539,-1,-1,-1
426,-1,489.114,210.636,31.43,72.141,0.947656,-1,-1,-1
426,-1,211.739,208.811,21.479,55.447,0.920914,-1,-1,-1
426,-1,448.528,200.227,38.933,97.847,0.883537,-1,-1,-1
426,-1,352.748,225.829,16.775,53.152,0.871178,-1,-1,-1
426,-1,256.13,212.394,16.631,55.423,0.764088,-1,-1,-1
426,-1,361.78,232.456,19.799,49.749,0.708228,-1,-1,-1
426,-1,295.258,225.055,14.904,51.527,0.610497,-1,-1,-1
427,-1,200.793,208.739,37.275,59.786,0.934824,-1,-1,-1
427,-1,326.972,213.802,21.264,68.782,0.918088,-1,-1,-1
427,-1,352.187,227.123,19.27,53.683,0.8864,-1,-1,-1
427,-1,453.232,201.64,37.002,96.201,0.878581,-1,-1,-1
427,-1,294.99,223.009,14.467,41.812,0.843048,-1,-1,-1
427,-1,257.398,208.57,17.313,58.615,0.803989,-1,-1,-1
427,-1,342.024,219.17,16.924,55.954,0.658794,-1,-1,-1
427,-1,268.507,212.246,15.927,53.861,0.548956,-1,-1,-1
428,-1,352.159,226.475,21.806,50.713,0.953808,-1,-1,-1
428,-1,206.913,210.137,30.388,55.975,0.946947,-1,-1,-1
428,-1,325.963,218.969,33.644,67.254,0.903463,-1,-1,-1
428,-1,362.563,234.482,23.958,46.173,0.852708,-1,-1,-1
428,-1,456.02,193.172,34.262,104.446,0.847262,-1,-1,-1
428,-1,257.616,205.113,17.014,58.012,0.830236,-1,-1,-1
428,-1,202.977,206.117,15.657,51.193,0.626523,-1,-1,-1
428,-1,493.41,208.446,32.159,85.576,0.533516,-1,-1,-1
429,-1,320.752,219.321,33.887,59.796,0.965272,-1,-1,-1
429,-1,357.964,229.518,16.94,52.298,0.906867,-1,-1,-1
429,-1,250.946,197.609,29.096,71.074,0.861622,-1,-1,-1
429,-1,448.72,196.4,42.274,105.243,0.833426,-1,-1,-1
429,-1,205.255,214.783,21.394,43.356,0.79244,-1,-1,-1
429,-1,293.045,234.477,14.99,49.538,0.682348,-1,-1,-1
430,-1,206.163,215.045,34.895,60.869,0.966604,-1,-1,-1
430,-1,260.781,217.521,22.104,52.194,0.962081,-1,-1,-1
430,-1,321.306,219.826,34.646,60.485,0.958999,-1,-1,-1
430,-1,450.311,208.517,36.832,89.123,0.9367,-1,-1,-1
430,-1,364.848,229.681,14.708,54.966,0.839169,-1,-1,-1
430,-1,245.563,213.307,18.675,59.222,0.636782,-1,-1,-1
430,-1,291.049,229.145,16.635,49.959,0.616014,-1,-1,-1
430,-1,353.229,224.055,19.61,64.942,0.588095,-1,-1,-1
431,-1,368.568,237.808,16.673,46.359,0.947179,-1,-1,-1
431,-1,332.45,224.783,17.707,58.031,0.9102,-1,-1,-1
431,-1,307.925,225.506,26.904,57.421,0.845226,-1,-1,-1
431,-1,210.831,211.745,32.261,56.623,0.807291,-1,-1,-1
431,-1,262.236,216.81,14.334,50.424,0.749924,-1,-1,-1
431,-1,460.69,213.48,32.096,92.719,0.70976,-1,-1,-1
431,-1,343.1,221.555,16.638,67.106,0.675525,-1,-1,-1
431,-1,270.809,220.505,16.251,56.916,0.534377,-1,-1,-1
432,-1,335.335,223.422,19.008,58.298,0.951605,-1,-1,-1
432,-1,368.585,235.523,19.317,53.412,0.926135,-1,-1,-1
432,-1,271.776,217.897,14.279,49.985,0.836235,-1,-1,-1
432,-1,220.285,213.253,22.091,63.293,0.817452,-1,-1,-1
432,-1,325.26,231.505,17.993,58.42,0.80182,-1,-1,-1
432,-1,312.666,233.175,14.977,53.617,0.708522,-1,-1,-1
433,-1,334.602,222.953,21.221,55.862,0.952121,-1,-1,-1
433,-1,369.773,232.684,19.275,49.906,0.932483,-1,-1,-1
433,-1,309.817,226.487,19.838,53.09,0.838364,-1,-1,-1
433,-1,221.757,214.131,18.583,54.674,0.813744,-1,-1,-1
433,-1,321.262,218.418,20.087,63.166,0.67011,-1,-1,-1
433,-1,347.25,219.543,23.107,60.744,0.664287,-1,-1,-1
434,-1,340.174,212.593,23.066,65.882,0.839249,-1,-1,-1
434,-1,370.729,228.554,15.751,54.464,0.813993,-1,-1,-1
434,-1,307.209,227.668,17.78,48.251,0.74104,-1,-1,-1
434,-1,223.642,210.114,19.817,60.543,0.707652,-1,-1,-1
434,-1,206.281,209.479,26.927,61.936,0.56296,-1,-1,-1
434,-1,316.553,225.682,25.869,52.125,0.534227,-1,-1,-1
434,-1,297.629,226.573,16.978,48.452,0.518194,-1,-1,-1
435,-1,338.702,221.514,24.808,67.111,0.968634,-1,-1,-1
435,-1,467.881,204.94,32.193,86.591,0.958734,-1,-1,-1
435,-1,372.518,229.905,17.266,47.694,0.915425,-1,-1,-1
435,-1,263.504,204.512,25.846,69.7,0.876411,-1,-1,-1
435,-1,307.517,231.906,17.962,49.199,0.819652,-1,-1,-1
435,-1,205.768,207.706,27.873,60.68,0.610153,-1,-1,-1
435,-1,325.348,220.974,20.5,67.153,0.501101,-1,-1,-1
436,-1,329.373,220.824,37.733,67.682,0.974131,-1,-1,-1
436,-1,272.058,209.109,17.998,60.995,0.879666,-1,-1,-1
436,-1,206.752,208.511,28.936,66.947,0.867932,-1,-1,-1
436,-1,369.12,227.767,17.109,59.243,0.81501,-1,-1,-1
436,-1,355.423,223.588,17.248,58.746,0.728138,-1,-1,-1
436,-1,309.309,225.96,17.178,60.229,0.725137,-1,-1,-1
437,-1,338.25,213.9,37.392,69.804,0.986693,-1,-1,-1
437,-1,467.845,205.041,36.504,69.541,0.959251,-1,-1,-1
437,-1,271.225,205.099,18.396,64.778,0.888152,-1,-1,-1
437,-1,220.2,211.033,22.332,60.296,0.827798,-1,-1,-1
437,-1,375.58,232.55,22.573,57.467,0.807984,-1,-1,-1
437,-1,309.52,225.165,13.354,60.582,0.700978,-1,-1,-1
437,-1,366.889,224.615,16.822,60.993,0.697025,-1,-1,-1
438,-1,340.908,223.423,25.515,64.838,0.972881,-1,-1,-1
438,-1,221.021,213.144,21.359,57.619,0.922709,-1,-1,-1
438,-1,275.752,212.206,19.57,65.209,0.852676,-1,-1,-1
438,-1,357.946,223.112,21.489,58.428,0.851226,-1,-1,-1
438,-1,314.908,222.891,19.83,55.853,0.778484,-1,-1,-1
438,-1,472.632,203.125,30.19,61.331,0.752716,-1,-1,-1
438,-1,201.507,226.504,30.163,40.902,0.521218,-1,-1,-1
439,-1,344.333,222.422,24.595,65.353,0.980921,-1,-1,-1
439,-1,473.575,206.302,31.396,84.044,0.956375,-1,-1,-1
439,-1,206.073,211.028,30.839,61.877,0.894555,-1,-1,-1
439,-1,359.256,221.218,22.334,59.968,0.850837,-1,-1,-1
439,-1,372.965,234.2,12.961,45.007,0.681994,-1,-1,-1
439,-1,266.458,205.451,21.157,65.067,0.680746,-1,-1,-1
439,-1,307.633,228.525,18.371,58.63,0.533382,-1,-1,-1
440,-1,473.947,195.285,42.293,95.64,0.980975,-1,-1,-1
440,-1,344.355,223.356,43.334,73.369,0.97748,-1,-1,-1
440,-1,275.068,209.913,19.274,62.703,0.892015,-1,-1,-1
440,-1,378.396,235.716,14.545,44.118,0.825871,-1,-1,-1
440,-1,202.63,212.452,34.453,60.538,0.812354,-1,-1,-1
441,-1,342.34,221.404,33.339,74.9,0.976019,-1,-1,-1
441,-1,475.241,197.807,39.332,98.747,0.947555,-1,-1,-1
441,-1,206.539,210.555,31.03,63.153,0.935209,-1,-1,-1
441,-1,314.966,220.588,17.04,58.315,0.867612,-1,-1,-1
441,-1,376.714,233.081,15.333,56.675,0.684266,-1,-1,-1
441,-1,327.494,219.102,21.654,63.255,0.544032,-1,-1,-1
441,-1,267.738,207.52,19.29,69.437,0.533145,-1,-1,-1
441,-1,277.405,202.743,21.387,81.019,0.517396,-1,-1,-1
442,-1,348.206,218.601,32.314,69.205,0.976489,-1,-1,-1
442,-1,483.199,203.65,33.602,86.635,0.962857,-1,-1,-1
442,-1,213.767,210.181,25.143,58.904,0.924551,-1,-1,-1
442,-1,304.37,230.933,27.069,51.323,0.913221,-1,-1,-1
442,-1,275.532,209.161,19.748,72.856,0.79025,-1,-1,-1
442,-1,193.203,214.749,34.798,57.683,0.648839,-1,-1,-1
442,-1,377.704,225.326,14.752,60.296,0.568809,-1,-1,-1
442,-1,339.582,224.316,13.458,55.212,0.553303,-1,-1,-1
443,-1,341.262,217.692,38.26,60.978,0.977517,-1,-1,-1
443,-1,203.671,205.647,33.338,63.004,0.958046,-1,-1,-1
443,-1,483.052,193.732,34.268,100.336,0.928702,-1,-1,-1
443,-1,321.976,230.327,24.963,50.762,0.885184,-1,-1,-1
443,-1,273.35,210.44,16.452,61.064,0.866969,-1,-1,-1
443,-1,380.863,232.759,19.621,55.545,0.786711,-1,-1,-1
443,-1,339.631,227.456,13.287,58.691,0.665935,-1,-1,-1
444,-1,484.875,202.909,34.472,88.849,0.979497,-1,-1,-1
444,-1,200.569,209.302,31.027,67.444,0.976901,-1,-1,-1
444,-1,340.415,217.52,39.603,63.124,0.975127,-1,-1,-1
444,-1,313.631,226.584,14.729,57.529,0.89602,-1,-1,-1
444,-1,382.193,230.539,16.436,51.691,0.885536,-1,-1,-1
444,-1,268.805,199.695,20.405,72.202,0.882317,-1,-1,-1
444,-1,333.508,224.054,16.051,64.351,0.652127,-1,-1,-1
445,-1,348.16,214.443,33.824,68.851,0.971126,-1,-1,-1
445,-1,484.124,194.764,36.404,100.467,0.968343,-1,-1,-1
445,-1,207.776,213.903,27.711,63.032,0.964178,-1,-1,-1
445,-1,271.431,218.624,19.769,56.573,0.94401,-1,-1,-1
445,-1,324.826,222.243,22.7,63.512,0.835113,-1,-1,-1
445,-1,307.781,223.245,19.086,67.032,0.820628,-1,-1,-1
446,-1,205.692,212.147,39.615,67.765,0.979085,-1,-1,-1
446,-1,345.437,216.671,38.688,67.7,0.97716,-1,-1,-1
446,-1,268.996,212.352,26.075,62.874,0.9624,-1,-1,-1
446,-1,487.687,193.756,43.265,100.89,0.883546,-1,-1,-1
446,-1,308.08,233.109,14.154,59.117,0.786815,-1,-1,-1
446,-1,320.41,219.361,28.068,60.691,0.593627,-1,-1,-1
447,-1,203.977,214.88,34.107,61.575,0.987774,-1,-1,-1
447,-1,347.02,213.579,34.521,74.396,0.985121,-1,-1,-1
447,-1,489.39,193.1,42.43,102.252,0.939698,-1,-1,-1
447,-1,265.347,210.359,27.614,67.221,0.888311,-1,-1,-1
447,-1,305.856,225.519,15.647,61.595,0.61743,-1,-1,-1
447,-1,329.388,221.015,16.966,63.849,0.616894,-1,-1,-1
447,-1,317.933,225.171,15.722,57.624,0.536328,-1,-1,-1
448,-1,345.533,220.942,35.469,68.843,0.986708,-1,-1,-1
448,-1,204.504,218.875,26.688,60.153,0.976514,-1,-1,-1
448,-1,496.527,206.765,31.093,93.342,0.973675,-1,-1,-1
448,-1,272.946,218.164,19.863,58.969,0.883161,-1,-1,-1
448,-1,333.899,224.027,13.81,56.406,0.740758,-1,-1,-1
448,-1,376.993,231.226,15.074,55.217,0.621736,-1,-1,-1
448,-1,387.267,239.049,12.218,44.519,0.525658,-1,-1,-1
449,-1,211.815,214.572,22.457,63.495,0.980953,-1,-1,-1
449,-1,349.874,220.78,29.037,70.073,0.958898,-1,-1,-1
449,-1,504.254,209.38,25.36,91.511,0.911281,-1,-1,-1
449,-1,299.267,225.64,18.999,67.457,0.811374,-1,-1,-1
449,-1,269.616,218.417,23.138,62.052,0.776931,-1,-1,-1
449,-1,335.113,224.194,14.712,63.876,0.707216,-1,-1,-1
449,-1,375.978,234.484,15.021,58.262,0.582909,-1,-1,-1
450,-1,346.15,225.552,30.733,63.938,0.986134,-1,-1,-1
450,-1,200.807,211.368,27.003,65.189,0.986063,-1,-1,-1
450,-1,299.806,230.156,24.613,61.602,0.928508,-1,-1,-1
450,-1,265.59,220.126,29.763,62.245,0.841434,-1,-1,-1
450,-1,376.546,236.753,23.375,57.288,0.792544,-1,-1,-1
450,-1,497.728,200.344,29.358,93.074,0.653279,-1,-1,-1
450,-1,290.678,217.486,19.547,73.656,0.613136,-1,-1,-1
450,-1,323.9,226.228,31.042,65.249,0.516283,-1,-1,-1
451,-1,205.019,214.992,27.868,68.13,0.985548,-1,-1,-1
451,-1,339.931,234.05,36.376,64.425,0.969218,-1,-1,-1
451,-1,362.397,224.753,26.507,72.382,0.903,-1,-1,-1
451,-1,301.612,232.664,19.782,61.498,0.875512,-1,-1,-1
451,-1,380.92,238.805,17.69,58.928,0.821094,-1,-1,-1
451,-1,272.873,221.633,21.69,70.607,0.815131,-1,-1,-1
452,-1,207.078,213.052,27.749,72.729,0.987211,-1,-1,-1
452,-1,350.693,225.285,30.037,69.514,0.969852,-1,-1,-1
452,-1,262.761,214.846,47.271,79.982,0.965536,-1,-1,-1
452,-1,369.189,231.262,31.009,65.403,0.895966,-1,-1,-1
452,-1,300.164,235.896,20.029,59.713,0.766042,-1,-1,-1
452,-1,189.133,213.621,22.641,71.888,0.643202,-1,-1,-1
453,-1,351.289,225.999,28.874,77.67,0.986878,-1,-1,-1
453,-1,270.175,219.59,30.768,77.312,0.942307,-1,-1,-1
453,-1,209.979,223.254,23.947,64.44,0.907178,-1,-1,-1
453,-1,297.999,233.944,18.965,65.936,0.662608,-1,-1,-1
453,-1,552.14,221.57,27.476,90.352,0.639521,-1,-1,-1
453,-1,383.69,234.61,14.018,60.221,0.620758,-1,-1,-1
453,-1,188.66,216.552,31.833,68.966,0.527007,-1,-1,-1
454,-1,351.466,228.536,19.671,65.485,0.97414,-1,-1,-1
454,-1,191.26,216.944,21.863,62.557,0.922977,-1,-1,-1
454,-1,267.299,223.585,26.726,68.37,0.922137,-1,-1,-1
454,-1,302.439,249.114,16.938,49.322,0.811621,-1,-1,-1
454,-1,205.617,219.986,20.239,67.748,0.712434,-1,-1,-1
454,-1,550.812,218.158,25.329,104.24,0.555138,-1,-1,-1
455,-1,346.171,229,29.79,77.386,0.983549,-1,-1,-1
455,-1,263.275,222.077,32.048,80.013,0.97867,-1,-1,-1
455,-1,208.499,224.877,27.595,62.235,0.888676,-1,-1,-1
455,-1,513.328,214.47,27.131,86.232,0.859712,-1,-1,-1
455,-1,192.435,220.827,26.566,68.484,0.770555,-1,-1,-1
455,-1,319.103,239.757,14.993,56.416,0.602947,-1,-1,-1
456,-1,262.547,232.316,28.164,72.469,0.991005,-1,-1,-1
456,-1,345.748,223.148,26.701,77.019,0.97697,-1,-1,-1
456,-1,528.329,225.685,23.15,84.281,0.940127,-1,-1,-1
456,-1,195.913,226.978,29.478,66.238,0.939913,-1,-1,-1
456,-1,219.737,225.933,21.121,62.12,0.784775,-1,-1,-1
456,-1,310.25,242.036,21.716,55.832,0.721696,-1,-1,-1
456,-1,339.43,232.279,14.618,72.571,0.500886,-1,-1,-1
457,-1,262.623,223.622,36.553,71.665,0.990428,-1,-1,-1
457,-1,526.913,223.714,30.688,88.957,0.961913,-1,-1,-1
457,-1,342.864,230.692,33.329,68.314,0.949447,-1,-1,-1
457,-1,192.844,218.208,31.036,71.871,0.941942,-1,-1,-1
457,-1,377.894,246.647,20.928,58.625,0.915638,-1,-1,-1
457,-1,573.362,204.05,41.308,137.08,0.843419,-1,-1,-1
457,-1,175.388,220.827,24.135,67.092,0.534461,-1,-1,-1
458,-1,262.336,218.51,41.98,80.54,0.986619,-1,-1,-1
458,-1,198.244,219.15,25.998,74.474,0.983905,-1,-1,-1
458,-1,349.472,234.568,24.885,66.248,0.945142,-1,-1,-1
458,-1,379.276,242.463,21.043,58.623,0.9408,-1,-1,-1
458,-1,570.535,215.332,40.556,97.824,0.917642,-1,-1,-1
458,-1,532.438,210.304,25.194,93.805,0.851125,-1,-1,-1
458,-1,341.253,234.539,16.63,61.05,0.580782,-1,-1,-1
458,-1,513.493,217.411,34.825,61.589,0.510054,-1,-1,-1
459,-1,188.182,221.397,31.188,68.377,0.986302,-1,-1,-1
459,-1,258.377,218.366,34.769,85.566,0.966007,-1,-1,-1
459,-1,350.697,236.234,20.181,64.723,0.952386,-1,-1,-1
459,-1,539.251,209.684,26.58,103.351,0.898036,-1,-1,-1
459,-1,570.793,212.908,40.698,107.485,0.852735,-1,-1,-1
459,-1,335.623,231.517,18.965,69.72,0.735059,-1,-1,-1
459,-1,241.956,212.948,28.841,87.635,0.713788,-1,-1,-1
459,-1,283.607,222.414,22.727,75.285,0.66518,-1,-1,-1
459,-1,361.798,226.568,19.288,70.293,0.65208,-1,-1,-1
460,-1,192.004,220.988,33.939,73.914,0.985129,-1,-1,-1
460,-1,343.227,231.745,31.587,72.877,0.979327,-1,-1,-1
460,-1,252.823,228.015,38.278,83.265,0.977153,-1,-1,-1
460,-1,579.369,212.154,39.629,97.653,0.961234,-1,-1,-1
460,-1,540.725,219.687,28.956,92.284,0.928789,-1,-1,-1
460,-1,382.231,245.084,20.237,55.951,0.906076,-1,-1,-1
460,-1,508.943,206.804,28.457,37.041,0.864675,-1,-1,-1
460,-1,328.508,239.026,15.732,57.584,0.833927,-1,-1,-1
460,-1,283.646,219.892,22.642,83.133,0.765303,-1,-1,-1
461,-1,188.874,215.077,36.155,79.658,0.993755,-1,-1,-1
461,-1,345.079,230.739,25.43,76.387,0.985742,-1,-1,-1
461,-1,256.54,223.969,31.816,82.005,0.984967,-1,-1,-1
461,-1,582.269,213.107,36.604,101.613,0.983457,-1,-1,-1
461,-1,386.791,243.763,19.038,66.202,0.89026,-1,-1,-1
461,-1,241.685,226.605,24.884,69.6,0.889246,-1,-1,-1
461,-1,549.409,219.501,29.278,107.444,0.849497,-1,-1,-1
461,-1,288.279,228.501,22.241,74.228,0.744295,-1,-1,-1
461,-1,331.104,234.73,13.918,69.617,0.581634,-1,-1,-1
462,-1,344.342,222.05,26.169,88.022,0.986462,-1,-1,-1
462,-1,197.505,214.421,32.51,81.233,0.981042,-1,-1,-1
462,-1,583.865,220.683,41.149,102.491,0.975945,-1,-1,-1
462,-1,294.271,236.184,25.421,71.78,0.967081,-1,-1,-1
462,-1,250.174,228.546,30.965,73.559,0.961175,-1,-1,-1
462,-1,389.253,245.044,21.901,63.143,0.937655,-1,-1,-1
462,-1,555.985,222.902,29.832,94.251,0.891179,-1,-1,-1
462,-1,269.769,232.138,19.578,80.887,0.87205,-1,-1,-1
462,-1,177.476,225.656,25.543,69.074,0.812159,-1,-1,-1
463,-1,198.819,215.201,31.856,82.123,0.988277,-1,-1,-1
463,-1,351.083,225.887,20.09,83.462,0.986049,-1,-1,-1
463,-1,238.722,215.752,38.972,97.939,0.977068,-1,-1,-1
463,-1,585.691,208.336,38.153,118.471,0.968258,-1,-1,-1
463,-1,293.339,230.509,22.596,77.846,0.941131,-1,-1,-1
463,-1,552.2,210.782,34.815,99.768,0.922236,-1,-1,-1
463,-1,393.978,241.279,19.714,65.285,0.919005,-1,-1,-1
463,-1,189.573,225.808,22.986,64.49,0.706118,-1,-1,-1
463,-1,275.959,223.796,24.539,82.499,0.55512,-1,-1,-1
463,-1,313.221,220.64,16.495,81.474,0.541768,-1,-1,-1
464,-1,194.252,216.405,39.676,73.68,0.992972,-1,-1,-1
464,-1,341.099,233.549,40.096,74.534,0.991606,-1,-1,-1
464,-1,236.411,224.909,33.263,83.285,0.980478,-1,-1,-1
464,-1,569.777,212.905,60.948,99.704,0.975406,-1,-1,-1
464,-1,293.277,228.03,21.425,81.756,0.943968,-1,-1,-1
464,-1,393.521,244.257,18.258,56.787,0.94057,-1,-1,-1
464,-1,281.316,209.952,22.487,99.784,0.634926,-1,-1,-1
464,-1,313.42,213.632,16.952,93.847,0.517543,-1,-1,-1
465,-1,564.626,210.203,70.106,106.31,0.993177,-1,-1,-1
465,-1,350.519,221.19,33.438,89.08,0.987589,-1,-1,-1
465,-1,193.055,217.148,37.503,78.828,0.985751,-1,-1,-1
465,-1,240.61,212.18,37.781,100.759,0.984188,-1,-1,-1
465,-1,393.844,245.518,18.346,56.732,0.893203,-1,-1,-1
465,-1,301.771,223.405,22.34,78.627,0.887932,-1,-1,-1
465,-1,523.102,195.422,38.995,51.282,0.622742,-1,-1,-1
465,-1,275.979,228.593,22.464,76.708,0.613216,-1,-1,-1
465,-1,332.371,222.628,31.461,74.279,0.561841,-1,-1,-1
466,-1,569.682,214.638,66.732,100.43,0.992718,-1,-1,-1
466,-1,345.19,233.455,45.415,76.273,0.988789,-1,-1,-1
466,-1,197.949,215.32,29.785,80.755,0.987683,-1,-1,-1
466,-1,232.912,219.381,39.58,94.787,0.977804,-1,-1,-1
466,-1,301.453,216.297,29.067,91.578,0.958837,-1,-1,-1
466,-1,394.214,252.662,21.936,57.044,0.943634,-1,-1,-1
466,-1,405.352,245.117,20.901,56.809,0.703028,-1,-1,-1
466,-1,330.827,228.01,27.131,77.31,0.593071,-1,-1,-1
467,-1,344.729,234.332,35.545,77.917,0.991165,-1,-1,-1
467,-1,199.652,217.389,36.456,82.735,0.985173,-1,-1,-1
467,-1,234.667,215.424,36.042,99.721,0.981034,-1,-1,-1
467,-1,300.612,216.163,30.657,90.975,0.967719,-1,-1,-1
467,-1,394.799,242.046,24.227,65.45,0.935199,-1,-1,-1
467,-1,589.826,215.238,33.813,90.693,0.929785,-1,-1,-1
468,-1,346.384,226.998,40.786,74.566,0.988398,-1,-1,-1
468,-1,231.512,216.031,31.293,97.428,0.981651,-1,-1,-1
468,-1,303.681,215.331,29.329,95.169,0.957235,-1,-1,-1
468,-1,200.854,218.648,33.343,82.503,0.956019,-1,-1,-1
468,-1,597.705,202.961,27.335,114.096,0.89867,-1,-1,-1
468,-1,397.351,247.851,21.954,56.857,0.831472,-1,-1,-1
468,-1,322.265,209.124,24.45,101.24,0.802548,-1,-1,-1
468,-1,373.013,228.478,23.341,74.689,0.677099,-1,-1,-1
468,-1,294.544,228.928,19.805,77.979,0.666848,-1,-1,-1
469,-1,359.348,224.607,33.044,83.419,0.987598,-1,-1,-1
469,-1,188.023,215.569,38.458,77.249,0.977405,-1,-1,-1
469,-1,230.377,212.3,33.012,96.749,0.953532,-1,-1,-1
469,-1,307.791,214.589,31.712,97.817,0.944606,-1,-1,-1
469,-1,348.682,227.304,19.984,70.739,0.730984,-1,-1,-1
469,-1,293.877,223.46,20.04,71.893,0.69019,-1,-1,-1
470,-1,352.862,218.757,40.447,93.922,0.972185,-1,-1,-1
470,-1,215.629,216.446,41.342,96.178,0.968108,-1,-1,-1
470,-1,311.959,226.988,33.266,82.838,0.953196,-1,-1,-1
470,-1,407.7,250.792,19.912,48.414,0.783356,-1,-1,-1
470,-1,595.504,207.298,39.637,93.241,0.779583,-1,-1,-1
470,-1,187.824,221.284,33.32,78.834,0.776911,-1,-1,-1
470,-1,336.812,225.673,24.981,85.589,0.59497,-1,-1,-1
470,-1,243.979,220.417,26.188,77.918,0.530771,-1,-1,-1
470,-1,279.669,224.122,18.775,56.704,0.52177,-1,-1,-1
470,-1,305.888,225.146,18.329,75.081,0.513102,-1,-1,-1
471,-1,355.446,222.064,37.448,91.027,0.987068,-1,-1,-1
471,-1,205.154,213.317,56.486,98.662,0.973664,-1,-1,-1
471,-1,318.254,210.024,29.931,99.495,0.956678,-1,-1,-1
471,-1,405.444,251.791,21.721,51.525,0.907254,-1,-1,-1
471,-1,544.262,198.834,43.831,49.857,0.897844,-1,-1,-1
471,-1,271.684,222.252,21.112,57.195,0.887749,-1,-1,-1
471,-1,529.236,188.668,73.79,121.2,0.521571,-1,-1,-1
472,-1,210.824,217.187,43.086,102.539,0.990829,-1,-1,-1
472,-1,360.384,215.164,31.19,97.136,0.979014,-1,-1,-1
472,-1,319.714,202.23,34.445,121.662,0.973634,-1,-1,-1
472,-1,273.491,222.52,19.151,55.926,0.915181,-1,-1,-1
472,-1,196.452,210.047,25.298,95.846,0.681348,-1,-1,-1
472,-1,341.865,225.939,21.444,82.652,0.671166,-1,-1,-1
472,-1,405.624,234.141,20.653,72.653,0.555264,-1,-1,-1
473,-1,197.67,209.616,57.455,106.236,0.991089,-1,-1,-1
473,-1,354.106,224.715,47.417,86.755,0.985249,-1,-1,-1
473,-1,321.547,204.407,43.935,115.848,0.985094,-1,-1,-1
473,-1,553.788,200.841,45.544,53.469,0.877117,-1,-1,-1
473,-1,276.027,228.407,16.125,49.816,0.84083,-1,-1,-1
473,-1,406.357,237.315,22.159,64.964,0.665702,-1,-1,-1
474,-1,198.229,212.795,46.914,100.975,0.993309,-1,-1,-1
474,-1,335.601,207.97,72.932,107.62,0.982529,-1,-1,-1
474,-1,278.445,234.073,19.546,47.897,0.913886,-1,-1,-1
474,-1,408.356,247.78,24.18,58.255,0.795837,-1,-1,-1
474,-1,291.551,226.202,14.02,42.366,0.664255,-1,-1,-1
474,-1,358.965,224.054,28.058,75.957,0.659886,-1,-1,-1
474,-1,255.561,228.162,24.956,48.887,0.513195,-1,-1,-1
475,-1,193.814,210.37,54.806,110.443,0.990303,-1,-1,-1
475,-1,328.79,208.19,67.331,109.218,0.968765,-1,-1,-1
475,-1,375.66,231.16,23.781,67.166,0.931006,-1,-1,-1
475,-1,404.581,242.767,26.648,60.81,0.913815,-1,-1,-1
475,-1,278.513,234.063,19.467,47.391,0.903409,-1,-1,-1
475,-1,356.397,231.007,27.351,63.943,0.744885,-1,-1,-1
475,-1,321.066,216.842,28.759,96.105,0.708341,-1,-1,-1
475,-1,293.281,226.729,16.966,44.777,0.705242,-1,-1,-1
476,-1,197.533,202.031,39.227,109.853,0.986843,-1,-1,-1
476,-1,331.712,202.841,72.068,114.309,0.986728,-1,-1,-1
476,-1,414.136,243.326,24.348,64.448,0.9474,-1,-1,-1
476,-1,280.167,237.122,14.359,31.132,0.821526,-1,-1,-1
476,-1,320.834,228.161,33.296,79.903,0.685628,-1,-1,-1
476,-1,375.989,222.232,22.558,77.618,0.642109,-1,-1,-1
477,-1,193.653,206.533,40.597,105.51,0.987871,-1,-1,-1
477,-1,341.51,198.137,53.693,112.826,0.978836,-1,-1,-1
477,-1,409.116,240.826,25.417,62.387,0.948851,-1,-1,-1
477,-1,569.388,194.358,40.467,44.527,0.834889,-1,-1,-1
477,-1,322.68,235.984,23.232,71.073,0.81236,-1,-1,-1
477,-1,279.158,234.962,15.258,35.246,0.512335,-1,-1,-1
478,-1,176.779,200.94,54.439,111.798,0.991264,-1,-1,-1
478,-1,343.019,193.349,62.358,123.998,0.978465,-1,-1,-1
478,-1,285.796,232.325,18.533,46.769,0.910211,-1,-1,-1
478,-1,278.102,223.5,17.686,42.893,0.89871,-1,-1,-1
478,-1,412.426,242.926,22.192,55.904,0.895641,-1,-1,-1
478,-1,323.604,228.282,26.299,68.204,0.844984,-1,-1,-1
478,-1,297.206,228.064,16.609,46.742,0.705002,-1,-1,-1
478,-1,585.035,196.051,40.508,49.694,0.60566,-1,-1,-1
478,-1,206.386,218.097,27.154,67.675,0.556517,-1,-1,-1
479,-1,171.236,207.577,59.128,92.876,0.992099,-1,-1,-1
479,-1,357.003,197.844,46.446,126.548,0.947901,-1,-1,-1
479,-1,416.001,242.704,22.612,58.107,0.94758,-1,-1,-1
479,-1,277.671,223.377,18.468,44.073,0.864152,-1,-1,-1
479,-1,288.981,229.511,16.866,45.507,0.81541,-1,-1,-1
479,-1,330.785,235.684,29.792,65.796,0.751226,-1,-1,-1
479,-1,320.004,233.375,19.422,55.165,0.663398,-1,-1,-1
479,-1,209.308,220.521,27.707,67.217,0.600499,-1,-1,-1
480,-1,169.661,208.475,51.989,93.45,0.991803,-1,-1,-1
480,-1,352.517,192.128,58.663,129.811,0.985258,-1,-1,-1
480,-1,409.619,237.135,24.484,56.251,0.952144,-1,-1,-1
480,-1,586.192,182.83,35.791,65.921,0.94629,-1,-1,-1
480,-1,328.659,218.556,30.01,81.987,0.903915,-1,-1,-1
480,-1,287.63,221.669,17.833,49.591,0.84737,-1,-1,-1
480,-1,207.933,197.436,25.626,109.149,0.832175,-1,-1,-1
480,-1,317.71,226.941,25.119,56.544,0.7034,-1,-1,-1
480,-1,278.518,223.399,16.123,44.275,0.676256,-1,-1,-1
481,-1,165.307,206.787,62.86,105.107,0.996796,-1,-1,-1
481,-1,364.821,186.77,47.769,150.633,0.97406,-1,-1,-1
481,-1,588.747,186.725,35.936,67.261,0.936629,-1,-1,-1
481,-1,329.827,228.379,31.803,62.928,0.930768,-1,-1,-1
481,-1,206.349,199.14,28.27,99.846,0.901368,-1,-1,-1
481,-1,317.197,226.986,23.613,53.224,0.861544,-1,-1,-1
481,-1,287.434,217.829,15.174,49.246,0.843184,-1,-1,-1
481,-1,249.213,214.617,19.525,58.936,0.532958,-1,-1,-1
482,-1,160.414,201.085,64.456,106.331,0.99416,-1,-1,-1
482,-1,357.661,186.603,65.155,134.138,0.986513,-1,-1,-1
482,-1,207.168,197.798,26.584,90.9,0.965891,-1,-1,-1
482,-1,602.249,188.546,29.851,56.89,0.910762,-1,-1,-1
482,-1,277.201,221.213,17.565,41.76,0.909384,-1,-1,-1
482,-1,326.643,228.037,24.424,61.373,0.88424,-1,-1,-1
482,-1,344.223,225.811,27.652,81.095,0.813892,-1,-1,-1
482,-1,288.316,215.684,17.281,55.502,0.741977,-1,-1,-1
482,-1,256.243,219.705,17.321,47.871,0.508814,-1,-1,-1
483,-1,371.472,179.812,51.365,160.309,0.989201,-1,-1,-1
483,-1,161.37,196.043,54.07,117.647,0.986855,-1,-1,-1
483,-1,206.09,198.067,25.783,86.288,0.983279,-1,-1,-1
483,-1,317.168,229.408,26.017,49.713,0.895988,-1,-1,-1
483,-1,287.367,224.625,13.348,41.291,0.894247,-1,-1,-1
483,-1,604.76,189.871,28.932,61.387,0.857725,-1,-1,-1
483,-1,330.272,215.885,32.261,73.155,0.838966,-1,-1,-1
483,-1,353.808,229.284,27.992,84.255,0.684811,-1,-1,-1
484,-1,375.688,179.158,61.737,163.448,0.996107,-1,-1,-1
484,-1,207.662,199.711,25.955,82.699,0.988315,-1,-1,-1
484,-1,163.214,202.716,45.482,105.673,0.980728,-1,-1,-1
484,-1,326.294,226.488,29.06,66.6,0.949723,-1,-1,-1
484,-1,190.407,212.262,30.292,85.004,0.907118,-1,-1,-1
484,-1,610.421,188.037,26.848,58.459,0.895442,-1,-1,-1
484,-1,291.11,216.726,15.583,57.684,0.870653,-1,-1,-1
484,-1,475.528,206.499,28.239,85.163,0.867032,-1,-1,-1
484,-1,300.803,213.458,14.354,55.66,0.54907,-1,-1,-1
485,-1,372.058,189.749,72.546,158.848,0.998245,-1,-1,-1
485,-1,195.182,205.338,39.625,72.052,0.990566,-1,-1,-1
485,-1,149.625,194.408,45.774,114.106,0.974778,-1,-1,-1
485,-1,319.528,228.742,23.65,58.817,0.936626,-1,-1,-1
485,-1,330.475,219.968,33.134,68.111,0.88237,-1,-1,-1
485,-1,283.777,222.696,20.498,49.627,0.857399,-1,-1,-1
485,-1,471.25,208.367,28.399,80.82,0.744587,-1,-1,-1
485,-1,294.129,213.611,16.012,44.202,0.654973,-1,-1,-1
486,-1,384.212,189.675,68.875,156.856,0.994738,-1,-1,-1
486,-1,198.857,206.672,28.006,87.175,0.990405,-1,-1,-1
486,-1,474.841,209.964,29.071,82.712,0.988455,-1,-1,-1
486,-1,150.595,195.134,48.436,107.881,0.98691,-1,-1,-1
486,-1,333.714,223.882,23.939,66.504,0.949572,-1,-1,-1
486,-1,322.512,227.108,18.394,62.633,0.876836,-1,-1,-1
486,-1,348.001,219.513,18.891,63.633,0.664124,-1,-1,-1
486,-1,291.803,221.71,15.24,42.436,0.633438,-1,-1,-1
487,-1,379.419,188.426,81.669,161.177,0.996621,-1,-1,-1
487,-1,194.055,197.032,39.979,96.424,0.996161,-1,-1,-1
487,-1,148.959,201.922,45.85,104.61,0.99228,-1,-1,-1
487,-1,477.883,218.051,30.053,78.58,0.99011,-1,-1,-1
487,-1,326.812,236.093,22.775,51.706,0.904978,-1,-1,-1
487,-1,251.505,221.643,22.295,50.743,0.655967,-1,-1,-1
487,-1,287.539,219.561,13.554,45.97,0.535483,-1,-1,-1
488,-1,194.894,196.321,36.263,94.677,0.995888,-1,-1,-1
488,-1,404.703,171.811,72.196,186.837,0.993623,-1,-1,-1
488,-1,145.831,198.47,49.323,111.494,0.989672,-1,-1,-1
488,-1,491.763,207.796,24.938,85.682,0.987324,-1,-1,-1
488,-1,388.385,209.01,42.244,115.446,0.938403,-1,-1,-1
488,-1,326.763,225.012,36.599,67.23,0.894658,-1,-1,-1
488,-1,250.753,225.268,21.948,48.824,0.72043,-1,-1,-1
488,-1,388.514,218.344,18.655,75.722,0.596846,-1,-1,-1
488,-1,290.302,222.253,17.469,47.431,0.579212,-1,-1,-1
488,-1,320.813,234.649,18.115,48.101,0.544071,-1,-1,-1
489,-1,424.266,164.736,62.221,199.721,0.994781,-1,-1,-1
489,-1,189.866,194.054,38.121,97.648,0.991863,-1,-1,-1
489,-1,138.64,195.032,55.013,115.429,0.988606,-1,-1,-1
489,-1,388.711,205.278,32.253,106.44,0.978039,-1,-1,-1
489,-1,320.919,235.942,23.349,52.867,0.856486,-1,-1,-1
489,-1,251.724,226.591,22.05,47.61,0.807062,-1,-1,-1
489,-1,491.234,204.082,29.235,104.856,0.798448,-1,-1,-1
489,-1,327.899,227.21,43.962,70.513,0.695423,-1,-1,-1
489,-1,379.602,215.757,22.878,81.51,0.682691,-1,-1,-1
489,-1,293.216,220.985,15.201,46.324,0.558186,-1,-1,-1
490,-1,433.726,166.772,62.086,201.449,0.997526,-1,-1,-1
490,-1,194.846,199.189,35.908,97.567,0.996357,-1,-1,-1
490,-1,387.469,202.952,32.83,102.749,0.992375,-1,-1,-1
490,-1,136.552,201.552,55.34,108.559,0.988405,-1,-1,-1
490,-1,253.407,225.032,18.636,38.511,0.863203,-1,-1,-1
490,-1,334.644,219.491,24.139,75.914,0.851938,-1,-1,-1
490,-1,322.682,236.804,19.204,51.056,0.80124,-1,-1,-1
490,-1,495.747,205.803,25.964,95.474,0.641243,-1,-1,-1
491,-1,195.921,194.864,38.106,105.142,0.995601,-1,-1,-1
491,-1,133.371,201.767,53.868,117.128,0.990947,-1,-1,-1
491,-1,389.862,207.791,37.297,106.924,0.987643,-1,-1,-1
491,-1,445.658,169.034,65.851,230.81,0.987476,-1,-1,-1
491,-1,330.718,232.975,29.503,55.039,0.828349,-1,-1,-1
491,-1,320.472,242.756,20.286,55.5,0.800744,-1,-1,-1
491,-1,423.133,217.674,37.094,134.73,0.651307,-1,-1,-1
491,-1,250.267,225.639,22.686,45.694,0.521164,-1,-1,-1
492,-1,443.721,146.882,107.432,248.853,0.997306,-1,-1,-1
492,-1,195.688,195.315,42.045,100.652,0.994864,-1,-1,-1
492,-1,392.414,207.59,36.152,97.011,0.988765,-1,-1,-1
492,-1,131.554,200.158,57.138,122.098,0.979428,-1,-1,-1
492,-1,332.501,233.14,27.018,56.346,0.854291,-1,-1,-1
492,-1,323.724,240.018,16.122,51.959,0.598929,-1,-1,-1
492,-1,252.681,220.71,20.352,42.832,0.581619,-1,-1,-1
493,-1,469.026,156.159,90.008,239.518,0.995949,-1,-1,-1
493,-1,188.065,195.874,54.807,96.326,0.995052,-1,-1,-1
493,-1,394.172,206.707,34.839,101.675,0.990324,-1,-1,-1
493,-1,123.855,196.713,48.315,114.335,0.984734,-1,-1,-1
493,-1,334.874,232.816,19.77,62.6,0.832176,-1,-1,-1
493,-1,343.084,219.451,27.9,64.8,0.649752,-1,-1,-1
493,-1,251.984,224.594,21.027,47.09,0.641874,-1,-1,-1
493,-1,318.384,241.508,17.558,52.015,0.619522,-1,-1,-1
494,-1,186.373,190.472,46.525,107.479,0.995359,-1,-1,-1
494,-1,124.453,194.431,45.117,117.344,0.992862,-1,-1,-1
494,-1,395.601,201.758,35.492,105.965,0.988531,-1,-1,-1
494,-1,470.794,129.627,106.821,272.201,0.984001,-1,-1,-1
494,-1,431.248,234.907,19.329,59.356,0.914556,-1,-1,-1
494,-1,291.291,214.545,20.6,50.856,0.835643,-1,-1,-1
494,-1,326.892,233.55,24.362,61.292,0.77327,-1,-1,-1
494,-1,315.268,233.643,18.764,56.156,0.730868,-1,-1,-1
494,-1,341.57,230.029,14.96,55.727,0.702366,-1,-1,-1
494,-1,351.537,225.321,21.677,61.427,0.523222,-1,-1,-1
495,-1,514.491,121.315,88.597,302.269,0.997501,-1,-1,-1
495,-1,194.72,192.499,45.762,101.305,0.997218,-1,-1,-1
495,-1,120.165,186.108,45.311,122.949,0.993245,-1,-1,-1
495,-1,396.603,202.648,34.368,109.698,0.981015,-1,-1,-1
495,-1,440.935,236.701,20.435,64.914,0.943896,-1,-1,-1
495,-1,342.715,223.989,19.97,62.348,0.905875,-1,-1,-1
495,-1,289.126,213.313,21.597,53.378,0.884644,-1,-1,-1
495,-1,322.511,233.992,22.876,54.888,0.822542,-1,-1,-1
495,-1,359.76,219.99,16.669,67.02,0.519495,-1,-1,-1
496,-1,191.857,185.911,40.406,109.254,0.99699,-1,-1,-1
496,-1,534.541,106.78,100.551,301.025,0.995313,-1,-1,-1
496,-1,110.926,184.58,48.046,131.693,0.994124,-1,-1,-1
496,-1,395.034,200.002,37.335,109.164,0.985885,-1,-1,-1
496,-1,437.103,235.107,26.312,71.307,0.927732,-1,-1,-1
496,-1,292.958,211.41,19.381,48.081,0.896339,-1,-1,-1
496,-1,348.056,218.255,17.782,74.197,0.847196,-1,-1,-1
496,-1,506.326,254.179,56.621,130.477,0.791911,-1,-1,-1
496,-1,322.495,230.417,22.723,62.08,0.771477,-1,-1,-1
497,-1,187.379,183.655,47.214,106.63,0.996415,-1,-1,-1
497,-1,106.167,185.614,53.587,124.878,0.995913,-1,-1,-1
497,-1,512.02,124.44,125.217,292.226,0.995816,-1,-1,-1
497,-1,393.785,199.788,40.058,106.27,0.987623,-1,-1,-1
497,-1,437.58,232.512,25.893,76.748,0.95867,-1,-1,-1
497,-1,287.961,216.768,20.506,52.961,0.894764,-1,-1,-1
497,-1,345.666,220.73,19.681,68.531,0.894215,-1,-1,-1
497,-1,323.135,231.769,21.678,53.645,0.812424,-1,-1,-1
497,-1,313.574,218.764,18.806,65.502,0.610076,-1,-1,-1
498,-1,108.368,191.375,47.187,125.684,0.99527,-1,-1,-1
498,-1,184.337,185.875,51.69,107.271,0.993833,-1,-1,-1
498,-1,394.512,202.083,40.509,101.588,0.992293,-1,-1,-1
498,-1,540.749,144.231,98.251,267.941,0.958401,-1,-1,-1
498,-1,441.648,236.436,22.966,58.404,0.946292,-1,-1,-1
498,-1,318.129,232.62,19.183,48.886,0.923978,-1,-1,-1
498,-1,285.33,216.521,22.874,54.301,0.880747,-1,-1,-1
498,-1,345.543,234.861,15.053,46.725,0.6717,-1,-1,-1
498,-1,352.234,224.448,25.824,54.652,0.562038,-1,-1,-1
499,-1,187.442,176.076,48.728,116.805,0.995391,-1,-1,-1
499,-1,396.713,199.879,38.32,107.705,0.993393,-1,-1,-1
499,-1,571.098,290.427,61.999,166.308,0.991931,-1,-1,-1
499,-1,103.968,188.749,42.522,129.279,0.985302,-1,-1,-1
499,-1,442.547,238.634,19.636,58.599,0.944688,-1,-1,-1
499,-1,348.302,216.804,26.799,69.535,0.919156,-1,-1,-1
499,-1,289.376,218.129,23.548,52.218,0.919151,-1,-1,-1
499,-1,318.039,231.205,20.974,56.535,0.916975,-1,-1,-1
499,-1,518.328,219.104,21.602,63.123,0.805905,-1,-1,-1
499,-1,307.669,220.651,20.044,63.133,0.679295,-1,-1,-1
500,-1,184.634,182.95,46.912,111.772,0.995214,-1,-1,-1
500,-1,401.779,201.391,33.81,96.558,0.993485,-1,-1,-1
500,-1,93.991,183.48,46.233,138.926,0.989978,-1,-1,-1
500,-1,282.743,212.141,25.601,60.351,0.932118,-1,-1,-1
500,-1,440.835,229.712,21.427,74.014,0.927265,-1,-1,-1
500,-1,315.271,234.716,21.911,45.782,0.925861,-1,-1,-1
500,-1,354.915,216.3,22.094,66.23,0.910137,-1,-1,-1
501,-1,89.018,184.123,48.04,128.392,0.995251,-1,-1,-1
501,-1,182.931,177.086,44.777,110.99,0.994649,-1,-1,-1
501,-1,395.899,190.975,39.933,111.747,0.993583,-1,-1,-1
501,-1,441.517,231.432,21.583,67.975,0.954039,-1,-1,-1
501,-1,318.574,225.877,20.48,64.211,0.927818,-1,-1,-1
501,-1,348.912,222.042,27.465,62.289,0.919437,-1,-1,-1
501,-1,279.71,209.333,26.345,63.046,0.811154,-1,-1,-1
501,-1,512.197,211.627,32.408,77.937,0.710589,-1,-1,-1
501,-1,247.073,220.41,22.55,47.753,0.546707,-1,-1,-1
502,-1,179.42,178.109,45.398,115.237,0.995954,-1,-1,-1
502,-1,396.384,192.863,36.048,109.091,0.993951,-1,-1,-1
502,-1,74.8128,178.287,59.2072,134.316,0.979982,-1,-1,-1
502,-1,353.123,213.886,21.892,69.373,0.958768,-1,-1,-1
502,-1,440.234,216.277,23.301,97.898,0.901928,-1,-1,-1
502,-1,515.023,204.011,31.877,71.17,0.870043,-1,-1,-1
502,-1,313.78,228.876,17.646,55.727,0.705449,-1,-1,-1
502,-1,287.366,201.147,19.235,61.436,0.701475,-1,-1,-1
502,-1,249.113,210.282,24.169,49.765,0.690928,-1,-1,-1
503,-1,397.276,187.552,39.44,108.09,0.992966,-1,-1,-1
503,-1,175.549,173.834,49.656,119.552,0.992238,-1,-1,-1
503,-1,78.4703,183.219,46.2257,132.385,0.985534,-1,-1,-1
503,-1,522.467,213.997,24.528,68.475,0.973046,-1,-1,-1
503,-1,442.089,231.438,23.482,61.417,0.962774,-1,-1,-1
503,-1,348.785,213.707,23.562,72.057,0.947935,-1,-1,-1
503,-1,288.231,198.922,20.76,64.075,0.903334,-1,-1,-1
503,-1,314.49,229.019,16.837,54.234,0.759254,-1,-1,-1
503,-1,418.989,199.093,44.803,103.41,0.600185,-1,-1,-1
504,-1,397.998,191.327,42.856,113.926,0.992201,-1,-1,-1
504,-1,164.337,178.578,61.662,105.871,0.988791,-1,-1,-1
504,-1,526.881,212.457,26.727,74.594,0.980521,-1,-1,-1
504,-1,444.738,234.032,20.292,59.162,0.949665,-1,-1,-1
504,-1,345.818,206.177,27.265,80.508,0.948586,-1,-1,-1
504,-1,282.188,205.919,26.319,57.947,0.902509,-1,-1,-1
504,-1,316.167,226.401,20.618,54.144,0.898616,-1,-1,-1
504,-1,573.511,162.867,46.423,157.043,0.784236,-1,-1,-1
504,-1,65.223,174.193,60.865,132.454,0.778408,-1,-1,-1
504,-1,427.916,196.951,33.559,105.891,0.666206,-1,-1,-1
505,-1,397.766,194.093,47.468,108.636,0.992104,-1,-1,-1
505,-1,172.108,176.31,53.627,117.212,0.989095,-1,-1,-1
505,-1,525.759,212.583,28.728,75.822,0.965472,-1,-1,-1
505,-1,70.286,165.867,46.886,146.072,0.950465,-1,-1,-1
505,-1,283.674,206.618,22.382,60.059,0.939358,-1,-1,-1
505,-1,313.404,231.643,23.35,51.638,0.932359,-1,-1,-1
505,-1,443.118,227.666,26.804,74.757,0.922247,-1,-1,-1
505,-1,344.397,220.206,27.212,65.889,0.919921,-1,-1,-1
505,-1,577.785,174.099,42.371,143.879,0.851977,-1,-1,-1
505,-1,243.715,210.601,26.528,56.129,0.583037,-1,-1,-1
505,-1,427.151,203.268,30.419,106.597,0.522199,-1,-1,-1
506,-1,166.145,176.923,58.475,123.097,0.991111,-1,-1,-1
506,-1,393.715,201.608,48.22,105.516,0.990713,-1,-1,-1
506,-1,442.531,236.163,27.772,63.301,0.982784,-1,-1,-1
506,-1,581.971,176.66,39.808,151.149,0.969341,-1,-1,-1
506,-1,349.167,210.621,22.057,75.605,0.963198,-1,-1,-1
506,-1,58.3901,172.979,44.4729,143.538,0.962559,-1,-1,-1
506,-1,318.585,236.972,19.108,49.972,0.940613,-1,-1,-1
506,-1,527.09,218.114,27.953,77.575,0.91014,-1,-1,-1
506,-1,281.528,206.27,23.302,61.035,0.853084,-1,-1,-1
506,-1,562.912,212.021,27.283,95.007,0.778527,-1,-1,-1
507,-1,163.809,183.045,61.755,118.936,0.995445,-1,-1,-1
507,-1,401.677,193.428,37.379,118.947,0.990526,-1,-1,-1
507,-1,578.471,194.499,40.66,135.108,0.966919,-1,-1,-1
507,-1,443.064,237.808,26.696,65.992,0.962872,-1,-1,-1
507,-1,311.466,235.98,25.047,61.15,0.939055,-1,-1,-1
507,-1,350.488,222.983,17.702,63.01,0.937042,-1,-1,-1
507,-1,52.2679,181.226,56.3011,135.991,0.766082,-1,-1,-1
508,-1,160.641,172.738,63.269,138.045,0.996245,-1,-1,-1
508,-1,397.777,201.047,45.741,120.546,0.992553,-1,-1,-1
508,-1,350.775,221.042,24.446,69.981,0.983449,-1,-1,-1
508,-1,441.557,242.531,30.084,71.69,0.979775,-1,-1,-1
508,-1,49.5546,180.025,51.1724,151.549,0.960286,-1,-1,-1
508,-1,311.838,240.958,22.956,53.183,0.905921,-1,-1,-1
508,-1,585.541,203.882,33.105,123.219,0.890103,-1,-1,-1
508,-1,276.405,213.746,22.48,63.902,0.773477,-1,-1,-1
509,-1,159.198,172.03,55.371,138.502,0.994299,-1,-1,-1
509,-1,392.691,204.713,55.946,110.861,0.989369,-1,-1,-1
509,-1,451.763,243.036,26.107,69.361,0.978793,-1,-1,-1
509,-1,314.421,246.367,17.712,54.075,0.956902,-1,-1,-1
509,-1,353.297,229.075,19.943,66.684,0.880676,-1,-1,-1
509,-1,587.049,199.406,32.461,123.594,0.841315,-1,-1,-1
509,-1,48.4014,186.278,43.3506,138.429,0.783576,-1,-1,-1
509,-1,281.127,208.501,23.328,74.818,0.577179,-1,-1,-1
510,-1,156.533,175.613,57.144,135.731,0.996791,-1,-1,-1
510,-1,397.557,200.36,47.276,115.229,0.993157,-1,-1,-1
510,-1,445.999,249.22,29.386,67.622,0.989457,-1,-1,-1
510,-1,34.2342,179.618,50.5719,150.863,0.976253,-1,-1,-1
510,-1,349.723,232.286,25.917,60.176,0.912224,-1,-1,-1
510,-1,313.514,232.327,20.735,67.495,0.910159,-1,-1,-1
510,-1,274.776,211.719,27.1,69.645,0.904897,-1,-1,-1
510,-1,292.68,216.347,18.525,66.956,0.510875,-1,-1,-1
511,-1,155.072,176.524,59.131,136.846,0.997543,-1,-1,-1
511,-1,398.297,202.615,46.355,123.592,0.992561,-1,-1,-1
511,-1,446.701,248.096,32.373,75.711,0.989506,-1,-1,-1
511,-1,351.202,218.924,24.361,77.408,0.972675,-1,-1,-1
511,-1,35.6848,191.491,44.6229,142.688,0.968365,-1,-1,-1
511,-1,307.252,233.318,23.707,71.488,0.916176,-1,-1,-1
511,-1,268.664,216.294,27.934,68.178,0.858087,-1,-1,-1
511,-1,594.323,192.26,28.443,121.401,0.828014,-1,-1,-1
511,-1,322.72,223.63,25.6,71.485,0.757114,-1,-1,-1
511,-1,437.372,243.226,20.959,70.585,0.677816,-1,-1,-1
512,-1,155.558,173.309,55.189,139.643,0.99681,-1,-1,-1
512,-1,399.254,193.701,44.228,120.373,0.994608,-1,-1,-1
512,-1,20.5495,169.708,57.68,168.754,0.990134,-1,-1,-1
512,-1,445.334,236.246,29.642,76.734,0.984373,-1,-1,-1
512,-1,349.521,211.512,28.679,93.963,0.951194,-1,-1,-1
512,-1,314.622,238.412,21.93,55.676,0.939717,-1,-1,-1
512,-1,599.649,204.553,29.829,100.317,0.912756,-1,-1,-1
512,-1,267.685,215.965,24.261,62.928,0.856188,-1,-1,-1
512,-1,284.911,211.456,20.42,66.388,0.61115,-1,-1,-1
513,-1,152.49,177.316,47.995,138.248,0.995153,-1,-1,-1
513,-1,392.288,208.244,54.97,116.209,0.992226,-1,-1,-1
513,-1,15.0508,167.475,65.7191,170.157,0.991849,-1,-1,-1
513,-1,446.837,247.678,27.193,70.386,0.986173,-1,-1,-1
513,-1,352.661,225.314,22.253,65.872,0.973604,-1,-1,-1
513,-1,278.449,209.758,22.687,69.912,0.962857,-1,-1,-1
513,-1,313.608,244.66,20.699,55.658,0.951336,-1,-1,-1
513,-1,549.882,211.751,29.14,89.419,0.938179,-1,-1,-1
513,-1,598.929,209.482,30.845,105.653,0.86844,-1,-1,-1
513,-1,433.111,237.069,23.299,77.79,0.580206,-1,-1,-1
514,-1,145.724,173.887,57.799,139.417,0.997591,-1,-1,-1
514,-1,397.576,199.869,42.945,120.962,0.991795,-1,-1,-1
514,-1,10.8054,174.888,66.5175,153.103,0.988417,-1,-1,-1
514,-1,275.6,211.199,19.572,64.608,0.984994,-1,-1,-1
514,-1,444.456,236.464,29.207,81.189,0.981622,-1,-1,-1
514,-1,557.612,211.875,24.418,79.968,0.969889,-1,-1,-1
514,-1,312.426,236.679,19.301,56.361,0.966516,-1,-1,-1
514,-1,349.307,233.293,24.247,64.774,0.915807,-1,-1,-1
514,-1,233.653,219.222,24.827,52.972,0.591823,-1,-1,-1
515,-1,136.123,169.342,70.417,143.093,0.997336,-1,-1,-1
515,-1,396.086,204.535,35.908,112.868,0.990322,-1,-1,-1
515,-1,268.638,211.236,23.245,69.885,0.988414,-1,-1,-1
515,-1,10.3918,178.61,52.6705,153.476,0.987577,-1,-1,-1
515,-1,553.05,213.224,30.358,80.67,0.98573,-1,-1,-1
515,-1,442.127,222.045,34.868,104.059,0.976619,-1,-1,-1
515,-1,308.242,231.457,27.897,66.752,0.959977,-1,-1,-1
515,-1,351.595,235.481,19.875,58.061,0.948297,-1,-1,-1
516,-1,132.55,177.053,56.742,134.933,0.993934,-1,-1,-1
516,-1,389.679,198.373,41.693,119.614,0.992409,-1,-1,-1
516,-1,546.259,214.587,29.454,78.678,0.986652,-1,-1,-1
516,-1,261.837,204.618,23.257,80.955,0.983994,-1,-1,-1
516,-1,346.728,222.98,23.883,71.742,0.974207,-1,-1,-1
516,-1,301.088,226.714,25.797,64.245,0.967478,-1,-1,-1
516,-1,441.142,236.551,26.517,76.56,0.964125,-1,-1,-1
516,-1,1.49084,181.162,51.8945,136.672,0.641149,-1,-1,-1
516,-1,606.786,223.302,24.085,85.174,0.602843,-1,-1,-1
517,-1,121.578,168,57.369,153.077,0.996062,-1,-1,-1
517,-1,385.109,202.242,42.626,105.935,0.99235,-1,-1,-1
517,-1,248.974,203.171,26.23,76.086,0.981328,-1,-1,-1
517,-1,430.43,235.325,30.451,82.738,0.978332,-1,-1,-1
517,-1,540.27,212.468,33.558,85.928,0.971631,-1,-1,-1
517,-1,592.593,219.318,29.083,84.628,0.97104,-1,-1,-1
517,-1,293.54,230.284,28.381,69.945,0.965261,-1,-1,-1
517,-1,337.075,220.187,26.012,70.308,0.960097,-1,-1,-1
517,-1,212.845,216.846,31.754,55.554,0.721337,-1,-1,-1
517,-1,412.47,197.719,33.476,122.858,0.657235,-1,-1,-1
517,-1,4.33227,174.318,35.4924,136.486,0.575769,-1,-1,-1
518,-1,113.974,173.614,63.645,138.072,0.996765,-1,-1,-1
518,-1,376.319,197.48,41.285,112.401,0.99064,-1,-1,-1
518,-1,596.129,212.053,26.632,91.577,0.986413,-1,-1,-1
518,-1,327.348,212.096,30.02,89.384,0.984378,-1,-1,-1
518,-1,426.984,229.213,32.796,91.143,0.984291,-1,-1,-1
518,-1,538.207,209.934,30.951,81.856,0.981288,-1,-1,-1
518,-1,243.231,209.34,23.895,69.572,0.9797,-1,-1,-1
518,-1,290.292,229.712,25.808,69.651,0.950227,-1,-1,-1
519,-1,108.291,172.246,60.488,147.141,0.993632,-1,-1,-1
519,-1,375.29,201.194,40.464,105.064,0.991251,-1,-1,-1
519,-1,425.424,232.923,30.161,81.909,0.984248,-1,-1,-1
519,-1,537.196,211.644,31.293,96.602,0.98339,-1,-1,-1
519,-1,331.145,220.254,25.751,72.324,0.979514,-1,-1,-1
519,-1,244.739,197.634,29.513,87.86,0.967915,-1,-1,-1
519,-1,287.69,229.835,23.165,67.11,0.955614,-1,-1,-1
519,-1,592.789,215.204,34.354,78.333,0.902649,-1,-1,-1
519,-1,143.094,182.903,41.588,108.699,0.796515,-1,-1,-1
520,-1,370.282,193.129,46.632,127.295,0.994759,-1,-1,-1
520,-1,422.127,234.638,38.997,78.832,0.993026,-1,-1,-1
520,-1,103.901,164.301,56.868,151.688,0.992417,-1,-1,-1
520,-1,544.812,213.068,36.112,94.196,0.989201,-1,-1,-1
520,-1,238.357,206.159,27.02,80.307,0.980797,-1,-1,-1
520,-1,325.746,209.121,33.685,97.136,0.980756,-1,-1,-1
520,-1,287.661,224.249,26.554,65.803,0.974404,-1,-1,-1
520,-1,143.921,177.185,34.842,124.354,0.866001,-1,-1,-1
520,-1,592.232,210.561,34.424,92.014,0.585732,-1,-1,-1
521,-1,376.189,198.077,41.394,113.124,0.994617,-1,-1,-1
521,-1,428.161,238.07,34.198,75.082,0.988357,-1,-1,-1
521,-1,98.8092,163.654,58.3078,156.763,0.986717,-1,-1,-1
521,-1,326.452,211.048,36.968,92.814,0.982849,-1,-1,-1
521,-1,140.331,179.184,29.65,122.86,0.978562,-1,-1,-1
521,-1,236.746,201.472,36.215,84.261,0.976846,-1,-1,-1
521,-1,290.055,225.662,30.83,75.298,0.966373,-1,-1,-1
521,-1,545.789,203.297,37.083,102.719,0.9553,-1,-1,-1
521,-1,200.377,209.907,29.995,64.712,0.749246,-1,-1,-1
521,-1,593.214,204.397,41.638,60.178,0.572395,-1,-1,-1
522,-1,419.83,237.054,34.752,80.555,0.993007,-1,-1,-1
522,-1,371.597,194.801,42.341,129.439,0.992198,-1,-1,-1
522,-1,235.684,204.41,27.567,88.091,0.987959,-1,-1,-1
522,-1,96.7871,170.797,54.1889,164.864,0.986007,-1,-1,-1
522,-1,323.264,210.811,36.925,85.376,0.984149,-1,-1,-1
522,-1,550.565,226.37,29.831,78.794,0.981922,-1,-1,-1
522,-1,132.727,186.991,32.834,125.956,0.959841,-1,-1,-1
522,-1,290.43,226.798,24.473,67.949,0.944786,-1,-1,-1
523,-1,365.13,196.461,39.411,130.651,0.992534,-1,-1,-1
523,-1,421.277,245.923,32.079,75.472,0.992117,-1,-1,-1
523,-1,128.388,187.927,38.91,122.117,0.992017,-1,-1,-1
523,-1,321.244,213.875,36.331,80.295,0.989625,-1,-1,-1
523,-1,232.668,201.461,31.662,90.047,0.988425,-1,-1,-1
523,-1,87.2832,165.14,53.0518,172.356,0.988378,-1,-1,-1
523,-1,285.214,218.718,28.529,88.27,0.960144,-1,-1,-1
523,-1,552.197,217.646,29.765,98.974,0.937222,-1,-1,-1
523,-1,201.51,223.249,19.929,56.323,0.500268,-1,-1,-1
524,-1,114.468,178.417,46.385,140.506,0.99257,-1,-1,-1
524,-1,361.021,199.085,44.306,121.946,0.988941,-1,-1,-1
524,-1,222.159,208.116,29.573,82.079,0.985752,-1,-1,-1
524,-1,79.3281,173.22,50.0149,160.125,0.984868,-1,-1,-1
524,-1,319.372,211.019,26.874,84.675,0.978803,-1,-1,-1
524,-1,284.418,229.001,20.961,69.922,0.965297,-1,-1,-1
524,-1,412.439,224.089,28.286,93.512,0.953378,-1,-1,-1
524,-1,547.192,211.023,33.94,100.788,0.948554,-1,-1,-1
524,-1,200.518,215.193,21.321,64.779,0.663713,-1,-1,-1
524,-1,580.727,210.892,41.964,86.103,0.610198,-1,-1,-1
525,-1,110.143,177.177,41.566,135.706,0.993516,-1,-1,-1
525,-1,355.779,196.791,42.471,130.766,0.991233,-1,-1,-1
525,-1,313.631,221.457,27.241,75.78,0.988781,-1,-1,-1
525,-1,70.1975,159.445,52.5105,177.736,0.988727,-1,-1,-1
525,-1,214.115,201.855,39.015,91.027,0.987261,-1,-1,-1
525,-1,545.606,225.37,33.318,87.52,0.983223,-1,-1,-1
525,-1,409.544,222.237,37.38,99.572,0.979684,-1,-1,-1
525,-1,281.271,225.556,21.98,71.27,0.926056,-1,-1,-1
525,-1,595.935,223.243,34.169,62.179,0.737775,-1,-1,-1
525,-1,205.416,205.723,22.766,84.908,0.657725,-1,-1,-1
526,-1,99.5003,181.095,45.3087,130.008,0.992706,-1,-1,-1
526,-1,344.916,200.985,54.552,120.093,0.989409,-1,-1,-1
526,-1,211.746,200.764,29.133,83.596,0.987922,-1,-1,-1
526,-1,309.063,207.537,33.674,97.836,0.982369,-1,-1,-1
526,-1,542.035,214.566,32.048,102.781,0.979675,-1,-1,-1
526,-1,59.0675,137.442,51.3245,207.941,0.97683,-1,-1,-1
526,-1,403.364,221.795,28.676,100.768,0.96811,-1,-1,-1
526,-1,284.088,244.132,20.238,56.189,0.954716,-1,-1,-1
526,-1,179.585,217.573,27.139,61.681,0.772173,-1,-1,-1
526,-1,276.375,228.582,17.264,62.365,0.702969,-1,-1,-1
527,-1,100.373,179.486,42.31,124.915,0.994487,-1,-1,-1
527,-1,55.7656,159.333,53.9074,169.633,0.98883,-1,-1,-1
527,-1,350.55,198.689,39.61,120.732,0.988698,-1,-1,-1
527,-1,207.053,198.105,33.596,95.515,0.987923,-1,-1,-1
527,-1,313.812,214.93,28.199,80.439,0.984319,-1,-1,-1
527,-1,284.673,229.205,23.083,72.778,0.964852,-1,-1,-1
527,-1,401.259,227.612,32.258,83.321,0.934053,-1,-1,-1
527,-1,552.046,208.72,29.973,75.693,0.924672,-1,-1,-1
527,-1,597.311,201.607,34.692,61.37,0.83085,-1,-1,-1
527,-1,192.68,209.844,19.748,73.913,0.607673,-1,-1,-1
528,-1,99.4251,173.617,41.7249,144.092,0.993977,-1,-1,-1
528,-1,47.8675,142.578,56.6465,196.738,0.992341,-1,-1,-1
528,-1,352.328,200.803,41.196,117.556,0.991327,-1,-1,-1
528,-1,206.797,198.871,34.434,97.007,0.988495,-1,-1,-1
528,-1,307.414,196.959,37.186,105.211,0.976256,-1,-1,-1
528,-1,402.212,221.447,34.503,99.241,0.975489,-1,-1,-1
528,-1,553.706,217.217,30.039,83.653,0.973413,-1,-1,-1
528,-1,282.938,235.682,22.413,60.877,0.949642,-1,-1,-1
528,-1,598.369,205.011,36.268,70.154,0.816211,-1,-1,-1
528,-1,192.671,209.207,19.429,76.006,0.631978,-1,-1,-1
529,-1,347.109,193.736,48.649,127.672,0.991394,-1,-1,-1
529,-1,209.17,202.423,38.423,93.852,0.990375,-1,-1,-1
529,-1,101.15,173.314,36.331,139.805,0.9876,-1,-1,-1
529,-1,42.9129,148.729,49.3409,190.556,0.980282,-1,-1,-1
529,-1,559.131,213.644,30.124,76.345,0.979982,-1,-1,-1
529,-1,403.759,234.211,31.4,79.501,0.977283,-1,-1,-1
529,-1,304.939,204.706,35.035,101.55,0.95022,-1,-1,-1
529,-1,285.715,240.85,22.594,53.453,0.819592,-1,-1,-1
529,-1,191.214,205.267,31.059,90.803,0.741912,-1,-1,-1
529,-1,262.889,217.319,15.17,53.388,0.614934,-1,-1,-1
530,-1,31.1157,144.5,57.6261,199.053,0.997161,-1,-1,-1
530,-1,92.6255,172.238,41.7355,139.934,0.993804,-1,-1,-1
530,-1,336.85,197.809,58.671,125.994,0.989891,-1,-1,-1
530,-1,203.86,199.192,34.017,98.615,0.988987,-1,-1,-1
530,-1,399.326,231.317,36.272,98.674,0.986741,-1,-1,-1
530,-1,563.024,216.162,31.946,81.728,0.982493,-1,-1,-1
530,-1,305.175,202.943,36.034,101.152,0.953068,-1,-1,-1
530,-1,287.337,237.216,19.604,55.875,0.910002,-1,-1,-1
530,-1,255.772,209.071,22.435,62.663,0.831335,-1,-1,-1
530,-1,331.535,212.2,23.617,96.214,0.590802,-1,-1,-1
531,-1,27.8626,145.402,60.8573,206.437,0.997242,-1,-1,-1
531,-1,84.2232,177.998,47.1918,139.522,0.994704,-1,-1,-1
531,-1,347.607,202.503,42.522,120.518,0.991297,-1,-1,-1
531,-1,398.042,237.457,40.284,89.347,0.98889,-1,-1,-1
531,-1,184.575,200.952,44.995,95.588,0.988367,-1,-1,-1
531,-1,564.962,210.457,31.174,79.839,0.956365,-1,-1,-1
531,-1,281.746,230.617,22.987,60.638,0.954749,-1,-1,-1
531,-1,303.964,208.102,38.026,99.58,0.940883,-1,-1,-1
531,-1,256.398,213.414,16.363,49.824,0.853404,-1,-1,-1
531,-1,333.143,213.835,27.726,96.482,0.605754,-1,-1,-1
532,-1,20.5957,137.37,58.3865,209.91,0.998141,-1,-1,-1
532,-1,181.963,194.564,47.104,99.238,0.993758,-1,-1,-1
532,-1,86.3517,178.881,42.9983,134.323,0.993518,-1,-1,-1
532,-1,395.489,238.032,42.132,80.604,0.992409,-1,-1,-1
532,-1,339.027,191.369,49.701,130.091,0.98938,-1,-1,-1
532,-1,285.186,231.536,26.907,65.191,0.983117,-1,-1,-1
532,-1,573.203,210.604,30.821,67.826,0.949444,-1,-1,-1
532,-1,304.863,219.963,33.099,88.56,0.844814,-1,-1,-1
532,-1,329.623,210.142,33.317,88.439,0.515199,-1,-1,-1
533,-1,83.7232,179.514,42.2198,137.798,0.994916,-1,-1,-1
533,-1,183.243,188.39,58.503,103.804,0.994506,-1,-1,-1
533,-1,11.0096,128.63,66.0099,215.38,0.993399,-1,-1,-1
533,-1,335.952,196.257,49.098,126.852,0.990686,-1,-1,-1
533,-1,402.329,227.705,31.108,84.075,0.989033,-1,-1,-1
533,-1,286.097,235.093,26.385,65.318,0.96532,-1,-1,-1
533,-1,579.19,204.326,29.971,82.778,0.962928,-1,-1,-1
533,-1,308.252,204.293,32.349,103.249,0.772415,-1,-1,-1
534,-1,12.5475,116.01,52.9945,234.423,0.997617,-1,-1,-1
534,-1,184.931,184.641,50.823,115.968,0.994691,-1,-1,-1
534,-1,73.5876,165.241,43.9854,146.631,0.99211,-1,-1,-1
534,-1,336.763,191.719,43.309,125.211,0.98935,-1,-1,-1
534,-1,395.324,214.845,37.655,105.687,0.984252,-1,-1,-1
534,-1,587.559,198.251,33.123,79.079,0.962275,-1,-1,-1
534,-1,291.712,230.746,26.48,58.103,0.898612,-1,-1,-1
534,-1,314.699,218.183,22.984,79.38,0.858035,-1,-1,-1
534,-1,173.893,193.123,29.591,111.71,0.663173,-1,-1,-1
535,-1,11.6118,117.281,55.4694,238.083,0.995948,-1,-1,-1
535,-1,179.235,184.923,55.928,111.134,0.994137,-1,-1,-1
535,-1,74.2723,168.899,46.7277,143.713,0.993463,-1,-1,-1
535,-1,340.348,191.596,45.782,125.245,0.986935,-1,-1,-1
535,-1,400.545,227.346,34.053,83.901,0.983993,-1,-1,-1
535,-1,585.1,206.909,38.12,85.405,0.952749,-1,-1,-1
535,-1,309.322,222.535,24.567,68.39,0.90831,-1,-1,-1
535,-1,252.126,205.473,14.593,55.113,0.690718,-1,-1,-1
535,-1,292.24,221.058,27.371,59.943,0.601994,-1,-1,-1
536,-1,1.93143,114.128,68.0635,244.722,0.996938,-1,-1,-1
536,-1,167.222,194.88,65.461,103.724,0.994608,-1,-1,-1
536,-1,337.529,197.247,49.878,121.956,0.990583,-1,-1,-1
536,-1,75.8724,161.725,44.1296,154.904,0.99011,-1,-1,-1
536,-1,397.529,223.797,34.913,91.747,0.989569,-1,-1,-1
536,-1,593.954,199.058,30.198,89.799,0.942666,-1,-1,-1
536,-1,307.526,214.596,28.992,86.615,0.907974,-1,-1,-1
536,-1,250,202.83,18.604,64.686,0.839123,-1,-1,-1
536,-1,294.683,221.995,22.349,67.903,0.704609,-1,-1,-1
537,-1,326.952,191.747,72.798,125.185,0.993754,-1,-1,-1
537,-1,170.594,186.336,59.324,115.491,0.992841,-1,-1,-1
537,-1,71.6162,155.707,46.2108,161.084,0.990903,-1,-1,-1
537,-1,392.085,211.008,45.626,104.209,0.984961,-1,-1,-1
537,-1,446.969,218.493,25.03,71.487,0.915995,-1,-1,-1
537,-1,303.097,223.932,22.19,70.183,0.915271,-1,-1,-1
537,-1,0.493847,98.6586,58.0798,270.233,0.882262,-1,-1,-1
537,-1,603.96,196.143,25.417,86.331,0.85668,-1,-1,-1
537,-1,427.43,213.203,27.792,80.052,0.767347,-1,-1,-1
537,-1,252.038,207.676,20.459,57.803,0.610489,-1,-1,-1
538,-1,66.8043,164.572,52.4737,161.056,0.996565,-1,-1,-1
538,-1,168.594,180.67,58.609,137.167,0.994957,-1,-1,-1
538,-1,335.718,195.447,54.914,128.034,0.991375,-1,-1,-1
538,-1,393.745,216.65,46.793,106.035,0.984435,-1,-1,-1
538,-1,310.006,217.469,27.032,78.799,0.977744,-1,-1,-1
538,-1,5.02615,124.438,50.4002,178.192,0.956342,-1,-1,-1
538,-1,443.252,211.663,27.401,80.083,0.872131,-1,-1,-1
538,-1,258.241,217.326,15.004,50.412,0.782441,-1,-1,-1
538,-1,223.41,205.549,20.83,72.801,0.780245,-1,-1,-1
538,-1,447.066,193.805,56.749,112.999,0.563451,-1,-1,-1
539,-1,68.8728,151.782,45.2072,180.628,0.996084,-1,-1,-1
539,-1,171.78,188.001,47.524,135.072,0.992519,-1,-1,-1
539,-1,394.39,212.589,43.768,108.01,0.992505,-1,-1,-1
539,-1,340.522,198.138,43.973,132.156,0.990336,-1,-1,-1
539,-1,224.257,207.262,21.835,66.213,0.859157,-1,-1,-1
539,-1,3.40841,119.845,39.1889,134.857,0.84614,-1,-1,-1
539,-1,258.835,219.582,17.39,46.36,0.8418,-1,-1,-1
539,-1,313.658,215.877,24.964,81.901,0.80804,-1,-1,-1
539,-1,442.019,220.847,23.164,73.48,0.724696,-1,-1,-1
539,-1,465.885,208.758,26.91,93.927,0.543113,-1,-1,-1
539,-1,243.981,217.139,20.979,48.734,0.537263,-1,-1,-1
540,-1,49.3942,165.398,55.1108,147.744,0.997666,-1,-1,-1
540,-1,168.979,178.511,46.683,141.208,0.995314,-1,-1,-1
540,-1,321.853,192.654,84.19,121.163,0.988223,-1,-1,-1
540,-1,397.384,214.475,34.281,109.517,0.982488,-1,-1,-1
540,-1,318.568,205.782,27.828,91.635,0.90702,-1,-1,-1
540,-1,224.653,209.024,16.345,56.907,0.873063,-1,-1,-1
540,-1,467.274,204.226,29.884,93.485,0.770876,-1,-1,-1
540,-1,444.691,219.218,22.751,75.119,0.599733,-1,-1,-1
541,-1,49.8033,166.806,54.7027,150.38,0.997291,-1,-1,-1
541,-1,162.566,178.208,52.993,139.623,0.997224,-1,-1,-1
541,-1,398.724,235.263,39.549,85.073,0.98678,-1,-1,-1
541,-1,336.794,186.88,52.035,137.42,0.986353,-1,-1,-1
541,-1,315.645,212.61,28.135,86.097,0.898597,-1,-1,-1
541,-1,225.847,204.37,19.76,68.656,0.87201,-1,-1,-1
541,-1,258.081,215.918,15.514,46.007,0.81206,-1,-1,-1
541,-1,441.189,220.569,24.496,74.506,0.727806,-1,-1,-1
541,-1,478.714,207.327,28.035,97.648,0.715861,-1,-1,-1
541,-1,266.528,211.725,18.456,51.15,0.684015,-1,-1,-1
542,-1,59.8465,151.057,48.6375,180,0.997091,-1,-1,-1
542,-1,393.159,225.28,39.155,105.431,0.991296,-1,-1,-1
542,-1,323.261,195.232,77.68,124.063,0.989097,-1,-1,-1
542,-1,159.632,183.35,54.85,123.997,0.98788,-1,-1,-1
542,-1,226.367,208.616,18.273,66.277,0.916739,-1,-1,-1
542,-1,264.75,220.133,15.472,46.884,0.909948,-1,-1,-1
542,-1,455.96,209.125,56.8,97.83,0.901604,-1,-1,-1
542,-1,448.664,225.581,23.445,75.174,0.835884,-1,-1,-1
542,-1,280.199,221.591,15.963,45.304,0.789821,-1,-1,-1
542,-1,323.665,200.514,26.877,96.834,0.676244,-1,-1,-1
542,-1,461.124,220.253,21.985,72.518,0.575724,-1,-1,-1
542,-1,216.725,195.961,17.921,86.19,0.525684,-1,-1,-1
543,-1,48.5284,167.058,50.8645,154.848,0.996157,-1,-1,-1
543,-1,155.475,177.822,58.16,148.076,0.995422,-1,-1,-1
543,-1,396.526,226.935,42.781,112.229,0.993914,-1,-1,-1
543,-1,331.416,197.912,66.806,129.37,0.992862,-1,-1,-1
543,-1,463.619,215.718,33.993,89.846,0.961093,-1,-1,-1
543,-1,222.97,210.62,22.068,67.175,0.922017,-1,-1,-1
543,-1,266.076,217.702,21.205,46.238,0.901168,-1,-1,-1
543,-1,281.166,219.675,17.883,48.521,0.810884,-1,-1,-1
543,-1,320.832,207.598,24.959,78.519,0.786029,-1,-1,-1
543,-1,438.96,223.294,28.808,72.975,0.761426,-1,-1,-1
543,-1,293.024,219.815,16.963,52.967,0.530531,-1,-1,-1
544,-1,141.688,177.159,80.891,140.261,0.995934,-1,-1,-1
544,-1,44.9623,147.436,56.5127,181.99,0.994712,-1,-1,-1
544,-1,329.254,203.52,57.746,119.597,0.993799,-1,-1,-1
544,-1,400.14,231.911,35.032,91.742,0.984355,-1,-1,-1
544,-1,224.892,208.634,22.036,74.388,0.9527,-1,-1,-1
544,-1,442.863,225.502,30.401,72.082,0.894765,-1,-1,-1
544,-1,455.791,210.156,57.705,103.521,0.877269,-1,-1,-1
544,-1,271.15,215.01,19.489,53.926,0.720912,-1,-1,-1
544,-1,285.418,223.628,14.633,48.905,0.59557,-1,-1,-1
544,-1,295.508,219.309,17.536,53.83,0.594034,-1,-1,-1
544,-1,263.534,215.298,13.034,51.708,0.576758,-1,-1,-1
545,-1,143.338,175.254,68.938,160.108,0.998448,-1,-1,-1
545,-1,36.2239,170.799,54.3914,163.663,0.996912,-1,-1,-1
545,-1,395.488,228.934,40.503,107.676,0.994431,-1,-1,-1
545,-1,331.166,204.958,57.48,129.9,0.994109,-1,-1,-1
545,-1,217.029,212.459,24.373,66.271,0.949585,-1,-1,-1
545,-1,444.189,233.755,28.619,74.505,0.885354,-1,-1,-1
545,-1,480.186,209.521,30.078,101.161,0.785063,-1,-1,-1
546,-1,128.391,170.168,78.328,162.504,0.998606,-1,-1,-1
546,-1,33.1679,160.05,61.1945,178.14,0.996437,-1,-1,-1
546,-1,330.178,196.599,69.399,134.729,0.994492,-1,-1,-1
546,-1,401.16,228.251,41.522,107.473,0.988472,-1,-1,-1
546,-1,223.468,215.055,18.309,60.479,0.969752,-1,-1,-1
546,-1,446.33,232.186,31.265,64.68,0.949395,-1,-1,-1
546,-1,480.92,211.592,27.758,95.069,0.743049,-1,-1,-1
546,-1,301.647,211.747,14.597,62.041,0.674394,-1,-1,-1
546,-1,463.11,220.99,27.856,85.239,0.637918,-1,-1,-1
547,-1,124.389,164.783,81.223,177.579,0.998378,-1,-1,-1
547,-1,24.7181,154.595,59.4736,180.415,0.997981,-1,-1,-1
547,-1,330.644,189.026,73.269,138.587,0.995152,-1,-1,-1
547,-1,395.854,225.896,44.872,104.199,0.992568,-1,-1,-1
547,-1,222.857,219.248,19.237,56.415,0.972311,-1,-1,-1
547,-1,447.327,218.132,33.518,74.795,0.831809,-1,-1,-1
547,-1,305.168,212.305,16.57,55.769,0.664679,-1,-1,-1
547,-1,268.092,213.248,14.591,51.567,0.619051,-1,-1,-1
548,-1,21.8405,152.689,65.8702,172.962,0.996633,-1,-1,-1
548,-1,327.239,201.534,78.907,121.777,0.996586,-1,-1,-1
548,-1,114.567,160.881,81.042,182.907,0.996069,-1,-1,-1
548,-1,404.058,239.029,34.652,89.366,0.987291,-1,-1,-1
548,-1,221.966,214.382,17.537,53.917,0.975903,-1,-1,-1
548,-1,443.346,227.305,33.339,67.22,0.864962,-1,-1,-1
548,-1,492.546,201.346,29.306,117.595,0.70983,-1,-1,-1
549,-1,12.919,152.571,69.0952,181.291,0.998515,-1,-1,-1
549,-1,111.465,152.389,79.62,188.017,0.998351,-1,-1,-1
549,-1,337.512,195.547,64.779,132.693,0.992771,-1,-1,-1
549,-1,217.953,213.31,20.155,62.701,0.98204,-1,-1,-1
549,-1,400.692,244.215,32.419,83.675,0.979528,-1,-1,-1
549,-1,449.365,224.264,33.092,71.655,0.933062,-1,-1,-1
549,-1,483.236,209.795,25.053,93.945,0.882193,-1,-1,-1
549,-1,496.758,194.9,31.942,118.347,0.699889,-1,-1,-1
549,-1,229.945,203.999,17.695,64.474,0.51777,-1,-1,-1
549,-1,269.19,219.431,12.939,49.412,0.507979,-1,-1,-1
550,-1,91.9803,144.288,92.2677,206.676,0.997796,-1,-1,-1
550,-1,8.46555,147.587,69.2831,189.063,0.997455,-1,-1,-1
550,-1,329.584,184.996,65.069,149.921,0.994314,-1,-1,-1
550,-1,398.348,241.3,33.881,88.603,0.973219,-1,-1,-1
550,-1,222.694,211.377,17.892,57.848,0.972101,-1,-1,-1
550,-1,470.647,195.651,36.422,108.423,0.911317,-1,-1,-1
550,-1,449.734,222.644,36.166,72.492,0.790755,-1,-1,-1
550,-1,500.19,185.555,30.724,125.014,0.6298,-1,-1,-1
551,-1,90.9741,129.898,84.5869,230.884,0.998485,-1,-1,-1
551,-1,10.6278,143.083,64.0525,196.602,0.998263,-1,-1,-1
551,-1,335.486,182.956,62.336,150.457,0.993638,-1,-1,-1
551,-1,221.16,212.476,18.852,59.716,0.970474,-1,-1,-1
551,-1,399.528,239.837,39.788,90.231,0.957484,-1,-1,-1
551,-1,471.286,200.637,33.552,91.833,0.956472,-1,-1,-1
551,-1,450.05,223.732,33.482,64.554,0.757591,-1,-1,-1
551,-1,505.901,194.206,28.417,120.205,0.73174,-1,-1,-1
551,-1,386.411,200.069,28.475,85.177,0.551739,-1,-1,-1
552,-1,83.4533,139.376,85.6287,219.071,0.998438,-1,-1,-1
552,-1,16.2403,132.847,50.4484,211.185,0.99488,-1,-1,-1
552,-1,332.22,192.442,66.211,144.731,0.994481,-1,-1,-1
552,-1,468.438,217.946,33.466,79.571,0.96832,-1,-1,-1
552,-1,220.809,215.79,25.186,57.3,0.962549,-1,-1,-1
552,-1,403.329,220.245,36.886,111.082,0.947173,-1,-1,-1
552,-1,453.082,225.765,30.81,78.302,0.586748,-1,-1,-1
553,-1,79.5708,120.91,82.0272,251.787,0.997808,-1,-1,-1
553,-1,338.771,186.052,57.229,146.468,0.994422,-1,-1,-1
553,-1,11.0526,130.175,53.5403,202.008,0.99149,-1,-1,-1
553,-1,224.83,212.186,14.786,53.733,0.966837,-1,-1,-1
553,-1,403.904,213.328,33.806,122.348,0.965958,-1,-1,-1
553,-1,471.498,200.745,31.396,97.943,0.922154,-1,-1,-1
553,-1,450.433,217.574,29.728,74.029,0.706391,-1,-1,-1
553,-1,314.113,216.975,15.542,51.187,0.670065,-1,-1,-1
554,-1,70.4064,121.03,80.1086,251.374,0.996948,-1,-1,-1
554,-1,337.821,177.541,58.713,150.478,0.994825,-1,-1,-1
554,-1,408.136,216.582,31.968,112.456,0.969578,-1,-1,-1
554,-1,462.815,202.903,41.983,86.132,0.967471,-1,-1,-1
554,-1,10.9402,138.686,48.5847,187.968,0.963638,-1,-1,-1
554,-1,222.354,205.758,25.661,62.534,0.932405,-1,-1,-1
554,-1,314.885,211.423,13.396,52.006,0.589952,-1,-1,-1
555,-1,339.819,183.759,72.013,147.521,0.996793,-1,-1,-1
555,-1,5.40434,115.388,52.4246,229.962,0.98612,-1,-1,-1
555,-1,461.594,208.595,43.052,88.143,0.984763,-1,-1,-1
555,-1,405.19,212.171,40.61,118.737,0.979331,-1,-1,-1
555,-1,224.605,203.677,19.761,61.461,0.975287,-1,-1,-1
555,-1,58.0687,117.018,95.6933,246.676,0.965946,-1,-1,-1
555,-1,317.072,214.703,14.583,46.062,0.625353,-1,-1,-1
556,-1,31.0281,102.778,116.68,291.295,0.997113,-1,-1,-1
556,-1,350.364,185.672,60.743,132.682,0.996561,-1,-1,-1
556,-1,403.727,206.605,47.852,123.513,0.989872,-1,-1,-1
556,-1,469.249,208.183,42.82,91.15,0.971225,-1,-1,-1
556,-1,221.779,208.888,22.897,55.554,0.967426,-1,-1,-1
556,-1,4.09161,123.779,37.3974,168.543,0.922621,-1,-1,-1
556,-1,316.451,214.294,16.335,46.508,0.80245,-1,-1,-1
556,-1,457.013,218.046,26.724,57.622,0.731687,-1,-1,-1
556,-1,280.008,207.963,22.503,56.606,0.723799,-1,-1,-1
556,-1,514.842,178.637,39.209,129.994,0.619519,-1,-1,-1
557,-1,345.011,188.282,72.309,129.004,0.996719,-1,-1,-1
557,-1,10.9401,93.7866,131.01,315.575,0.996485,-1,-1,-1
557,-1,405.421,203.036,46.105,126.926,0.979234,-1,-1,-1
557,-1,225.087,207.677,21.798,61.487,0.971408,-1,-1,-1
557,-1,480.045,196.542,40.224,105.464,0.950075,-1,-1,-1
557,-1,314.101,214.255,14.152,43.827,0.893352,-1,-1,-1
557,-1,454.294,213.572,39.436,88.597,0.790802,-1,-1,-1
557,-1,281.61,207.703,15.065,45.229,0.731554,-1,-1,-1
557,-1,295.036,209.701,14.195,47.948,0.647044,-1,-1,-1
557,-1,513.75,161.7,43.78,159.051,0.570902,-1,-1,-1
558,-1,7.45104,71.7585,108.845,354.86,0.997325,-1,-1,-1
558,-1,339.012,178.34,78.965,135.766,0.996372,-1,-1,-1
558,-1,471.316,201.553,45.257,98.976,0.977438,-1,-1,-1
558,-1,408.128,196.117,44.287,137.862,0.961976,-1,-1,-1
558,-1,18.4673,78.1928,70.2125,155.733,0.959135,-1,-1,-1
558,-1,221.211,202.11,27.262,65.508,0.936367,-1,-1,-1
558,-1,311.227,212.505,24.246,51.131,0.922274,-1,-1,-1
558,-1,280.551,208.007,14.673,50.7,0.850999,-1,-1,-1
558,-1,293.42,211.343,15.493,44.021,0.796815,-1,-1,-1
559,-1,339.283,179.568,85.756,142.47,0.997212,-1,-1,-1
559,-1,0.334343,54.1113,102.802,379.893,0.986054,-1,-1,-1
559,-1,475.47,210.907,42.515,88.684,0.973169,-1,-1,-1
559,-1,414.86,212.671,37.541,117.515,0.970593,-1,-1,-1
559,-1,225.448,199.766,17.835,65.292,0.962331,-1,-1,-1
559,-1,8.35891,67.6316,68.6412,158.767,0.904301,-1,-1,-1
559,-1,315.324,210.141,16.169,48.95,0.830587,-1,-1,-1
559,-1,273.1,207.458,13.479,47.695,0.510083,-1,-1,-1
559,-1,281.972,205.843,17.079,54.819,0.508224,-1,-1,-1
560,-1,348.228,185.267,61.825,138.047,0.997104,-1,-1,-1
560,-1,216.393,208.984,31.217,62.212,0.97884,-1,-1,-1
560,-1,417.543,225.674,35.243,105.3,0.974397,-1,-1,-1
560,-1,2.5542,32.7479,104.359,401.02,0.972315,-1,-1,-1
560,-1,481.632,207.704,38.411,97.076,0.962222,-1,-1,-1
560,-1,313.627,219.853,13.843,45.562,0.87521,-1,-1,-1
560,-1,0,57.3153,54.8639,177.478,0.749043,-1,-1,-1
561,-1,352.623,187.064,74.334,149.089,0.997495,-1,-1,-1
561,-1,413.787,233.097,50.292,109.278,0.979354,-1,-1,-1
561,-1,223.785,207.975,16.942,60.364,0.968276,-1,-1,-1
561,-1,483.75,201.263,43.824,111.432,0.965984,-1,-1,-1
561,-1,314.538,222.623,14.754,50.518,0.897301,-1,-1,-1
561,-1,544.281,184.647,37.291,139.298,0.539629,-1,-1,-1
561,-1,4.39775,231.189,72.8794,218.441,0.503967,-1,-1,-1
562,-1,348.666,178.686,72.716,158.757,0.994951,-1,-1,-1
562,-1,491.962,208.658,38.417,86.073,0.950169,-1,-1,-1
562,-1,217.123,215.132,31.408,64.15,0.949591,-1,-1,-1
562,-1,416.177,224.704,49.695,118.121,0.949137,-1,-1,-1
562,-1,310.558,218.894,25.015,52.48,0.879093,-1,-1,-1
562,-1,17.6448,155.286,49.9774,99.334,0.861115,-1,-1,-1
562,-1,272.026,210.376,13.51,57.78,0.674538,-1,-1,-1
562,-1,103.116,182.974,29.381,68.552,0.604092,-1,-1,-1
562,-1,6.93868,278.259,46.9325,182.528,0.597242,-1,-1,-1
563,-1,359.838,182.041,52.047,162.04,0.997441,-1,-1,-1
563,-1,221.63,210.719,24.219,73.134,0.975556,-1,-1,-1
563,-1,486.417,218.593,41.956,85.846,0.969504,-1,-1,-1
563,-1,420.285,223.413,33.945,120.845,0.947354,-1,-1,-1
563,-1,22.4031,156.685,39.5856,86.049,0.921891,-1,-1,-1
563,-1,309.926,218.377,17.864,51.756,0.854931,-1,-1,-1
563,-1,558.825,179.854,45.317,146.405,0.755605,-1,-1,-1
563,-1,464.198,226.403,30.904,80.154,0.593655,-1,-1,-1
563,-1,284.911,220.52,13.212,54.427,0.502779,-1,-1,-1
564,-1,359.183,177.28,58.415,180.822,0.995369,-1,-1,-1
564,-1,221.126,214.946,24.164,69.78,0.978382,-1,-1,-1
564,-1,423.808,216.289,40.49,130.904,0.967249,-1,-1,-1
564,-1,488.221,213.854,39.314,92.157,0.966038,-1,-1,-1
564,-1,20.6611,166.368,38.0325,81.848,0.889319,-1,-1,-1
564,-1,556.101,192.654,49.516,137.199,0.888915,-1,-1,-1
564,-1,179.643,214.523,16.177,61.409,0.776747,-1,-1,-1
564,-1,309.744,222.727,17.146,50.253,0.752696,-1,-1,-1
565,-1,350.497,187.093,80.253,157.519,0.995739,-1,-1,-1
565,-1,221.71,216.354,20.732,63.096,0.989616,-1,-1,-1
565,-1,420.678,223.42,35.709,130.427,0.958184,-1,-1,-1
565,-1,17.6351,162.336,39.9908,91.942,0.933156,-1,-1,-1
565,-1,567.33,198.401,47.741,136.587,0.890994,-1,-1,-1
565,-1,313.883,224.723,14.409,45.323,0.780826,-1,-1,-1
565,-1,493.936,212.913,44.511,105.84,0.743617,-1,-1,-1
565,-1,274.41,222.27,12.534,44.828,0.597279,-1,-1,-1
565,-1,177.586,213.159,15.365,58.736,0.570892,-1,-1,-1
565,-1,449.828,217.531,26.838,46.278,0.540137,-1,-1,-1
565,-1,420.801,211.325,26.793,55.664,0.518847,-1,-1,-1
566,-1,355.658,188,65.986,162.426,0.996067,-1,-1,-1
566,-1,215.309,223.953,29.333,56.767,0.983072,-1,-1,-1
566,-1,16.3479,167.475,32.2535,73.625,0.958047,-1,-1,-1
566,-1,566.277,195.229,52.101,138.317,0.919,-1,-1,-1
566,-1,425.536,232.712,44.331,120.611,0.879251,-1,-1,-1
566,-1,318.613,222.802,17.403,60.328,0.840536,-1,-1,-1
566,-1,176.866,218.162,21.204,64.813,0.83365,-1,-1,-1
566,-1,472.256,234.258,63.677,85.848,0.599941,-1,-1,-1
567,-1,358.155,179.907,56.029,175.097,0.996829,-1,-1,-1
567,-1,218.609,218.097,22.309,70.618,0.980921,-1,-1,-1
567,-1,567.334,193.587,51.739,153.034,0.927457,-1,-1,-1
567,-1,433.189,229.657,40.748,129.807,0.927313,-1,-1,-1
567,-1,11.6605,169.944,39.4978,60.967,0.90179,-1,-1,-1
567,-1,313.373,226.192,17.225,55.37,0.860904,-1,-1,-1
567,-1,503.564,224.745,45.792,94.518,0.851578,-1,-1,-1
567,-1,177.502,216.929,17.657,59.934,0.624082,-1,-1,-1
567,-1,268.968,221.571,14.476,57.766,0.622774,-1,-1,-1
567,-1,425.574,217.494,29.097,53.509,0.540837,-1,-1,-1
567,-1,302.742,230.765,15.378,51.527,0.538923,-1,-1,-1
568,-1,357.491,181.978,66.003,174.853,0.995748,-1,-1,-1
568,-1,222.863,214.246,19.096,65.075,0.991862,-1,-1,-1
568,-1,14.9162,156.853,31.8793,56.481,0.899129,-1,-1,-1
568,-1,430.233,226.72,43.899,123.614,0.783697,-1,-1,-1
568,-1,315.412,221.966,18.791,51,0.770732,-1,-1,-1
568,-1,504.25,221.721,44.783,91.248,0.71848,-1,-1,-1
568,-1,428.413,212.188,25.177,60.442,0.6326,-1,-1,-1
568,-1,271.688,220.014,14.64,50.879,0.605728,-1,-1,-1
568,-1,284.57,221.026,13.663,57.03,0.541958,-1,-1,-1
568,-1,578.957,191.008,41.461,151.887,0.519389,-1,-1,-1
569,-1,364.684,179.457,61.012,181.066,0.996939,-1,-1,-1
569,-1,219.821,217.893,20.984,68.56,0.984549,-1,-1,-1
569,-1,8.32199,149.734,35.2368,85.384,0.936423,-1,-1,-1
569,-1,316.869,222.674,18.093,51.73,0.921786,-1,-1,-1
569,-1,166.952,204.709,26.537,70.596,0.86585,-1,-1,-1
569,-1,434.676,226.904,47.463,123.588,0.852966,-1,-1,-1
569,-1,434.543,211.077,27.816,50.567,0.841924,-1,-1,-1
569,-1,480.927,226.083,72.993,91.903,0.781789,-1,-1,-1
569,-1,271.705,215.693,14.995,49.877,0.758053,-1,-1,-1
570,-1,355.408,173.532,66.381,181.091,0.99648,-1,-1,-1
570,-1,223.836,213.167,23.363,63.713,0.993568,-1,-1,-1
570,-1,4.81042,146.841,39.842,96.872,0.9583,-1,-1,-1
570,-1,442.241,215.543,41.761,136.099,0.955879,-1,-1,-1
570,-1,172.66,209.704,24.83,62.717,0.91837,-1,-1,-1
570,-1,437.324,206.728,25.38,56.478,0.875115,-1,-1,-1
570,-1,276.298,217.507,17.455,50.321,0.867356,-1,-1,-1
570,-1,589.288,173.828,42.177,166.384,0.81807,-1,-1,-1
570,-1,320.421,217.672,14.797,50.181,0.748685,-1,-1,-1
570,-1,487.201,229.036,43.947,88.487,0.676519,-1,-1,-1
570,-1,288.89,215.335,15.423,56.622,0.575639,-1,-1,-1
571,-1,363.898,177.664,72.532,169.581,0.998023,-1,-1,-1
571,-1,218.486,212.737,20.245,72.045,0.982758,-1,-1,-1
571,-1,442.903,226.205,45.526,132.274,0.93573,-1,-1,-1
571,-1,6.09122,144.999,38.0468,91.578,0.930627,-1,-1,-1
571,-1,441.504,205.561,26.179,62.759,0.904686,-1,-1,-1
571,-1,178.334,200.622,19.378,74.063,0.727096,-1,-1,-1
571,-1,320.52,222.308,16.229,50.647,0.726385,-1,-1,-1
571,-1,274.617,219.522,15.847,48.967,0.652693,-1,-1,-1
572,-1,356.905,174.525,84.377,181.154,0.997168,-1,-1,-1
572,-1,206.475,211.574,37.929,72.94,0.985362,-1,-1,-1
572,-1,445.688,217.875,50.268,144.284,0.976979,-1,-1,-1
572,-1,5.88226,145.764,38.0675,88.639,0.9344,-1,-1,-1
572,-1,281.681,211.641,15.328,55.004,0.801018,-1,-1,-1
572,-1,322.82,223.145,15.152,47.721,0.603702,-1,-1,-1
573,-1,365.49,171.917,71.357,184.49,0.997404,-1,-1,-1
573,-1,217.488,199.935,23.142,77.502,0.992364,-1,-1,-1
573,-1,452.329,215.062,54.142,136.905,0.986291,-1,-1,-1
573,-1,0,148.115,39.4907,94.886,0.864899,-1,-1,-1
573,-1,169.637,200.477,17.538,69.501,0.6088,-1,-1,-1
573,-1,325.883,219.852,14.283,51.436,0.576328,-1,-1,-1
573,-1,315.901,217.928,14.739,51.853,0.537933,-1,-1,-1
574,-1,365.527,168.319,85.151,185.947,0.996937,-1,-1,-1
574,-1,215.448,204.135,26.927,72.451,0.990393,-1,-1,-1
574,-1,454.199,217.323,55.417,147.671,0.97935,-1,-1,-1
574,-1,0,149.008,35.8039,86.653,0.873039,-1,-1,-1
574,-1,315.5,211.438,16.161,55.445,0.573593,-1,-1,-1
574,-1,180.236,195.476,14.761,71.442,0.508593,-1,-1,-1
575,-1,375.801,167.554,78.641,189.398,0.996895,-1,-1,-1
575,-1,214.445,203.759,28.781,76.396,0.99,-1,-1,-1
575,-1,469.944,224.743,49.194,133.696,0.982009,-1,-1,-1
575,-1,315.088,212.048,19.001,59.865,0.789948,-1,-1,-1
575,-1,265.77,213.947,14.552,54.221,0.593329,-1,-1,-1
576,-1,368.718,161.457,86.259,198.826,0.99575,-1,-1,-1
576,-1,208.95,206.31,34.975,68.937,0.989336,-1,-1,-1
576,-1,462.721,224.15,61.067,139.34,0.982004,-1,-1,-1
576,-1,316.905,215.982,17.949,48.876,0.941094,-1,-1,-1
577,-1,366.77,170.495,98.641,183.355,0.992887,-1,-1,-1
577,-1,207.958,204.087,37.606,73.705,0.990338,-1,-1,-1
577,-1,474.692,220.068,52.024,144.267,0.974847,-1,-1,-1
577,-1,575.508,206.065,41.771,106.065,0.852433,-1,-1,-1
577,-1,315.174,209.302,21.378,62.761,0.804719,-1,-1,-1
578,-1,374.911,163.373,96.8,189.041,0.994895,-1,-1,-1
578,-1,473.621,226.782,60.494,139.017,0.993811,-1,-1,-1
578,-1,206.001,202.394,37.279,75.372,0.988602,-1,-1,-1
578,-1,581.41,198.637,46.637,87.259,0.917936,-1,-1,-1
578,-1,161.656,205.646,22.64,61.94,0.869018,-1,-1,-1
578,-1,351.453,180.236,41.719,112.456,0.620529,-1,-1,-1
579,-1,483.244,229.136,52.685,142.415,0.997439,-1,-1,-1
579,-1,206.899,198.922,38.593,76.724,0.990213,-1,-1,-1
579,-1,378.337,166.981,101.499,188.324,0.985691,-1,-1,-1
579,-1,588.128,204.681,32.113,104.686,0.927333,-1,-1,-1
579,-1,159.986,199.445,20.017,68.397,0.813041,-1,-1,-1
579,-1,550.646,216.428,55.759,95.52,0.811725,-1,-1,-1
579,-1,351.505,193.052,34.056,103.122,0.70764,-1,-1,-1
580,-1,479.13,229.628,59.891,147.987,0.99523,-1,-1,-1
580,-1,577.087,194.917,46.126,120.857,0.992823,-1,-1,-1
580,-1,400.532,164.107,73.58,203.693,0.992097,-1,-1,-1
580,-1,205.134,198.451,39.27,78.189,0.987076,-1,-1,-1
580,-1,160.376,197.25,27.87,74.277,0.935605,-1,-1,-1
580,-1,350.394,183.201,34.466,121.296,0.898029,-1,-1,-1
580,-1,380.427,163.256,32.849,36.954,0.601292,-1,-1,-1
581,-1,393.404,149.939,88.519,222.695,0.997447,-1,-1,-1
581,-1,493.252,224.34,52.653,156.742,0.997378,-1,-1,-1
581,-1,219.023,201.79,25.513,81.538,0.955268,-1,-1,-1
581,-1,567.396,206.356,47.023,118.982,0.938913,-1,-1,-1
581,-1,157.32,203.123,27.722,74.459,0.924214,-1,-1,-1
581,-1,324.651,210.505,20.716,62.783,0.909624,-1,-1,-1
581,-1,269.872,215.214,16.363,47.056,0.865564,-1,-1,-1
581,-1,364.944,176.428,47.267,134.96,0.779806,-1,-1,-1
581,-1,352.747,179.554,30.728,112.656,0.716677,-1,-1,-1
582,-1,497.424,219.021,68.237,166.934,0.997541,-1,-1,-1
582,-1,408.584,160.596,75.051,219.16,0.995158,-1,-1,-1
582,-1,206.657,208.756,37.363,71.772,0.988752,-1,-1,-1
582,-1,350.338,180.771,37.615,125.28,0.952167,-1,-1,-1
582,-1,161.658,200.832,27.411,79.937,0.942987,-1,-1,-1
582,-1,577.126,204.167,41.023,123.633,0.726062,-1,-1,-1
582,-1,327.076,214.352,15.908,55.249,0.70641,-1,-1,-1
582,-1,367.765,166.491,46.334,122.963,0.700369,-1,-1,-1
582,-1,273.368,209.925,25.87,45.176,0.688798,-1,-1,-1
583,-1,416.095,157.353,70.079,221.763,0.994781,-1,-1,-1
583,-1,215.108,198.849,23.949,79.439,0.992539,-1,-1,-1
583,-1,507.704,214.29,54.228,177.883,0.98449,-1,-1,-1
583,-1,162.002,197.265,28.964,79.051,0.983158,-1,-1,-1
583,-1,349.599,179.968,42.64,117.727,0.957251,-1,-1,-1
583,-1,378.266,164.886,50.778,132.716,0.826742,-1,-1,-1
583,-1,279.089,218.004,21.773,48.507,0.764474,-1,-1,-1
583,-1,570.524,209.789,47.894,108.745,0.527802,-1,-1,-1
584,-1,505.547,213.489,67.737,178.866,0.997735,-1,-1,-1
584,-1,412.16,143.54,92.282,246.483,0.996095,-1,-1,-1
584,-1,213.76,204.115,27.35,80.389,0.991783,-1,-1,-1
584,-1,164.937,196.148,26.11,81.251,0.984194,-1,-1,-1
584,-1,353.534,180.96,46.161,126.35,0.983381,-1,-1,-1
584,-1,378.442,172.465,50.696,188.257,0.971145,-1,-1,-1
584,-1,289.188,220.101,20.671,45.059,0.814946,-1,-1,-1
585,-1,522.875,222.927,63.731,173.278,0.998261,-1,-1,-1
585,-1,400.512,144.899,111.056,233.747,0.996902,-1,-1,-1
585,-1,211.788,204.217,27.848,80.198,0.991722,-1,-1,-1
585,-1,354.412,175.889,44.831,129.879,0.980916,-1,-1,-1
585,-1,166.687,195.925,25.88,86.682,0.955428,-1,-1,-1
585,-1,383.751,174.07,43.398,153.53,0.90775,-1,-1,-1
585,-1,293.485,220.41,22.079,49.814,0.548194,-1,-1,-1
586,-1,521.534,224.599,66.228,176.38,0.996775,-1,-1,-1
586,-1,425.534,144.392,85.755,251.187,0.996102,-1,-1,-1
586,-1,218.79,195.459,20.631,84.658,0.988348,-1,-1,-1
586,-1,348.027,173.047,49.486,131.422,0.98829,-1,-1,-1
586,-1,166.777,205.681,20.061,77.912,0.986476,-1,-1,-1
586,-1,388.53,162.018,39.756,164.662,0.917853,-1,-1,-1
586,-1,584.202,212.948,50.773,57.233,0.840536,-1,-1,-1
586,-1,292.439,211.251,26.207,51.284,0.53811,-1,-1,-1
587,-1,350.049,179.044,49.328,129.943,0.99356,-1,-1,-1
587,-1,412.149,143.847,113.996,246.495,0.993127,-1,-1,-1
587,-1,222.326,202.058,19.298,85.378,0.98896,-1,-1,-1
587,-1,168.271,206.01,20.222,78.035,0.988442,-1,-1,-1
587,-1,534.426,234.947,65.438,171.366,0.96798,-1,-1,-1
587,-1,593.311,206.93,42.164,62.417,0.854403,-1,-1,-1
587,-1,392.736,158.335,47.863,130.805,0.783704,-1,-1,-1
588,-1,351.656,178.877,51.45,126.879,0.995601,-1,-1,-1
588,-1,167.131,206.251,29.881,80.651,0.983984,-1,-1,-1
588,-1,222.61,209.964,27.461,74.489,0.982794,-1,-1,-1
588,-1,425.705,147.913,108.841,256.856,0.94794,-1,-1,-1
588,-1,284.199,211.689,15.563,46.406,0.88178,-1,-1,-1
588,-1,399.424,154.39,46.643,115.074,0.876279,-1,-1,-1
588,-1,545.746,216.067,54.661,107.393,0.845874,-1,-1,-1
589,-1,356.484,180.561,43.761,130.581,0.992878,-1,-1,-1
589,-1,175.136,196.921,27.575,84.715,0.991758,-1,-1,-1
589,-1,219.463,211.245,36.429,75.183,0.987961,-1,-1,-1
589,-1,443.873,145.756,112.879,241.173,0.981583,-1,-1,-1
589,-1,547.045,204.122,83.136,204.44,0.974093,-1,-1,-1
589,-1,402.738,155.178,45.464,118.928,0.814747,-1,-1,-1
589,-1,565.28,219.443,46.887,66.043,0.66049,-1,-1,-1
590,-1,356.426,168.716,65.833,140.847,0.998067,-1,-1,-1
590,-1,185.016,195.615,27.451,83.498,0.987639,-1,-1,-1
590,-1,233.258,200.208,38.057,85.832,0.985035,-1,-1,-1
590,-1,553.213,212.446,81.684,188.899,0.957182,-1,-1,-1
590,-1,453.63,148.735,109.768,261.187,0.94605,-1,-1,-1
590,-1,416.536,157.801,48.885,141.164,0.866817,-1,-1,-1
590,-1,293.224,214.8,26.809,52.772,0.861752,-1,-1,-1
591,-1,360.148,164.767,59.944,155.622,0.996839,-1,-1,-1
591,-1,468.665,130.159,115.286,279.62,0.991637,-1,-1,-1
591,-1,181.749,196.021,41.777,84.537,0.977292,-1,-1,-1
591,-1,242.708,186.686,25.101,100.759,0.961406,-1,-1,-1
591,-1,569.73,212.451,61.294,180.792,0.939139,-1,-1,-1
591,-1,423.767,149.827,55.935,132.296,0.862282,-1,-1,-1
591,-1,298.938,204.99,14.66,48.994,0.751703,-1,-1,-1
592,-1,356.55,152.693,64.493,174.751,0.997788,-1,-1,-1
592,-1,474.714,118.083,112.844,308.532,0.991185,-1,-1,-1
592,-1,185.419,193.003,26.364,94.159,0.989243,-1,-1,-1
592,-1,230.837,194.32,37.123,97.27,0.970052,-1,-1,-1
592,-1,439.158,145.599,45.592,127.758,0.932618,-1,-1,-1
592,-1,299.586,212.654,16.252,45.09,0.927706,-1,-1,-1
592,-1,575.829,207.432,50.818,169.715,0.858194,-1,-1,-1
592,-1,290.745,213.858,17.037,54.467,0.812123,-1,-1,-1
593,-1,355.135,155.916,68.695,174.705,0.99855,-1,-1,-1
593,-1,481.693,113.85,117.674,309.019,0.99496,-1,-1,-1
593,-1,228.996,200.734,39.469,78.688,0.987439,-1,-1,-1
593,-1,179.231,192.345,33.416,80.462,0.985837,-1,-1,-1
593,-1,427.209,140.496,70.765,150.134,0.96087,-1,-1,-1
593,-1,299.895,211.184,14.968,44.394,0.925383,-1,-1,-1
593,-1,581.932,205.477,46.886,144.849,0.74543,-1,-1,-1
594,-1,361.687,159.812,56.137,167.781,0.998226,-1,-1,-1
594,-1,494.786,118.923,115.445,308.16,0.994865,-1,-1,-1
594,-1,244.572,194.644,29.563,82.905,0.984648,-1,-1,-1
594,-1,187.874,196.924,26.998,84.036,0.977403,-1,-1,-1
594,-1,299.094,203.382,17.446,51.456,0.954042,-1,-1,-1
594,-1,441.408,128.554,63.55,162.354,0.944152,-1,-1,-1
595,-1,499.816,113.62,114.917,338.277,0.99778,-1,-1,-1
595,-1,365.848,168.731,61.15,162.202,0.997505,-1,-1,-1
595,-1,246.879,192.516,24.778,98.509,0.989984,-1,-1,-1
595,-1,190.904,192.198,19.987,90.406,0.978605,-1,-1,-1
595,-1,434.827,116.941,82.944,294.179,0.963318,-1,-1,-1
595,-1,301.436,212.454,15.073,42.778,0.816061,-1,-1,-1
595,-1,474.255,133.86,42.534,130.836,0.745891,-1,-1,-1
596,-1,355.359,153.299,67.413,182.689,0.998938,-1,-1,-1
596,-1,508.019,103.907,122.879,362.098,0.998854,-1,-1,-1
596,-1,439.97,126.81,85.458,285.487,0.981685,-1,-1,-1
596,-1,244.081,188.899,30.756,100.77,0.980878,-1,-1,-1
596,-1,194.627,186.306,24.612,96.193,0.978249,-1,-1,-1
596,-1,294.817,211.089,24.508,53.375,0.8512,-1,-1,-1
596,-1,460.925,131.586,56.383,124.456,0.545855,-1,-1,-1
597,-1,345.957,143.845,75.394,198.252,0.998841,-1,-1,-1
597,-1,532.094,86.1036,101.215,387.761,0.998143,-1,-1,-1
597,-1,240.117,189.443,31.591,107.498,0.989979,-1,-1,-1
597,-1,446.928,124.765,81.329,279.003,0.986674,-1,-1,-1
597,-1,185.907,196.183,27.816,96.314,0.98559,-1,-1,-1
597,-1,301.154,218.736,22.324,43.999,0.740128,-1,-1,-1
597,-1,483.237,143.705,40.246,145.415,0.695399,-1,-1,-1
598,-1,348.536,142.962,68.224,195.047,0.998899,-1,-1,-1
598,-1,532.188,87.4886,106.812,391.511,0.996311,-1,-1,-1
598,-1,177.708,205.035,40.799,80.169,0.99088,-1,-1,-1
598,-1,239.946,191.094,32.37,106.37,0.990373,-1,-1,-1
598,-1,463.382,127.773,67.564,186.384,0.981001,-1,-1,-1
599,-1,351.83,147.533,70.503,206.924,0.99891,-1,-1,-1
599,-1,531.736,74.0711,107.264,404.929,0.996847,-1,-1,-1
599,-1,177.351,206.775,40.182,78.941,0.990661,-1,-1,-1
599,-1,237.65,193.406,28.788,99.001,0.98971,-1,-1,-1
599,-1,458.743,112.915,79.637,304.718,0.987062,-1,-1,-1
600,-1,335.105,139.303,91.799,213.855,0.999121,-1,-1,-1
600,-1,547.582,54.8705,91.418,410.947,0.997302,-1,-1,-1
600,-1,470.461,118.639,90.203,319.94,0.995112,-1,-1,-1
600,-1,240.817,200.741,27.582,97.868,0.989015,-1,-1,-1
600,-1,178.948,198.897,30.791,94.259,0.986831,-1,-1,-1
600,-1,570.079,100.149,67.953,119.617,0.595022,-1,-1,-1
601,-1,332.29,147.06,88.909,214.762,0.999459,-1,-1,-1
601,-1,474.638,107.874,105.349,323.663,0.995225,-1,-1,-1
601,-1,234.247,193.198,35.262,110.28,0.986754,-1,-1,-1
601,-1,180.773,205.258,23.722,85.711,0.983405,-1,-1,-1
601,-1,544.854,87.7639,94.146,332.617,0.63187,-1,-1,-1
601,-1,413.493,187.602,19.243,113.842,0.530626,-1,-1,-1
601,-1,454.27,203.894,36.049,87.846,0.503912,-1,-1,-1
602,-1,478.343,108.19,121.129,324.637,0.998376,-1,-1,-1
602,-1,338.155,125.694,74.917,250.556,0.997453,-1,-1,-1
602,-1,236.487,197.939,32.614,110.322,0.993119,-1,-1,-1
602,-1,176.102,197.207,35.485,95.507,0.991758,-1,-1,-1
602,-1,456.278,203.862,28.475,87.034,0.889466,-1,-1,-1
602,-1,415.151,203.919,20.963,86.837,0.858803,-1,-1,-1
603,-1,478.58,98.3638,128.006,350.706,0.999488,-1,-1,-1
603,-1,331.146,121.49,77.98,255.61,0.997677,-1,-1,-1
603,-1,235.553,201.022,33.004,103.803,0.992619,-1,-1,-1
603,-1,413.508,198.919,26.83,100.435,0.984516,-1,-1,-1
603,-1,175.014,202.946,30.402,86.917,0.977354,-1,-1,-1
603,-1,453.53,211.343,25.587,76.403,0.561334,-1,-1,-1
604,-1,493.877,93.4029,123.776,355.957,0.998834,-1,-1,-1
604,-1,313.08,123.076,105.718,266.614,0.998818,-1,-1,-1
604,-1,236.75,201.313,30.406,100.436,0.991525,-1,-1,-1
604,-1,175.123,190.235,37.916,102.306,0.989143,-1,-1,-1
604,-1,411.909,212.142,24.848,80.496,0.972788,-1,-1,-1
604,-1,15.1518,125.149,57.2973,137.845,0.694707,-1,-1,-1
605,-1,314.728,103.332,91.424,282.933,0.998781,-1,-1,-1
605,-1,508.687,87.2325,116.186,365.462,0.997967,-1,-1,-1
605,-1,236.904,194.354,30.862,109.882,0.992727,-1,-1,-1
605,-1,171.635,193.079,38.502,100.246,0.985796,-1,-1,-1
605,-1,413.288,192.131,28.509,106.658,0.969254,-1,-1,-1
605,-1,459.842,208.805,18.368,69.458,0.562022,-1,-1,-1
605,-1,8.24805,118.768,67.1296,131.981,0.504702,-1,-1,-1
606,-1,514.203,85.4038,116.499,377.179,0.999113,-1,-1,-1
606,-1,292.162,88.1284,110.308,303.738,0.996943,-1,-1,-1
606,-1,169.058,195.072,34.346,107.196,0.989703,-1,-1,-1
606,-1,234.311,194.46,30.368,107.209,0.989585,-1,-1,-1
606,-1,414.779,199.29,27.716,93.478,0.972781,-1,-1,-1
606,-1,9.21946,125.557,61.9795,134.484,0.904245,-1,-1,-1
606,-1,457.454,211.426,24.187,67.939,0.506597,-1,-1,-1
607,-1,255.854,75.9601,149.391,346.274,0.997917,-1,-1,-1
607,-1,508.715,66.7547,118.395,396.397,0.995329,-1,-1,-1
607,-1,232.259,192.496,35.056,108.959,0.992356,-1,-1,-1
607,-1,172.094,192.062,36.942,106.057,0.982359,-1,-1,-1
607,-1,414.045,201.273,29.609,92.786,0.965592,-1,-1,-1
607,-1,13.9679,127.12,49.9433,130.361,0.734088,-1,-1,-1
607,-1,498.802,170.467,60.13,142.396,0.573132,-1,-1,-1
608,-1,244.919,73.3853,161.77,345.435,0.997899,-1,-1,-1
608,-1,167.122,190.259,34.813,105.859,0.994285,-1,-1,-1
608,-1,232.995,192.437,36.426,111.438,0.990743,-1,-1,-1
608,-1,521.396,66.0244,112.827,392.709,0.990383,-1,-1,-1
608,-1,502.311,182.894,54.079,135.222,0.981523,-1,-1,-1
608,-1,415.093,200.807,29.735,91.638,0.970767,-1,-1,-1
608,-1,12.683,126.71,44.4904,138.651,0.952593,-1,-1,-1
608,-1,546.482,82.4941,77.223,160.12,0.712143,-1,-1,-1
609,-1,166.741,180.291,36.24,116.32,0.993474,-1,-1,-1
609,-1,510.018,178.598,56.421,137.146,0.993301,-1,-1,-1
609,-1,243.703,61.1308,141.455,375.009,0.993159,-1,-1,-1
609,-1,418.447,201.722,28.036,88.802,0.983588,-1,-1,-1
609,-1,238.557,187.613,32.63,117.699,0.970209,-1,-1,-1
609,-1,13.7418,121.862,42.4756,131.313,0.962852,-1,-1,-1
609,-1,563.041,67.861,62.098,182.595,0.950708,-1,-1,-1
609,-1,382.478,210.582,26.409,73.729,0.876316,-1,-1,-1
609,-1,535.585,33.3564,98.021,414.37,0.697008,-1,-1,-1
609,-1,458.318,202.835,24.233,83.501,0.544625,-1,-1,-1
610,-1,209.286,46.3449,174.848,399.504,0.998868,-1,-1,-1
610,-1,164.898,178.851,38.58,120.484,0.992164,-1,-1,-1
610,-1,423.509,210.97,32.267,83.055,0.98815,-1,-1,-1
610,-1,511.12,173.633,47.29,158.473,0.984828,-1,-1,-1
610,-1,12.3206,126.181,45.733,128.391,0.977026,-1,-1,-1
610,-1,388.758,210.487,23.484,72.081,0.90838,-1,-1,-1
610,-1,459.718,200.427,21.837,85.253,0.850499,-1,-1,-1
610,-1,568.257,41.0922,61.535,265.298,0.682328,-1,-1,-1
610,-1,411.209,204.607,26.218,79.208,0.632781,-1,-1,-1
610,-1,373.053,209.226,21.29,70.717,0.548074,-1,-1,-1
611,-1,192.144,35.8858,172.56,409.1,0.999436,-1,-1,-1
611,-1,167.436,177.872,33.465,112.348,0.986527,-1,-1,-1
611,-1,514.959,175.412,52.502,158.087,0.984559,-1,-1,-1
611,-1,424.794,201.494,24.422,94.831,0.979252,-1,-1,-1
611,-1,580.259,69.6983,51.156,245.325,0.930509,-1,-1,-1
611,-1,382.643,210.591,27.357,67.178,0.916447,-1,-1,-1
611,-1,364.182,204.947,21.992,76.754,0.906897,-1,-1,-1
611,-1,10.4946,129.419,46.5062,140.734,0.906508,-1,-1,-1
611,-1,461.419,209.842,21.305,70.358,0.883067,-1,-1,-1
612,-1,169.692,22.5449,167.443,421.397,0.997348,-1,-1,-1
612,-1,514.258,177.851,60.801,150.189,0.994457,-1,-1,-1
612,-1,419.922,202.89,41.213,94.649,0.983219,-1,-1,-1
612,-1,386.894,213.094,23.086,62.052,0.919754,-1,-1,-1
612,-1,365.188,213.131,22.169,73.807,0.901111,-1,-1,-1
612,-1,466.232,210.042,23.67,69.953,0.880823,-1,-1,-1
612,-1,7.67523,120.145,40.9692,144.951,0.856423,-1,-1,-1
612,-1,586.988,211.55,27.127,80.115,0.500886,-1,-1,-1
613,-1,158.279,0,180.319,460.861,0.998708,-1,-1,-1
613,-1,515.955,167.492,64.45,148.675,0.996733,-1,-1,-1
613,-1,419.851,206.828,43.027,93.407,0.98433,-1,-1,-1
613,-1,381.915,201.439,27.485,76.085,0.944272,-1,-1,-1
613,-1,357.201,200.754,21.94,82.708,0.922272,-1,-1,-1
613,-1,467.31,212.835,24.893,68.657,0.867663,-1,-1,-1
613,-1,371.733,208.172,19.557,73.82,0.628638,-1,-1,-1
613,-1,579.533,211.962,34.797,88.811,0.602507,-1,-1,-1
613,-1,14.457,111.911,45.6755,132.122,0.516394,-1,-1,-1
614,-1,118.729,2.46632,207.988,473.333,0.997615,-1,-1,-1
614,-1,523.307,166.734,55.968,157.289,0.994596,-1,-1,-1
614,-1,426.951,201.559,33.156,91.625,0.966913,-1,-1,-1
614,-1,361.054,193.442,28.968,90.92,0.952617,-1,-1,-1
614,-1,375.374,195.547,41.849,88.092,0.880869,-1,-1,-1
614,-1,469.797,205.54,23.894,81.273,0.824082,-1,-1,-1
614,-1,9.88079,95.191,47.1869,164.78,0.773401,-1,-1,-1
615,-1,68.5036,0,253.066,469.408,0.997945,-1,-1,-1
615,-1,526.716,169.728,57.905,150.787,0.995227,-1,-1,-1
615,-1,426.343,200.906,29.841,89.127,0.991783,-1,-1,-1
615,-1,362.832,189.256,31.222,98.014,0.967672,-1,-1,-1
615,-1,587.342,202.712,33.878,93.903,0.861458,-1,-1,-1
615,-1,468.18,220.694,16.128,42.921,0.74052,-1,-1,-1
615,-1,381.673,196.471,20.452,78.161,0.504297,-1,-1,-1
616,-1,430.026,201.724,30.838,87.537,0.989973,-1,-1,-1
616,-1,525.992,165.51,57.688,152.695,0.989584,-1,-1,-1
616,-1,21.6515,22.3664,262.589,417.65,0.979064,-1,-1,-1
616,-1,368.737,199.011,28.066,84.167,0.961109,-1,-1,-1
616,-1,469.699,198.37,21.037,78.354,0.945545,-1,-1,-1
616,-1,359.058,208.278,20.415,73.044,0.764594,-1,-1,-1
617,-1,0,17.1051,287.179,459.855,0.998048,-1,-1,-1
617,-1,528.384,169.859,53.386,156.322,0.993264,-1,-1,-1
617,-1,432.274,193.989,31.49,95.391,0.990682,-1,-1,-1
617,-1,221.868,150.342,55.413,157.791,0.981298,-1,-1,-1
617,-1,468.223,199.611,21.581,82.492,0.967416,-1,-1,-1
617,-1,364.668,188.497,46.691,99.367,0.952344,-1,-1,-1
617,-1,353.38,200.615,27.683,76.008,0.6874,-1,-1,-1
618,-1,227.071,188.748,37.789,121.521,0.994513,-1,-1,-1
618,-1,434.871,198.888,31.491,94.817,0.994256,-1,-1,-1
618,-1,531.92,171.921,56.411,155.999,0.993243,-1,-1,-1
618,-1,367.282,190.703,33.337,105.94,0.965072,-1,-1,-1
618,-1,12.4002,4.63344,227.264,465.479,0.95986,-1,-1,-1
618,-1,465.276,203.396,24.175,81.137,0.944072,-1,-1,-1
618,-1,158.058,165.483,35.733,130.896,0.937811,-1,-1,-1
618,-1,604.723,216.087,28.216,97.451,0.656224,-1,-1,-1
618,-1,388.326,191.844,30.511,97.104,0.64199,-1,-1,-1
619,-1,149.103,174.06,41.023,124.772,0.996241,-1,-1,-1
619,-1,225.001,181.65,42.898,125.903,0.994691,-1,-1,-1
619,-1,434.11,190.584,34.493,101.97,0.993623,-1,-1,-1
619,-1,537.286,179.597,48.806,139.903,0.985415,-1,-1,-1
619,-1,363.454,193.456,46.856,96.654,0.984608,-1,-1,-1
619,-1,462.098,199.355,20.957,81.484,0.951492,-1,-1,-1
619,-1,594.895,206.183,39.292,103.874,0.700648,-1,-1,-1
620,-1,225.101,181.639,45.203,137.393,0.996199,-1,-1,-1
620,-1,540.349,174.518,53.714,161.241,0.995293,-1,-1,-1
620,-1,148.947,180.107,40.461,123.133,0.99377,-1,-1,-1
620,-1,436.479,198.232,32.073,99.821,0.985067,-1,-1,-1
620,-1,370.68,188.747,37.736,115.343,0.962605,-1,-1,-1
620,-1,461.969,201.463,24.836,85.796,0.960589,-1,-1,-1
620,-1,478.054,202.161,23.534,80.714,0.893015,-1,-1,-1
620,-1,598.693,208.652,33.651,113.428,0.678463,-1,-1,-1
621,-1,226.332,180.662,42.882,137.007,0.997346,-1,-1,-1
621,-1,148.414,183.581,43.439,122.37,0.992748,-1,-1,-1
621,-1,539.296,172.688,61.56,162.462,0.98366,-1,-1,-1
621,-1,439.019,197.949,29.325,98.588,0.977401,-1,-1,-1
621,-1,388.333,204.224,24.141,95.47,0.956219,-1,-1,-1
621,-1,466.517,201.378,28.265,77.013,0.916941,-1,-1,-1
622,-1,235.88,181.572,31.596,134.438,0.996348,-1,-1,-1
622,-1,549.198,173.9,56.085,160.799,0.99422,-1,-1,-1
622,-1,148.844,185.553,46.344,123.106,0.987582,-1,-1,-1
622,-1,441.658,200.106,32.856,99.885,0.983111,-1,-1,-1
622,-1,387.251,195.979,30.174,102.386,0.979392,-1,-1,-1
622,-1,476.285,205.593,20.461,85.249,0.85006,-1,-1,-1
623,-1,553.895,175.24,63.108,160.252,0.996907,-1,-1,-1
623,-1,149.894,184.129,45.562,120.547,0.996481,-1,-1,-1
623,-1,230.897,185.433,43.683,133.434,0.995461,-1,-1,-1
623,-1,386.456,191.621,29.801,121.967,0.987834,-1,-1,-1
623,-1,442.35,200.632,35.043,106.669,0.973448,-1,-1,-1
623,-1,482.471,208.859,21.443,77.699,0.895607,-1,-1,-1
624,-1,158.617,183.313,31.261,120.757,0.99634,-1,-1,-1
624,-1,229.01,184.474,44.173,136.18,0.995704,-1,-1,-1
624,-1,386.885,186.988,40.135,128.836,0.988754,-1,-1,-1
624,-1,445.966,198.745,33.995,108.973,0.980622,-1,-1,-1
624,-1,553.443,174.689,66.107,142.017,0.979897,-1,-1,-1
624,-1,470.19,200.389,28.006,94.991,0.505191,-1,-1,-1
625,-1,157.676,186.399,32.078,133.611,0.997592,-1,-1,-1
625,-1,230.573,192.099,42.425,125.268,0.995482,-1,-1,-1
625,-1,447.754,199.776,37.003,109.796,0.971301,-1,-1,-1
625,-1,387.707,204.883,40.264,111.831,0.961687,-1,-1,-1
625,-1,571.32,180.095,57.468,148.681,0.906656,-1,-1,-1
625,-1,556.639,226.256,35.285,105.527,0.762444,-1,-1,-1
626,-1,555.106,175.227,75.583,154.937,0.995673,-1,-1,-1
626,-1,155.347,182.165,45.607,134.393,0.995451,-1,-1,-1
626,-1,229.788,181.236,49.523,136.774,0.993381,-1,-1,-1
626,-1,454.267,198.993,38.122,108.213,0.986872,-1,-1,-1
626,-1,386.534,199.35,55.536,116.936,0.974902,-1,-1,-1
627,-1,235.41,187.005,42.813,140.932,0.997107,-1,-1,-1
627,-1,467.92,211.417,34.338,94.846,0.993982,-1,-1,-1
627,-1,160.683,188.717,39.671,122.533,0.992534,-1,-1,-1
627,-1,403.421,203.988,42.09,114.606,0.988803,-1,-1,-1
627,-1,576.569,173.726,56.999,169.422,0.987364,-1,-1,-1
628,-1,579.433,180.58,52.875,157.707,0.997718,-1,-1,-1
628,-1,239.313,189.024,39.171,139.213,0.996425,-1,-1,-1
628,-1,162.786,181.372,40.644,133.721,0.99396,-1,-1,-1
628,-1,466.282,206.838,40.581,110.013,0.991992,-1,-1,-1
628,-1,406.886,197.105,47.276,115.387,0.989803,-1,-1,-1
629,-1,246.703,188.853,39.205,136.857,0.997087,-1,-1,-1
629,-1,164.491,189.96,49.775,129.779,0.995087,-1,-1,-1
629,-1,472.641,195.463,36.075,119.077,0.9929,-1,-1,-1
629,-1,586.047,179.494,49.561,156.205,0.991739,-1,-1,-1
629,-1,410.536,192.234,48.341,127.465,0.989977,-1,-1,-1
629,-1,376.535,221.228,16.912,53.575,0.616477,-1,-1,-1
630,-1,237.817,175.935,44.174,149.029,0.994967,-1,-1,-1
630,-1,419.576,185.705,43.251,135.768,0.993977,-1,-1,-1
630,-1,170.942,185.887,33.33,134.339,0.993876,-1,-1,-1
630,-1,478.399,196.15,31.454,114.046,0.992121,-1,-1,-1
630,-1,581.778,176.711,45.846,149.377,0.982139,-1,-1,-1
631,-1,237.971,184.519,43.542,141.986,0.996668,-1,-1,-1
631,-1,171.066,185.223,31.811,133.438,0.995276,-1,-1,-1
631,-1,479.335,202.91,31.03,109.123,0.992852,-1,-1,-1
631,-1,417.099,179.436,47.667,140.539,0.988624,-1,-1,-1
631,-1,585.168,189.1,46.05,124.069,0.982578,-1,-1,-1
632,-1,236.333,177.309,43.105,156.045,0.997411,-1,-1,-1
632,-1,480.105,195.734,29.836,111.362,0.988633,-1,-1,-1
632,-1,165.37,183.819,44.779,137.646,0.976409,-1,-1,-1
632,-1,438.645,190.152,38.784,129.938,0.971608,-1,-1,-1
632,-1,594.335,180.912,38.131,113.183,0.954013,-1,-1,-1
632,-1,425.703,193.85,27.293,105.895,0.844287,-1,-1,-1
632,-1,372.901,218.146,17.343,46.376,0.736927,-1,-1,-1
633,-1,236.571,176.405,41.782,155.31,0.995591,-1,-1,-1
633,-1,168.412,180.223,43.406,132.126,0.994769,-1,-1,-1
633,-1,480.111,194.984,34.987,118.886,0.992259,-1,-1,-1
633,-1,431.339,181.867,47.909,147.235,0.966596,-1,-1,-1
633,-1,374.375,220.564,17.084,44.68,0.851608,-1,-1,-1
633,-1,422.545,201.298,23.519,93.474,0.735588,-1,-1,-1
633,-1,592.849,186.516,43.595,80.195,0.566614,-1,-1,-1
634,-1,234.508,182.563,47.456,145.333,0.996308,-1,-1,-1
634,-1,171.792,179.491,31.54,136.147,0.995425,-1,-1,-1
634,-1,485.564,192.105,39.654,127.149,0.994953,-1,-1,-1
634,-1,437.965,175.214,43.03,155.449,0.962523,-1,-1,-1
634,-1,421.693,192.77,34.92,114.899,0.8612,-1,-1,-1
634,-1,380.724,211.136,14.297,52.154,0.62376,-1,-1,-1
635,-1,226.802,185.874,57.151,143.61,0.9969,-1,-1,-1
635,-1,170.669,178.684,35.106,141.526,0.994576,-1,-1,-1
635,-1,487.092,192.529,38.63,131.004,0.992055,-1,-1,-1
635,-1,444.925,183.233,38.845,146.809,0.979545,-1,-1,-1
635,-1,416.699,201.845,32.098,93.359,0.952639,-1,-1,-1
635,-1,378.048,218.047,13.846,50.51,0.787461,-1,-1,-1
635,-1,366.958,218.657,16.111,53.509,0.659652,-1,-1,-1
636,-1,224.608,178.132,53.143,154.617,0.997494,-1,-1,-1
636,-1,483.868,187.536,43.413,135.033,0.994138,-1,-1,-1
636,-1,168.429,174.73,33.735,150.459,0.993703,-1,-1,-1
636,-1,442.398,189.54,51.046,146.824,0.985989,-1,-1,-1
636,-1,413.734,202.435,29.062,89.253,0.972973,-1,-1,-1
636,-1,372.609,219.966,16.669,51.45,0.830835,-1,-1,-1
636,-1,355.8,216.098,27.007,57.157,0.543931,-1,-1,-1
637,-1,214.868,183.066,58.73,150.216,0.996247,-1,-1,-1
637,-1,157.159,174.409,47.856,139.032,0.994028,-1,-1,-1
637,-1,485.866,186.481,31.499,133.306,0.986313,-1,-1,-1
637,-1,413.126,213.869,29.62,64.962,0.97843,-1,-1,-1
637,-1,440.876,176.211,50.296,155.143,0.978306,-1,-1,-1
637,-1,592.686,181.296,40.514,100.553,0.781699,-1,-1,-1
637,-1,371.349,218.931,16.725,49.147,0.642692,-1,-1,-1
638,-1,211.808,170.749,52.221,158.4,0.995571,-1,-1,-1
638,-1,480.793,189.831,40.532,133.448,0.993351,-1,-1,-1
638,-1,408.38,209.178,32.505,75.123,0.991515,-1,-1,-1
638,-1,152.575,170.99,50.531,149.502,0.982617,-1,-1,-1
638,-1,443.452,184.289,49.584,149.25,0.981241,-1,-1,-1
639,-1,220.562,163.503,44.422,173.836,0.998494,-1,-1,-1
639,-1,149.999,178.798,54.405,135.484,0.993256,-1,-1,-1
639,-1,446.968,170.111,48.093,160.492,0.991937,-1,-1,-1
639,-1,406.153,207.217,33.475,77.306,0.990919,-1,-1,-1
639,-1,484.741,187.25,42.919,129.794,0.985282,-1,-1,-1
639,-1,378.062,222.631,12.994,44.074,0.507096,-1,-1,-1
640,-1,455.178,158.13,67.478,184.93,0.997141,-1,-1,-1
640,-1,211.039,164.891,56.64,180.284,0.996117,-1,-1,-1
640,-1,413.036,204.215,27.885,84.242,0.991181,-1,-1,-1
640,-1,151.849,174.434,45.332,144.265,0.990983,-1,-1,-1
641,-1,211.983,175.877,50.486,167.049,0.997246,-1,-1,-1
641,-1,152.712,175.592,44.891,143.715,0.995382,-1,-1,-1
641,-1,449.486,159.882,77.983,169.08,0.992976,-1,-1,-1
641,-1,411.323,212.169,29.715,69.062,0.99045,-1,-1,-1
641,-1,371.144,207.798,18.044,57.083,0.770754,-1,-1,-1
642,-1,464.967,148.181,65.465,202.138,0.995956,-1,-1,-1
642,-1,195.521,173.507,62.795,176.465,0.995711,-1,-1,-1
642,-1,411.354,219.803,25.507,57.7,0.993164,-1,-1,-1
642,-1,145.405,172.04,49.134,146.607,0.98026,-1,-1,-1
642,-1,368.907,220.932,17.414,47.524,0.916053,-1,-1,-1
643,-1,191.363,171.241,57.307,176.855,0.996594,-1,-1,-1
643,-1,406.856,213.841,26.176,67.924,0.995193,-1,-1,-1
643,-1,470.495,164.874,67.98,190.145,0.988308,-1,-1,-1
643,-1,149.545,167.346,40.014,160.516,0.98625,-1,-1,-1
643,-1,369.787,219.809,18.906,50.164,0.807775,-1,-1,-1
644,-1,472.294,150.922,79.161,215.529,0.997653,-1,-1,-1
644,-1,406.665,216.125,25.151,67.457,0.994299,-1,-1,-1
644,-1,190.703,178.615,58.683,174.458,0.99326,-1,-1,-1
644,-1,148.254,160.373,41.915,167.675,0.989897,-1,-1,-1
644,-1,370.521,218.285,15.356,49.553,0.858205,-1,-1,-1
644,-1,255.155,196.839,29.053,74.08,0.561967,-1,-1,-1
645,-1,190.387,156.944,53.311,196.606,0.99448,-1,-1,-1
645,-1,403.597,210.251,32.032,73.948,0.990761,-1,-1,-1
645,-1,471.623,144.702,90.814,222.684,0.989398,-1,-1,-1
645,-1,140.131,166.213,50.59,162.1,0.981417,-1,-1,-1
645,-1,366.354,219.04,15.1,45.532,0.67969,-1,-1,-1
646,-1,135.856,171.269,55.158,151.892,0.99193,-1,-1,-1
646,-1,176.208,157.404,58.167,190.045,0.98967,-1,-1,-1
646,-1,407.018,212.903,24.779,69.637,0.988668,-1,-1,-1
646,-1,474.911,133.443,98.275,213.486,0.987454,-1,-1,-1
646,-1,365.102,218.092,16.769,52.827,0.84127,-1,-1,-1
647,-1,169.958,152.56,69.961,197.791,0.996519,-1,-1,-1
647,-1,403.075,209.571,36.6,72.833,0.99218,-1,-1,-1
647,-1,135.147,175.187,56.604,155.91,0.988152,-1,-1,-1
647,-1,481.171,124.344,105.428,233.438,0.981223,-1,-1,-1
647,-1,354.633,220.213,17.026,53.241,0.898375,-1,-1,-1
647,-1,363.654,209.365,15.777,58.444,0.853266,-1,-1,-1
647,-1,470.465,212.107,26.7,73.065,0.823176,-1,-1,-1
647,-1,243.861,207.484,22.758,61.626,0.691549,-1,-1,-1
647,-1,606.03,197.536,32.97,91.402,0.647764,-1,-1,-1
647,-1,308.76,214.119,14.47,38.028,0.599151,-1,-1,-1
648,-1,167.226,156.467,66.978,208.19,0.996555,-1,-1,-1
648,-1,134.661,158.05,43.475,172.744,0.981198,-1,-1,-1
648,-1,400.655,214.02,27.615,66.517,0.98041,-1,-1,-1
648,-1,494.39,123.254,82.545,246.836,0.979494,-1,-1,-1
648,-1,353.396,220.493,21.937,49.93,0.914696,-1,-1,-1
648,-1,233.899,208.092,21.887,55.239,0.912128,-1,-1,-1
648,-1,596.73,206.879,42,104.442,0.883945,-1,-1,-1
648,-1,463.112,222.027,29.427,65.572,0.839896,-1,-1,-1
649,-1,143.465,147.895,74.28,206.817,0.995895,-1,-1,-1
649,-1,506.226,122.675,80.815,256.24,0.994621,-1,-1,-1
649,-1,392.436,212.492,29.831,70.483,0.992611,-1,-1,-1
649,-1,465.002,219.472,26.724,64.625,0.931884,-1,-1,-1
649,-1,352.28,216.685,17.029,47.045,0.881564,-1,-1,-1
649,-1,227.862,200.058,26.395,65.632,0.81701,-1,-1,-1
649,-1,313.649,213.632,14.526,39.734,0.809058,-1,-1,-1
649,-1,593.657,211.379,41.976,107.586,0.773948,-1,-1,-1
649,-1,321.197,221.393,15.043,42.533,0.723509,-1,-1,-1
649,-1,294.453,216.259,14.575,38.103,0.680708,-1,-1,-1
649,-1,362.406,221.073,20.733,51.893,0.632805,-1,-1,-1
650,-1,145.105,138.608,73.459,232.994,0.998247,-1,-1,-1
650,-1,501.237,106.261,98.121,266.537,0.988238,-1,-1,-1
650,-1,400.05,214.124,24.9,73.931,0.985355,-1,-1,-1
650,-1,217.988,201.429,27.005,79.176,0.968281,-1,-1,-1
650,-1,350.256,215.125,21.173,55.356,0.807906,-1,-1,-1
650,-1,130.809,157.618,44.741,179.75,0.794947,-1,-1,-1
650,-1,457.943,223.441,26.856,63.577,0.793751,-1,-1,-1
650,-1,314.064,212.628,17.119,56.06,0.692313,-1,-1,-1
650,-1,303.355,219.627,17.658,47.709,0.616054,-1,-1,-1
651,-1,129.453,141.622,75.86,226.216,0.999005,-1,-1,-1
651,-1,386.911,209.962,29.751,71.441,0.992391,-1,-1,-1
651,-1,493.988,112.559,125.448,271.864,0.990031,-1,-1,-1
651,-1,490.522,151.949,54.317,189.708,0.974668,-1,-1,-1
651,-1,211.159,220.104,23.118,54.159,0.91336,-1,-1,-1
651,-1,447.524,224.08,24.624,53.773,0.877932,-1,-1,-1
651,-1,344.964,212.913,18.947,58.755,0.86051,-1,-1,-1
651,-1,337.206,208.124,16.163,54.726,0.546505,-1,-1,-1
652,-1,101.815,137.713,96.516,236.175,0.996111,-1,-1,-1
652,-1,375.895,207.878,30.059,75.441,0.99337,-1,-1,-1
652,-1,515.275,110.196,121.723,284.264,0.991561,-1,-1,-1
652,-1,488.811,171.064,48.094,167.185,0.987529,-1,-1,-1
652,-1,201.157,209.926,26.626,66.361,0.967251,-1,-1,-1
652,-1,339.403,218.341,17.086,53.9,0.863921,-1,-1,-1
652,-1,486.537,169.618,38.885,50.771,0.844869,-1,-1,-1
652,-1,99.0354,171.094,41.1136,154.955,0.511931,-1,-1,-1
653,-1,104.989,134.573,76.523,236.857,0.998184,-1,-1,-1
653,-1,483.107,166.656,54.848,175.933,0.997288,-1,-1,-1
653,-1,536.451,74.4908,101.809,344.804,0.995983,-1,-1,-1
653,-1,372.139,211.052,33.342,77.08,0.991027,-1,-1,-1
653,-1,197.542,215.03,24.231,59.847,0.974385,-1,-1,-1
653,-1,334.56,217.434,16.506,50.405,0.835537,-1,-1,-1
653,-1,85.8538,166.836,42.8622,149.546,0.822582,-1,-1,-1
653,-1,295.17,209.885,14.767,49.911,0.61906,-1,-1,-1
654,-1,487.455,162.466,54.797,189.2,0.997825,-1,-1,-1
654,-1,105.753,139.393,71.348,232.898,0.995643,-1,-1,-1
654,-1,376.626,213.788,31.646,72.381,0.994581,-1,-1,-1
654,-1,544.429,77.7745,94.082,335.079,0.987941,-1,-1,-1
654,-1,71.6516,169.381,52.0584,152.236,0.894655,-1,-1,-1
654,-1,190.567,211.189,30.532,74.058,0.794283,-1,-1,-1
654,-1,338.611,209.844,16.347,60.322,0.78348,-1,-1,-1
654,-1,292.049,214.72,15.073,51.244,0.71471,-1,-1,-1
655,-1,494.781,174,52.73,162.885,0.997106,-1,-1,-1
655,-1,93.0226,134.712,93.4934,257.495,0.992303,-1,-1,-1
655,-1,55.3876,169.166,60.7554,158.292,0.989411,-1,-1,-1
655,-1,375.084,219.608,29.694,71.829,0.982267,-1,-1,-1
655,-1,570.897,88.8682,64.871,316.147,0.970857,-1,-1,-1
655,-1,290.73,211.239,18.695,60.756,0.876241,-1,-1,-1
656,-1,496.661,166.607,56.227,193.052,0.99778,-1,-1,-1
656,-1,373.886,217.732,31.64,79.031,0.994261,-1,-1,-1
656,-1,46.4933,169.237,53.4154,161.746,0.991846,-1,-1,-1
656,-1,87.9765,135.968,94.1015,265.258,0.978686,-1,-1,-1
656,-1,288.632,224.552,16.053,49.24,0.839109,-1,-1,-1
656,-1,559.637,144.095,74.754,122.683,0.824794,-1,-1,-1
656,-1,333.659,225.08,17.192,48.9,0.783532,-1,-1,-1
657,-1,80.3209,128.699,100.718,281.287,0.99862,-1,-1,-1
657,-1,501.563,179.051,55.94,173.564,0.996562,-1,-1,-1
657,-1,369.964,222.216,26.517,69.016,0.986383,-1,-1,-1
657,-1,42.2188,159.497,51.4765,186.058,0.949042,-1,-1,-1
657,-1,295.515,232.515,17.274,42.462,0.911758,-1,-1,-1
657,-1,574.938,195.878,39.021,122.596,0.853107,-1,-1,-1
657,-1,286.807,224.965,17.206,54.35,0.759588,-1,-1,-1
657,-1,329.588,225.913,23.547,50.672,0.734179,-1,-1,-1
658,-1,78.7565,128.457,98.0845,291.575,0.997876,-1,-1,-1
658,-1,496.798,176.234,62.201,184.426,0.994473,-1,-1,-1
658,-1,374.222,220.063,31.377,76.292,0.990261,-1,-1,-1
658,-1,565.968,203.466,43.742,118.029,0.964617,-1,-1,-1
658,-1,43.6096,190.493,41.6703,150.889,0.964455,-1,-1,-1
658,-1,293.086,227.534,17.93,50.646,0.85737,-1,-1,-1
658,-1,183.489,224.719,26.444,61.689,0.745307,-1,-1,-1
659,-1,65.8722,127.018,108.41,284.885,0.998489,-1,-1,-1
659,-1,501.08,175.532,57.604,190.748,0.992692,-1,-1,-1
659,-1,20.2985,170.728,52.7609,177.954,0.992579,-1,-1,-1
659,-1,368.691,214.65,31.038,75.664,0.992272,-1,-1,-1
659,-1,569.549,206.971,46.959,118.474,0.970154,-1,-1,-1
659,-1,327.504,232.156,15.774,49.985,0.825501,-1,-1,-1
659,-1,291.542,221.889,14.61,49.139,0.705311,-1,-1,-1
659,-1,183.731,227.432,25.374,59.518,0.687475,-1,-1,-1
659,-1,320.866,222.21,14.288,47.852,0.593143,-1,-1,-1
660,-1,362.977,218.003,29.172,75.726,0.992883,-1,-1,-1
660,-1,498.994,169.407,61.242,198.487,0.992315,-1,-1,-1
660,-1,40.3351,114.876,117.424,310.338,0.991812,-1,-1,-1
660,-1,2.61497,163.024,63.9534,194.757,0.991578,-1,-1,-1
660,-1,567.041,189.802,52.382,136.803,0.978884,-1,-1,-1
660,-1,170.121,217.82,27.233,69.31,0.956795,-1,-1,-1
660,-1,283.21,220.191,16.378,54.987,0.714625,-1,-1,-1
660,-1,272.848,216.511,15.819,61.785,0.604767,-1,-1,-1
661,-1,35.8144,103.139,120.089,328.672,0.995923,-1,-1,-1
661,-1,506.574,158.119,53.609,197.426,0.987002,-1,-1,-1
661,-1,363.272,222.811,35.638,74.102,0.980361,-1,-1,-1
661,-1,563.26,181.016,53.647,153.184,0.96225,-1,-1,-1
661,-1,325.451,221.838,17.406,49.452,0.869042,-1,-1,-1
661,-1,277.32,222.283,14.652,49.896,0.822296,-1,-1,-1
661,-1,109.609,147.896,42.109,137.27,0.63196,-1,-1,-1
662,-1,18.4429,97.2184,117.808,336.669,0.997629,-1,-1,-1
662,-1,517.113,165.792,56.668,182.765,0.982176,-1,-1,-1
662,-1,368.687,215.624,28.985,79.857,0.97295,-1,-1,-1
662,-1,278.771,219.944,16.618,49.702,0.929663,-1,-1,-1
662,-1,326.226,215.509,14.461,52.54,0.905467,-1,-1,-1
662,-1,560.271,200.284,44.773,127.038,0.884643,-1,-1,-1
662,-1,162.349,193.401,28.724,102.998,0.875109,-1,-1,-1
662,-1,103.596,151.939,42.977,118.702,0.811399,-1,-1,-1
663,-1,521.934,164.625,63.236,203.614,0.99523,-1,-1,-1
663,-1,17.1911,103.503,128.143,347.645,0.993659,-1,-1,-1
663,-1,367.799,213.914,25.869,78.976,0.98701,-1,-1,-1
663,-1,99.2203,145.798,38.6657,88.349,0.919556,-1,-1,-1
663,-1,278.73,216.973,16.582,59.481,0.916319,-1,-1,-1
663,-1,152.854,195.305,28.87,102.021,0.900632,-1,-1,-1
663,-1,94.4054,145.696,47.0246,256.1,0.89351,-1,-1,-1
663,-1,562.224,177.716,42.17,146.874,0.891089,-1,-1,-1
663,-1,325.02,215.457,14.49,55.974,0.824354,-1,-1,-1
663,-1,595.347,199.986,29.694,97.981,0.694645,-1,-1,-1
664,-1,522.281,163.054,63.106,198.533,0.997413,-1,-1,-1
664,-1,375.86,220.147,28.746,69.389,0.992169,-1,-1,-1
664,-1,15.1767,92.5109,122.136,370.545,0.991334,-1,-1,-1
664,-1,280.598,221.63,17.758,46.295,0.94341,-1,-1,-1
664,-1,324.047,217.358,18.237,51.836,0.906201,-1,-1,-1
664,-1,155.075,200.309,25.536,86.595,0.887871,-1,-1,-1
664,-1,314.311,229.307,18.608,45.353,0.856782,-1,-1,-1
664,-1,99.9177,155.63,42.1053,98.922,0.818802,-1,-1,-1
664,-1,591.07,197.587,30.698,119.459,0.750659,-1,-1,-1
664,-1,264.55,221.7,17.4,51.362,0.559668,-1,-1,-1
665,-1,524.909,170.337,75.83,177.09,0.996678,-1,-1,-1
665,-1,3.85215,76.9395,102.857,390.048,0.984275,-1,-1,-1
665,-1,372.581,205.475,27.355,84.071,0.983242,-1,-1,-1
665,-1,274.387,218.049,19.463,52.214,0.944946,-1,-1,-1
665,-1,93.0962,151.818,45.6308,212.576,0.942166,-1,-1,-1
665,-1,314.793,225.209,22.885,45.039,0.925854,-1,-1,-1
665,-1,159.576,209.515,20.829,81.68,0.872253,-1,-1,-1
665,-1,597.908,186.104,30.635,102.407,0.837523,-1,-1,-1
665,-1,579.181,192.598,31.798,118.806,0.672197,-1,-1,-1
665,-1,141.147,208.61,29.229,82.185,0.521795,-1,-1,-1
666,-1,532.593,152.042,61.869,216.216,0.996518,-1,-1,-1
666,-1,81.0345,137.053,64.0695,239.244,0.996515,-1,-1,-1
666,-1,362.551,219.518,41.937,69.857,0.988106,-1,-1,-1
666,-1,1.24993,45.7343,97.2207,430.71,0.951434,-1,-1,-1
666,-1,146.631,199.052,26.426,92.208,0.914367,-1,-1,-1
666,-1,313.553,220.132,27.635,46.474,0.910822,-1,-1,-1
666,-1,276.054,213.84,20.536,55.507,0.904323,-1,-1,-1
666,-1,598.573,190.055,24.642,95.337,0.847606,-1,-1,-1
666,-1,82.7397,155.733,50.4923,69.954,0.617965,-1,-1,-1
667,-1,541.314,143.743,55.193,225.937,0.998168,-1,-1,-1
667,-1,58.8845,127.928,76.5005,239.291,0.99524,-1,-1,-1
667,-1,364.551,202.667,32.908,80.483,0.992841,-1,-1,-1
667,-1,0,42.9442,75.2332,384.5,0.945228,-1,-1,-1
667,-1,276.294,210.445,17.402,56.244,0.925164,-1,-1,-1
667,-1,149.311,194.372,22.422,85.869,0.913807,-1,-1,-1
667,-1,316.1,216.318,17.27,49.99,0.877769,-1,-1,-1
667,-1,598.383,182.214,34.818,86.897,0.616562,-1,-1,-1
668,-1,545.297,152.216,55.722,195.651,0.99636,-1,-1,-1
668,-1,60.6906,136.401,76.2184,242.632,0.995126,-1,-1,-1
668,-1,358.804,207.623,48.115,82.055,0.993536,-1,-1,-1
668,-1,0,44.8433,80.8234,404.073,0.988199,-1,-1,-1
668,-1,310.948,211.805,19.64,55.725,0.939283,-1,-1,-1
668,-1,275.824,209.684,17.238,58.504,0.918266,-1,-1,-1
668,-1,134.435,188.488,28.552,106.811,0.688283,-1,-1,-1
669,-1,539.817,136.777,78.131,241.941,0.99646,-1,-1,-1
669,-1,359.205,212.049,44.732,76.811,0.993151,-1,-1,-1
669,-1,62.1598,121.001,81.2842,274.866,0.991948,-1,-1,-1
669,-1,315.225,222.128,17.864,44.086,0.953783,-1,-1,-1
669,-1,0.796183,44.8426,46.0378,324.507,0.921083,-1,-1,-1
669,-1,275.043,212.59,14.797,53.4,0.892477,-1,-1,-1
669,-1,133.295,178.923,25.712,123.131,0.732068,-1,-1,-1
670,-1,545.81,137.684,82.663,243.111,0.998217,-1,-1,-1
670,-1,362.344,212.057,29.873,78.158,0.992771,-1,-1,-1
670,-1,48.3679,103.219,76.0301,301.156,0.992241,-1,-1,-1
670,-1,312.768,211.15,17.58,54.245,0.952638,-1,-1,-1
670,-1,272.773,213.59,19.74,51.74,0.884938,-1,-1,-1
670,-1,141.296,191.05,25.557,92.537,0.844493,-1,-1,-1
671,-1,552.62,130.547,70.284,259.749,0.996283,-1,-1,-1
671,-1,37.683,108.755,89.995,295.063,0.993492,-1,-1,-1
671,-1,356.585,209.951,42.093,74.102,0.992818,-1,-1,-1
671,-1,309.503,220.573,24.459,50.533,0.957765,-1,-1,-1
671,-1,272.505,217.355,17.299,54.1,0.875954,-1,-1,-1
671,-1,262.709,205.226,19.22,60.842,0.693196,-1,-1,-1
672,-1,41.4905,101.601,82.3885,295.077,0.998614,-1,-1,-1
672,-1,546.891,143.222,88.265,242.677,0.993357,-1,-1,-1
672,-1,353.852,210.423,46.654,82.068,0.972072,-1,-1,-1
672,-1,308.658,215.653,24.843,53.802,0.94554,-1,-1,-1
672,-1,267.902,208.176,24.55,69.187,0.812287,-1,-1,-1
672,-1,142.348,201.683,22.395,82.789,0.576566,-1,-1,-1
673,-1,26.4432,88.5241,92.3238,333.719,0.999534,-1,-1,-1
673,-1,564.833,141.811,73.757,245.206,0.995839,-1,-1,-1
673,-1,357.338,210.65,32.608,84.203,0.963074,-1,-1,-1
673,-1,310.213,212.655,16.992,54.945,0.91274,-1,-1,-1
673,-1,263.799,209.696,21.337,65.285,0.889637,-1,-1,-1
673,-1,320.513,211.026,15.739,66.076,0.73441,-1,-1,-1
673,-1,139.487,196.332,23.092,81.788,0.631879,-1,-1,-1
673,-1,543.725,181.885,48.686,170.961,0.556339,-1,-1,-1
674,-1,21.8922,90.9312,99.6818,338.81,0.998655,-1,-1,-1
674,-1,573.374,131.812,60.73,266.97,0.996678,-1,-1,-1
674,-1,349.303,207.506,51.172,85.532,0.986236,-1,-1,-1
674,-1,300.9,209.036,23.983,56.403,0.921303,-1,-1,-1
674,-1,262.487,210.375,26.309,55.331,0.905804,-1,-1,-1
674,-1,539.752,192.831,36.562,109.78,0.838633,-1,-1,-1
675,-1,10.7668,78.3211,102.283,355.192,0.999045,-1,-1,-1
675,-1,584.347,158.044,50.857,235.452,0.997203,-1,-1,-1
675,-1,356.688,209.812,38.757,79.779,0.988889,-1,-1,-1
675,-1,538.039,181.282,41.497,128.836,0.955843,-1,-1,-1
675,-1,262.442,210.678,21.724,69.186,0.951924,-1,-1,-1
675,-1,302.894,209.444,22.05,61.627,0.94822,-1,-1,-1
675,-1,318.518,210.697,18.021,67.706,0.64036,-1,-1,-1
675,-1,134.263,198.242,27.658,82.619,0.585748,-1,-1,-1
676,-1,6.7705,60.993,108.98,396.422,0.99926,-1,-1,-1
676,-1,350.263,205.214,47.217,86.609,0.988294,-1,-1,-1
676,-1,532.865,186.263,41.073,136.566,0.955553,-1,-1,-1
676,-1,263.051,210.599,21.396,66.3,0.95087,-1,-1,-1
676,-1,300.144,208.833,27.324,68.637,0.937603,-1,-1,-1
676,-1,576.358,171.963,47.294,168.416,0.878576,-1,-1,-1
676,-1,135.862,202.968,23.387,64.206,0.778231,-1,-1,-1
676,-1,118.764,200.693,27.579,76.911,0.727399,-1,-1,-1
677,-1,1.98182,72.0884,104.763,390.858,0.999418,-1,-1,-1
677,-1,530.281,184.821,45.758,129.846,0.988908,-1,-1,-1
677,-1,349.938,203.129,40.339,89.108,0.987773,-1,-1,-1
677,-1,262.766,210.77,21.467,67.294,0.961754,-1,-1,-1
677,-1,580.338,172.111,38.344,144.496,0.958381,-1,-1,-1
677,-1,293.611,207.978,35.525,75.867,0.940865,-1,-1,-1
677,-1,106.569,210.624,28.445,71.567,0.896274,-1,-1,-1
678,-1,0.255165,54.5479,90.3686,414.431,0.998531,-1,-1,-1
678,-1,527.667,193.982,49.042,133.714,0.990672,-1,-1,-1
678,-1,353.022,202.548,44.178,95.232,0.98535,-1,-1,-1
678,-1,299.574,207.836,25.069,77.451,0.9703,-1,-1,-1
678,-1,259.303,203.668,26.757,90.609,0.970288,-1,-1,-1
678,-1,582.277,199.457,27.883,86.546,0.92499,-1,-1,-1
678,-1,598.19,179.353,28.497,112.952,0.634984,-1,-1,-1
679,-1,0,66.7695,79.1081,409.526,0.998987,-1,-1,-1
679,-1,353.177,212.714,37.436,87.337,0.990154,-1,-1,-1
679,-1,256.501,200.676,25.642,88.987,0.982929,-1,-1,-1
679,-1,296.902,202.193,23.115,84.037,0.968423,-1,-1,-1
679,-1,531.888,201.019,47.729,131.732,0.950155,-1,-1,-1
679,-1,574.895,198.881,34.735,66.35,0.835378,-1,-1,-1
680,-1,0,65.7312,75.7081,413.269,0.998611,-1,-1,-1
680,-1,349.631,207.314,31.309,91.703,0.989,-1,-1,-1
680,-1,297.443,213.508,21.745,67.085,0.975563,-1,-1,-1
680,-1,255.274,209.476,22.33,79.958,0.969332,-1,-1,-1
680,-1,562.946,177.197,50.602,142.294,0.861581,-1,-1,-1
681,-1,2.17303,84.3121,70.8256,390.124,0.9978,-1,-1,-1
681,-1,346.163,211.034,43.632,89.06,0.993217,-1,-1,-1
681,-1,287.066,213.785,39.796,80.667,0.982982,-1,-1,-1
681,-1,250.584,213.594,24.632,71.377,0.953831,-1,-1,-1
681,-1,116.944,203.695,27.605,79.698,0.925357,-1,-1,-1
681,-1,393.912,225.64,23.962,57.927,0.522843,-1,-1,-1
682,-1,351.106,208.149,31.793,97.753,0.988144,-1,-1,-1
682,-1,289.587,218.147,25.412,70.913,0.983053,-1,-1,-1
682,-1,246.224,208.499,28.117,74.888,0.976764,-1,-1,-1
682,-1,10.1751,226.633,50.3234,126.65,0.91107,-1,-1,-1
682,-1,554.805,192.473,53.277,110.744,0.892405,-1,-1,-1
682,-1,108.937,204.728,26.791,73.553,0.845952,-1,-1,-1
682,-1,16.4122,152.325,57.9645,119.008,0.829536,-1,-1,-1
683,-1,349.248,207.031,34.064,88.535,0.987754,-1,-1,-1
683,-1,286.867,216.82,34.817,82.692,0.977957,-1,-1,-1
683,-1,242.758,203.345,40.288,87.139,0.974069,-1,-1,-1
683,-1,104.31,203.065,28.191,74.039,0.955789,-1,-1,-1
683,-1,555.812,201.125,51.099,108.783,0.857472,-1,-1,-1
684,-1,343.477,206.624,44.027,87.557,0.985665,-1,-1,-1
684,-1,286.939,210.028,33.796,88.521,0.9814,-1,-1,-1
684,-1,244.68,203.403,30.422,81.876,0.965388,-1,-1,-1
684,-1,102.307,203.081,28.632,73.889,0.964461,-1,-1,-1
684,-1,546.243,194.236,62.462,128.981,0.903233,-1,-1,-1
684,-1,77.0409,216.738,39.4761,69.661,0.68894,-1,-1,-1
685,-1,104.802,204.77,24.887,76.102,0.980236,-1,-1,-1
685,-1,244.021,208.462,23.047,73.433,0.978588,-1,-1,-1
685,-1,282.473,210.377,35.566,85.374,0.977321,-1,-1,-1
685,-1,345.608,206.953,24.265,87.136,0.964295,-1,-1,-1
685,-1,392.714,213.261,19.251,70.734,0.76558,-1,-1,-1
685,-1,172.27,212.658,20.392,56.057,0.701888,-1,-1,-1
685,-1,154.551,208.87,20.756,59.895,0.562174,-1,-1,-1
685,-1,523.553,191.009,57.609,148.007,0.539149,-1,-1,-1
685,-1,68.9547,207.556,45.2603,83.866,0.534251,-1,-1,-1
686,-1,340.466,203.959,45.143,96.016,0.987493,-1,-1,-1
686,-1,242.219,212.133,25.118,73.958,0.968633,-1,-1,-1
686,-1,97.021,181.282,32.846,98.122,0.966427,-1,-1,-1
686,-1,282.898,203.723,36.795,82.499,0.947175,-1,-1,-1
686,-1,391.873,222.592,27.833,65.294,0.897543,-1,-1,-1
686,-1,256.541,207.923,23.167,74.258,0.563967,-1,-1,-1
686,-1,151.436,222.649,20.766,46.556,0.555853,-1,-1,-1
687,-1,286.042,200.612,32.531,91.347,0.979105,-1,-1,-1
687,-1,345.307,205.031,41.349,94.696,0.977443,-1,-1,-1
687,-1,89.8226,185.328,42.1804,100.6,0.968976,-1,-1,-1
687,-1,234.692,210.591,34.466,76.486,0.967566,-1,-1,-1
687,-1,151.734,209.87,22.62,56.633,0.881472,-1,-1,-1
687,-1,389.179,214.992,24.504,75.834,0.590069,-1,-1,-1
687,-1,215.245,209.442,26.007,61.942,0.51989,-1,-1,-1
688,-1,95.0707,178.288,33.9463,99.108,0.987745,-1,-1,-1
688,-1,287.956,203.721,29.831,89.822,0.98308,-1,-1,-1
688,-1,350.945,201.3,28.701,94.338,0.978919,-1,-1,-1
688,-1,523.381,197.391,42.798,122.99,0.97653,-1,-1,-1
688,-1,230.634,200.188,42.947,93.19,0.952686,-1,-1,-1
688,-1,154.521,217.657,26.21,49.838,0.866328,-1,-1,-1
688,-1,142.251,210.196,22.047,62.891,0.591812,-1,-1,-1
689,-1,287.175,201.197,32.63,81.121,0.971002,-1,-1,-1
689,-1,516.567,191.42,51.575,114.686,0.970632,-1,-1,-1
689,-1,350.414,204.551,26.533,92.995,0.968592,-1,-1,-1
689,-1,233.369,200.2,29.011,92.267,0.966217,-1,-1,-1
689,-1,91.0802,191.041,33.3538,89.716,0.947142,-1,-1,-1
689,-1,141.786,213.994,23.87,60.624,0.915341,-1,-1,-1
689,-1,158.004,217.373,20.263,46.84,0.776149,-1,-1,-1
690,-1,520.17,201.863,47.488,122.55,0.98888,-1,-1,-1
690,-1,340.419,197.755,36.293,96.881,0.98746,-1,-1,-1
690,-1,93.5592,188.286,27.4648,94.295,0.973614,-1,-1,-1
690,-1,236.962,205.798,22.524,77.191,0.972379,-1,-1,-1
690,-1,283.44,204.563,38.085,86.486,0.961989,-1,-1,-1
690,-1,143.926,219.229,27.094,52.998,0.824768,-1,-1,-1
690,-1,222.456,201.793,19.732,78.594,0.662108,-1,-1,-1
691,-1,518.946,197.645,54.523,127.683,0.992465,-1,-1,-1
691,-1,92.1952,187.674,28.8578,92.85,0.984946,-1,-1,-1
691,-1,338.299,199.429,37.849,99.663,0.984594,-1,-1,-1
691,-1,231.452,204.987,28.085,77.262,0.979862,-1,-1,-1
691,-1,286.163,195.855,32.069,100.253,0.977801,-1,-1,-1
691,-1,140.415,214.144,29.464,61.276,0.781737,-1,-1,-1
691,-1,214.404,201.496,18.087,72.764,0.51489,-1,-1,-1
692,-1,91.0665,190.722,26.3485,91.02,0.985907,-1,-1,-1
692,-1,334.653,205.935,47.21,101.894,0.980683,-1,-1,-1
692,-1,223.357,207.052,43.303,84.245,0.977505,-1,-1,-1
692,-1,279.36,193.29,44.088,100.488,0.977242,-1,-1,-1
692,-1,524.48,201.763,42.813,122.219,0.975308,-1,-1,-1
692,-1,137.373,206.553,31.868,70.682,0.611318,-1,-1,-1
693,-1,83.3992,181.661,39.4818,96.348,0.985779,-1,-1,-1
693,-1,330.792,202.661,51.791,97.913,0.985599,-1,-1,-1
693,-1,523.356,193.067,43.519,121.296,0.982838,-1,-1,-1
693,-1,280.421,192.514,30.695,106.29,0.978999,-1,-1,-1
693,-1,217.963,194.059,40.967,100.895,0.973559,-1,-1,-1
693,-1,128.438,211.471,26.399,64.198,0.840006,-1,-1,-1
693,-1,211.988,203.473,20.544,78.998,0.629032,-1,-1,-1
694,-1,328.281,200.111,55.607,93.678,0.991121,-1,-1,-1
694,-1,79.2197,185.161,43.0953,88.369,0.98313,-1,-1,-1
694,-1,217.462,200,35.227,93.926,0.979549,-1,-1,-1
694,-1,277.265,194.845,30.773,118.944,0.97711,-1,-1,-1
694,-1,519.597,193.103,33.328,117.337,0.968868,-1,-1,-1
694,-1,133.765,205.78,34.83,73.584,0.878264,-1,-1,-1
695,-1,333.686,201.67,35.112,93.311,0.990946,-1,-1,-1
695,-1,80.4388,185.257,30.7462,107.545,0.987975,-1,-1,-1
695,-1,272.23,194.655,34.179,117.996,0.987406,-1,-1,-1
695,-1,218.632,193.715,28.907,102.782,0.96681,-1,-1,-1
695,-1,515.795,185.764,32.328,119.423,0.854889,-1,-1,-1
695,-1,205.095,203.742,19.413,73.695,0.562668,-1,-1,-1
696,-1,331.284,196.296,36.167,101.077,0.989177,-1,-1,-1
696,-1,264.233,194.084,49.505,113.282,0.988991,-1,-1,-1
696,-1,78.4265,182.303,30.6705,102.271,0.988539,-1,-1,-1
696,-1,211.907,192.071,39.837,106.933,0.987174,-1,-1,-1
696,-1,510.833,191.297,40.155,113.122,0.96366,-1,-1,-1
696,-1,553.405,195.161,31.375,99.814,0.765729,-1,-1,-1
696,-1,131.003,212.948,33.488,51.245,0.765208,-1,-1,-1
697,-1,205.974,184.598,42.32,112.949,0.990573,-1,-1,-1
697,-1,329.993,194.59,41.088,100.498,0.988369,-1,-1,-1
697,-1,511.988,204.593,34.346,110.227,0.984372,-1,-1,-1
697,-1,266.465,185.315,34.958,123.836,0.977831,-1,-1,-1
697,-1,70.8335,188.957,28.3693,89.924,0.974231,-1,-1,-1
697,-1,551.586,200.42,39.281,109.666,0.972742,-1,-1,-1
697,-1,127.102,202.697,30.215,75.094,0.803224,-1,-1,-1
698,-1,329.155,195.942,42.133,100.689,0.990363,-1,-1,-1
698,-1,198.487,190.383,51.374,103.387,0.98845,-1,-1,-1
698,-1,513.693,206.044,37.033,105.558,0.975649,-1,-1,-1
698,-1,70.4708,169.578,32.0442,130.631,0.957993,-1,-1,-1
698,-1,261.067,178.836,40.441,132.887,0.95049,-1,-1,-1
698,-1,129.818,200.546,31.255,71.248,0.942715,-1,-1,-1
698,-1,550.124,194.094,38.401,127.3,0.908907,-1,-1,-1
698,-1,24.5216,211.622,37.123,76.8,0.590826,-1,-1,-1
699,-1,336.384,195.983,37.905,99.239,0.992318,-1,-1,-1
699,-1,70.0613,173.121,33.5427,114.423,0.990356,-1,-1,-1
699,-1,516.039,206.035,30.819,96.696,0.967387,-1,-1,-1
699,-1,257.959,191.118,40.681,115.564,0.957246,-1,-1,-1
699,-1,199.838,181.554,38.436,118.128,0.902813,-1,-1,-1
699,-1,126.614,202.529,25.893,67.98,0.902332,-1,-1,-1
699,-1,548.875,180.417,45.356,134.449,0.900361,-1,-1,-1
699,-1,18.6356,210.981,49.8586,86.421,0.594192,-1,-1,-1
699,-1,148.631,200.636,23.003,64.423,0.577968,-1,-1,-1
700,-1,63.4813,170.835,32.2071,110.756,0.990963,-1,-1,-1
700,-1,328.134,197.231,44.927,99.377,0.989363,-1,-1,-1
700,-1,549.953,190.619,45.583,123.91,0.989087,-1,-1,-1
700,-1,256.107,181.518,45.979,134.115,0.988214,-1,-1,-1
700,-1,200.84,179.953,39.641,119.27,0.986289,-1,-1,-1
700,-1,510.636,191.818,34.672,119.804,0.952633,-1,-1,-1
700,-1,135.677,202.059,28.126,65.178,0.932909,-1,-1,-1
700,-1,18.85,211.249,38.6363,81.836,0.904658,-1,-1,-1
700,-1,120.298,207.406,28.401,68.085,0.567084,-1,-1,-1
701,-1,333.648,192.146,42.347,102.487,0.992916,-1,-1,-1
701,-1,253.459,185.857,47.846,128.381,0.991152,-1,-1,-1
701,-1,549.157,194.58,45.908,121.102,0.991054,-1,-1,-1
701,-1,59.9305,180.301,38.0956,107.292,0.987187,-1,-1,-1
701,-1,192.079,188.303,44.941,113.827,0.978965,-1,-1,-1
701,-1,506.325,189.868,41.354,127.872,0.959987,-1,-1,-1
701,-1,139.542,199.152,20.539,63.504,0.881045,-1,-1,-1
701,-1,121.32,197.052,29.496,75.167,0.783446,-1,-1,-1
701,-1,15.3803,191.392,40.0144,104.295,0.516004,-1,-1,-1
702,-1,328.608,200.313,39.824,101.066,0.990511,-1,-1,-1
702,-1,510.134,195.087,39.721,121.384,0.987047,-1,-1,-1
702,-1,252.934,186.908,40.436,132.625,0.986484,-1,-1,-1
702,-1,193.648,189.508,44.038,116.325,0.986154,-1,-1,-1
702,-1,55.8296,176.673,38.5112,110.045,0.982959,-1,-1,-1
702,-1,137.595,204.729,21.873,64.186,0.930441,-1,-1,-1
702,-1,551.693,180.713,42.853,124.788,0.831068,-1,-1,-1
702,-1,110.136,196.526,27.592,84.204,0.562009,-1,-1,-1
703,-1,249.088,175.107,40.228,152.706,0.994652,-1,-1,-1
703,-1,182.165,178.614,52.991,132.294,0.991929,-1,-1,-1
703,-1,327.603,194.208,40.829,103.081,0.991415,-1,-1,-1
703,-1,509.901,201.534,45.867,120.395,0.990538,-1,-1,-1
703,-1,53.3341,169.564,42.3547,112.824,0.97413,-1,-1,-1
703,-1,128.751,192.235,29.73,77.402,0.915638,-1,-1,-1
703,-1,551.856,189.681,37.848,115.231,0.908503,-1,-1,-1
703,-1,419.439,186.204,31.958,110.329,0.531981,-1,-1,-1
704,-1,504.967,191.452,43.846,124.904,0.994102,-1,-1,-1
704,-1,48.763,179.666,39.19,108.614,0.992904,-1,-1,-1
704,-1,326.566,197.194,42.519,99.127,0.992372,-1,-1,-1
704,-1,237.175,175.016,49.943,155.821,0.99126,-1,-1,-1
704,-1,183.805,184.977,52.939,127.616,0.989126,-1,-1,-1
704,-1,552.638,193.389,37.777,114.915,0.951972,-1,-1,-1
704,-1,114.398,199.481,28.862,74.196,0.858992,-1,-1,-1
704,-1,420.419,193.92,29.405,97.042,0.858889,-1,-1,-1
704,-1,132.193,202.851,22.532,70.813,0.696586,-1,-1,-1
705,-1,171.056,173.316,52.151,140.823,0.995014,-1,-1,-1
705,-1,504.823,194.195,42.321,123.352,0.989241,-1,-1,-1
705,-1,323.723,191.225,51.813,96.509,0.987857,-1,-1,-1
705,-1,238.659,166.797,49.947,158.568,0.981672,-1,-1,-1
705,-1,44.2181,165.014,40.1977,120.421,0.974715,-1,-1,-1
705,-1,548.939,188.263,37.337,113.236,0.969625,-1,-1,-1
705,-1,420.008,195.584,32.154,96.44,0.914747,-1,-1,-1
705,-1,109.645,201.916,31.357,82.558,0.689255,-1,-1,-1
706,-1,228.107,157.636,49.097,168.451,0.997405,-1,-1,-1
706,-1,324.931,191.728,40.277,102.787,0.99416,-1,-1,-1
706,-1,34.6584,157.019,44.7721,122.954,0.990966,-1,-1,-1
706,-1,171.243,173.756,44.382,146.427,0.987559,-1,-1,-1
706,-1,96.5597,195.11,33.1553,73.374,0.969339,-1,-1,-1
706,-1,420.907,190.404,37.647,103.188,0.9581,-1,-1,-1
706,-1,505.166,185.613,36.616,130.283,0.950166,-1,-1,-1
706,-1,546.501,184.941,38.835,120.561,0.763937,-1,-1,-1
706,-1,125.364,197.743,16.057,66.751,0.639685,-1,-1,-1
707,-1,161.893,173.055,54.45,147.329,0.995799,-1,-1,-1
707,-1,221.252,160.159,54.167,180.216,0.992657,-1,-1,-1
707,-1,326.77,183.832,33.475,108.607,0.992289,-1,-1,-1
707,-1,422.481,198.265,31.844,93.889,0.968641,-1,-1,-1
707,-1,504.692,191.93,41.647,126.759,0.962295,-1,-1,-1
707,-1,30.0496,162.447,45.1181,133.598,0.914527,-1,-1,-1
707,-1,116.352,201.604,28.251,73.285,0.877574,-1,-1,-1
707,-1,99.7167,200.571,29.0833,75.106,0.836569,-1,-1,-1
707,-1,540.396,184.928,43.953,120.886,0.775651,-1,-1,-1
708,-1,317.881,200.261,44.959,100.79,0.996105,-1,-1,-1
708,-1,153.795,181.579,56.445,142.871,0.993721,-1,-1,-1
708,-1,214.709,173.871,52.626,180.66,0.988827,-1,-1,-1
708,-1,31.0449,174.048,46.8764,117.196,0.971191,-1,-1,-1
708,-1,422.728,199.899,33.144,94.343,0.969716,-1,-1,-1
708,-1,507.083,195.506,37.618,90.802,0.907248,-1,-1,-1
708,-1,538.14,187.85,46.59,127.346,0.708944,-1,-1,-1
708,-1,109.64,194.208,24.271,81.481,0.557538,-1,-1,-1
709,-1,208.919,169.466,55.174,182.864,0.994722,-1,-1,-1
709,-1,148.385,170.33,48.848,154.901,0.992587,-1,-1,-1
709,-1,312.483,199.162,47.407,107.676,0.988133,-1,-1,-1
709,-1,418.514,196.123,39.742,98.689,0.979696,-1,-1,-1
709,-1,15.1688,163.059,55.0243,129.622,0.955168,-1,-1,-1
709,-1,102.031,189.752,33.598,85.296,0.848037,-1,-1,-1
710,-1,185.816,163.002,79.979,193.337,0.994704,-1,-1,-1
710,-1,311.987,196.498,49.791,116.685,0.994217,-1,-1,-1
710,-1,138.197,168.639,56.945,156.46,0.986481,-1,-1,-1
710,-1,417.838,194.587,38.891,106.701,0.978002,-1,-1,-1
710,-1,89.5773,189.158,38.0757,101.114,0.951613,-1,-1,-1
710,-1,17.5076,155.189,44.1127,139.599,0.923035,-1,-1,-1
710,-1,531.914,187.461,37.343,120.368,0.866469,-1,-1,-1
711,-1,187.964,150.867,54.473,198.937,0.995668,-1,-1,-1
711,-1,134.403,166.083,51.311,161.916,0.990162,-1,-1,-1
711,-1,12.8985,146.516,44.3378,157.9,0.985948,-1,-1,-1
711,-1,90.3731,198.391,42.7339,84.996,0.982209,-1,-1,-1
711,-1,300.543,191.745,60.572,120.558,0.975715,-1,-1,-1
711,-1,415.046,199.955,40.903,108.402,0.972192,-1,-1,-1
711,-1,534.518,189.427,40.24,138.45,0.809802,-1,-1,-1
712,-1,299.797,198.546,57.123,117.308,0.995826,-1,-1,-1
712,-1,117.461,159.03,53.844,169.763,0.989696,-1,-1,-1
712,-1,187.764,151.226,52.334,217.024,0.988665,-1,-1,-1
712,-1,18.0046,164.783,33.4724,122.421,0.987666,-1,-1,-1
712,-1,78.5996,200.659,37.4384,88.825,0.984411,-1,-1,-1
712,-1,413.751,201.009,43.056,109.151,0.972853,-1,-1,-1
712,-1,533.049,189.076,33.284,115.858,0.747895,-1,-1,-1
713,-1,174.185,150.645,64.774,212.877,0.996562,-1,-1,-1
713,-1,7.28001,169.222,40.6027,129.816,0.988902,-1,-1,-1
713,-1,421.822,195.53,41.526,108.344,0.988122,-1,-1,-1
713,-1,299.406,194.077,55.848,118.261,0.987881,-1,-1,-1
713,-1,108.282,165.511,55.69,160.159,0.98573,-1,-1,-1
713,-1,68.2945,197.58,57.4745,95.267,0.979334,-1,-1,-1
713,-1,533.348,191.089,37.595,133.913,0.961778,-1,-1,-1
714,-1,159.957,145.175,62.825,242.475,0.995456,-1,-1,-1
714,-1,302.959,196.105,58.404,116.725,0.993108,-1,-1,-1
714,-1,9.67556,166.213,41.0546,133.633,0.987126,-1,-1,-1
714,-1,100.623,164.367,58.863,169.11,0.986763,-1,-1,-1
714,-1,420.717,199.324,34.08,108.426,0.979608,-1,-1,-1
714,-1,57.5681,201.501,46.2969,83.211,0.918364,-1,-1,-1
715,-1,145.362,136.168,71.335,252.321,0.994316,-1,-1,-1
715,-1,297.908,188.278,57.301,131.265,0.9909,-1,-1,-1
715,-1,428.545,197.934,36.219,104.63,0.979509,-1,-1,-1
715,-1,79.847,165.618,65.99,177.147,0.978134,-1,-1,-1
715,-1,13.4276,176.028,33.078,118.711,0.944956,-1,-1,-1
715,-1,491.035,201.589,40.154,119.428,0.836727,-1,-1,-1
715,-1,188.22,170.957,36.616,122.553,0.512151,-1,-1,-1
716,-1,303.86,191.221,54.387,121.035,0.986439,-1,-1,-1
716,-1,102.229,116.583,115.155,256.85,0.984812,-1,-1,-1
716,-1,490.087,219.945,42.797,105.504,0.976975,-1,-1,-1
716,-1,7.85981,185.261,29.4154,104.048,0.971099,-1,-1,-1
716,-1,425.155,198.458,32.951,104.296,0.959687,-1,-1,-1
716,-1,53.459,195.449,40.3536,76.094,0.957578,-1,-1,-1
716,-1,82.2964,134.436,54.7086,198.093,0.70614,-1,-1,-1
717,-1,112.416,113.922,107.025,297.484,0.99879,-1,-1,-1
717,-1,307.767,196.426,50.076,110.717,0.989213,-1,-1,-1
717,-1,433.704,203.5,34.315,111.743,0.980679,-1,-1,-1
717,-1,495.235,203.32,38.742,120.696,0.963122,-1,-1,-1
717,-1,75.6868,151.602,42.9672,160.426,0.941989,-1,-1,-1
717,-1,51.7163,180.974,31.5557,99.483,0.936652,-1,-1,-1
717,-1,7.8224,178.835,30.3497,116.709,0.915685,-1,-1,-1
718,-1,91.4571,103.341,120.217,304.309,0.997504,-1,-1,-1
718,-1,310.059,197.384,51.564,110.823,0.989879,-1,-1,-1
718,-1,437.266,200.039,34.767,115.899,0.960606,-1,-1,-1
718,-1,56.9206,153.428,48.9674,136.027,0.944226,-1,-1,-1
718,-1,194.151,211.87,21.353,71.077,0.896017,-1,-1,-1
718,-1,9.3578,170.535,36.6254,130.491,0.876076,-1,-1,-1
718,-1,494.712,185.144,40.507,141.927,0.864492,-1,-1,-1
718,-1,48.9252,179.467,26.8273,97.108,0.531247,-1,-1,-1
719,-1,50.9305,99.4828,140.974,339.776,0.997855,-1,-1,-1
719,-1,317.048,189.509,52.193,124.404,0.991124,-1,-1,-1
719,-1,192.894,214.17,34.08,72.067,0.9872,-1,-1,-1
719,-1,40.4619,148.38,36.3333,110.306,0.843595,-1,-1,-1
719,-1,449.939,204.219,29.009,117.364,0.817533,-1,-1,-1
719,-1,7.52588,178.396,31.4409,100.214,0.640807,-1,-1,-1
719,-1,96.562,84.5741,55.661,75.0089,0.58639,-1,-1,-1
720,-1,39.6539,93.8779,146.315,348.715,0.99805,-1,-1,-1
720,-1,188.461,203.841,33.272,80.934,0.991986,-1,-1,-1
720,-1,311.207,190.797,55.524,121.296,0.989148,-1,-1,-1
720,-1,450.095,199.127,30.616,120.529,0.931313,-1,-1,-1
720,-1,7.86868,172.893,28.2399,99.357,0.894777,-1,-1,-1
720,-1,36.8736,147.312,40.2688,128.462,0.890225,-1,-1,-1
721,-1,8.08652,79.9264,152.82,391.464,0.998408,-1,-1,-1
721,-1,315.884,188.478,63.702,130.55,0.992067,-1,-1,-1
721,-1,191.486,207.916,29.87,75.383,0.991019,-1,-1,-1
721,-1,445.367,190.478,41.408,125.728,0.974783,-1,-1,-1
721,-1,161.184,205.651,30.068,85.573,0.930803,-1,-1,-1
721,-1,6.53188,157.427,26.5692,101.721,0.71082,-1,-1,-1
722,-1,3.91245,66.2437,137.856,393.851,0.997284,-1,-1,-1
722,-1,316.836,196.322,64.628,106.255,0.995129,-1,-1,-1
722,-1,192.534,197.76,32.068,92.563,0.982866,-1,-1,-1
722,-1,167.924,209.93,27.956,79.065,0.952003,-1,-1,-1
722,-1,456.412,203.005,39.841,116.086,0.94552,-1,-1,-1
722,-1,152.206,204.183,22.718,87.225,0.706974,-1,-1,-1
723,-1,315.939,186.372,74.559,126.616,0.997485,-1,-1,-1
723,-1,0.719921,51.7465,117.707,414.987,0.991286,-1,-1,-1
723,-1,156.233,195.791,34.528,99.962,0.988567,-1,-1,-1
723,-1,194.313,206.577,27.184,75.412,0.968912,-1,-1,-1
723,-1,457.292,198.572,35.219,94.206,0.955799,-1,-1,-1
723,-1,496.515,209.227,30.642,94.053,0.863697,-1,-1,-1
723,-1,128.907,218.978,19.597,53.721,0.816591,-1,-1,-1
723,-1,111.222,212.441,20.282,61.295,0.801141,-1,-1,-1
724,-1,319.497,194.425,65.677,120.993,0.995381,-1,-1,-1
724,-1,152.366,194.925,44.151,109.719,0.985655,-1,-1,-1
724,-1,6.72135,46.175,75.5699,332.694,0.981565,-1,-1,-1
724,-1,84.4563,203.663,30.8947,79.849,0.972362,-1,-1,-1
724,-1,513.523,194.07,34.107,111.146,0.959876,-1,-1,-1
724,-1,465.359,195.136,37.249,106.642,0.956005,-1,-1,-1
724,-1,199.04,200.042,28.164,92.144,0.913062,-1,-1,-1
724,-1,104.543,204.456,26.452,66.847,0.552697,-1,-1,-1
725,-1,329.586,190.547,71.518,130.884,0.994687,-1,-1,-1
725,-1,86.7914,205.027,43.1056,72.089,0.98814,-1,-1,-1
725,-1,161.045,184.406,37.666,119.324,0.981754,-1,-1,-1
725,-1,512.047,195.317,31.358,123.427,0.955124,-1,-1,-1
725,-1,471.186,191.778,35.831,112.051,0.940659,-1,-1,-1
725,-1,197.787,192.633,35.675,91.824,0.866785,-1,-1,-1
725,-1,8.18056,267.423,45.919,92.537,0.716491,-1,-1,-1
725,-1,117.134,214.355,21.349,53.455,0.623043,-1,-1,-1
726,-1,337.389,187.199,62.007,126.097,0.994968,-1,-1,-1
726,-1,510.471,194.569,38.929,129.926,0.983459,-1,-1,-1
726,-1,156.469,188.035,40.235,110.217,0.983127,-1,-1,-1
726,-1,474.43,202.407,37.578,101.5,0.971727,-1,-1,-1
726,-1,98.4868,204.585,31.2432,72.885,0.946053,-1,-1,-1
726,-1,12.6847,169.251,52.2195,122.362,0.944138,-1,-1,-1
726,-1,199.592,203.125,33.082,85.913,0.895987,-1,-1,-1
726,-1,76.6351,197.303,34.9559,88.76,0.644236,-1,-1,-1
727,-1,335.333,188.71,72.443,136.806,0.993726,-1,-1,-1
727,-1,153.955,173.929,48.294,138.118,0.989735,-1,-1,-1
727,-1,76.7476,197.746,43.3534,88.508,0.988608,-1,-1,-1
727,-1,509.467,198.98,42.505,124.717,0.988135,-1,-1,-1
727,-1,13.3731,155.006,42.1665,157.439,0.986077,-1,-1,-1
727,-1,197.388,189.763,35.777,103.791,0.968308,-1,-1,-1
727,-1,483.99,198.168,41.091,113.483,0.941848,-1,-1,-1
728,-1,342.013,182.193,76.287,136.826,0.996136,-1,-1,-1
728,-1,147.756,181.857,53.288,121.08,0.983645,-1,-1,-1
728,-1,487.36,189.944,61.035,133.958,0.982717,-1,-1,-1
728,-1,77.0678,195.653,35.2092,95.188,0.98151,-1,-1,-1
728,-1,7.07917,158.537,35.896,159.95,0.979656,-1,-1,-1
728,-1,197.074,198.262,27.874,83.054,0.975644,-1,-1,-1
728,-1,104.405,205.83,24.73,75.173,0.896158,-1,-1,-1
728,-1,119.209,200.568,20.676,70.055,0.523016,-1,-1,-1
729,-1,345.956,183.611,62.218,132.162,0.996836,-1,-1,-1
729,-1,490.431,194.46,62.215,126.176,0.993242,-1,-1,-1
729,-1,145.151,188.978,49.18,120.812,0.986093,-1,-1,-1
729,-1,76.0048,195.595,41.1242,100.183,0.977293,-1,-1,-1
729,-1,102.163,205.774,24.934,79.442,0.929607,-1,-1,-1
729,-1,189.588,188.536,40.424,97.834,0.573115,-1,-1,-1
730,-1,343.35,195.933,65.161,133.01,0.992519,-1,-1,-1
730,-1,502.701,202.692,50.936,119.358,0.990709,-1,-1,-1
730,-1,71.0455,207.278,35.5355,94.956,0.97879,-1,-1,-1
730,-1,191.317,197.147,43.039,105.596,0.97512,-1,-1,-1
730,-1,146.927,189.866,49.756,123.057,0.973122,-1,-1,-1
730,-1,109.895,213.483,21.661,66.049,0.857947,-1,-1,-1
730,-1,581.685,202.576,33.51,106.597,0.63616,-1,-1,-1
731,-1,343.389,195.129,88.65,125.619,0.997113,-1,-1,-1
731,-1,516.385,196.048,40.744,115.019,0.990275,-1,-1,-1
731,-1,580.143,195.267,42.519,106.534,0.988405,-1,-1,-1
731,-1,73.7658,192.007,38.8292,108.03,0.96879,-1,-1,-1
731,-1,155.411,177.353,42.616,138.366,0.968055,-1,-1,-1
731,-1,193.877,195.503,52.052,105.144,0.92735,-1,-1,-1
731,-1,119.841,211.316,24.929,67.85,0.705878,-1,-1,-1
732,-1,399.96,196.064,41.069,121.063,0.989227,-1,-1,-1
732,-1,356.566,184.432,51.435,143.162,0.986716,-1,-1,-1
732,-1,145.2,179.149,55.196,136.57,0.980939,-1,-1,-1
732,-1,580.423,190.148,41.699,101.114,0.979043,-1,-1,-1
732,-1,525.847,192.902,33.717,128.523,0.973049,-1,-1,-1
732,-1,73.2558,194.574,34.2612,112.328,0.958065,-1,-1,-1
732,-1,124.519,219.764,19.558,58.464,0.838886,-1,-1,-1
733,-1,354.427,195.015,73.801,126.921,0.992619,-1,-1,-1
733,-1,529.499,191.195,39.75,137.549,0.983968,-1,-1,-1
733,-1,146.78,176.839,54.714,132.573,0.977001,-1,-1,-1
733,-1,581.612,181.937,44.334,126.328,0.973094,-1,-1,-1
733,-1,403.601,193.725,42.253,121.176,0.957951,-1,-1,-1
733,-1,83.7165,195.376,33.3685,110.515,0.952744,-1,-1,-1
733,-1,200.741,175.312,40.899,134.792,0.913798,-1,-1,-1
734,-1,368.128,189.283,58.873,135.399,0.990731,-1,-1,-1
734,-1,144.956,184.168,46.701,135.124,0.983017,-1,-1,-1
734,-1,534.702,198.416,44.377,118.744,0.981778,-1,-1,-1
734,-1,589.259,192.532,41.762,110.033,0.980823,-1,-1,-1
734,-1,404.776,191.537,49.884,126.995,0.971721,-1,-1,-1
734,-1,201.529,179.788,43.387,137.741,0.944435,-1,-1,-1
734,-1,80.2783,205.674,35.7897,100.772,0.923724,-1,-1,-1
735,-1,145.288,173.258,55.323,144.814,0.991071,-1,-1,-1
735,-1,371.641,189.917,61.609,139.848,0.990388,-1,-1,-1
735,-1,585.959,193.846,45.457,125.345,0.979619,-1,-1,-1
735,-1,76.7743,215.483,31.2957,86.067,0.964099,-1,-1,-1
735,-1,554.271,195.338,37.344,92.037,0.956275,-1,-1,-1
735,-1,415.685,196.573,35.786,110.518,0.937421,-1,-1,-1
735,-1,203.35,164.211,44.86,154.161,0.930115,-1,-1,-1
736,-1,369.263,191.202,63.862,143.495,0.994869,-1,-1,-1
736,-1,135.281,163.679,59.011,166.889,0.99227,-1,-1,-1
736,-1,539.288,194.937,70.675,123.731,0.97166,-1,-1,-1
736,-1,202.669,191.012,40.146,130.841,0.956095,-1,-1,-1
736,-1,426.305,198.307,31.622,94.89,0.93486,-1,-1,-1
736,-1,81.1923,223.408,25.5247,77.958,0.90188,-1,-1,-1
736,-1,72.3941,185.345,35.3639,74.112,0.824771,-1,-1,-1
736,-1,591.774,193.341,38.22,107.584,0.714103,-1,-1,-1
737,-1,382.39,185.612,54.278,145.7,0.992607,-1,-1,-1
737,-1,125.171,173.882,56.853,151.675,0.991771,-1,-1,-1
737,-1,70.7453,182.485,41.5137,128.81,0.967982,-1,-1,-1
737,-1,202.836,191.738,43.629,120.671,0.945058,-1,-1,-1
737,-1,430.29,199.15,30.958,89.111,0.925362,-1,-1,-1
737,-1,543.417,189.028,67.079,139.143,0.897313,-1,-1,-1
737,-1,323.689,224.073,16.336,48.471,0.778299,-1,-1,-1
738,-1,386.578,188.999,67.27,140.495,0.993919,-1,-1,-1
738,-1,127.691,167.068,58.467,181.907,0.991067,-1,-1,-1
738,-1,202.013,192.666,50.218,127.979,0.988978,-1,-1,-1
738,-1,560.824,188.96,72.117,149.798,0.98629,-1,-1,-1
738,-1,544.953,201.017,34.528,127.016,0.953129,-1,-1,-1
738,-1,431.394,191.51,39.324,112.881,0.950664,-1,-1,-1
738,-1,71.4541,186.871,33.8309,133.264,0.876368,-1,-1,-1
738,-1,322.948,224.303,21.337,47.867,0.811132,-1,-1,-1
738,-1,75.8754,179.721,40.1076,59.595,0.638304,-1,-1,-1
739,-1,125.754,161.967,60.667,189.989,0.994688,-1,-1,-1
739,-1,209.562,184.287,44.789,139.125,0.994367,-1,-1,-1
739,-1,399.185,187.063,65.928,149.412,0.992864,-1,-1,-1
739,-1,63.9267,177.51,50.5293,144.123,0.991569,-1,-1,-1
739,-1,580.219,191.841,44.559,154.577,0.977345,-1,-1,-1
739,-1,443.08,184.802,36.902,110.514,0.9715,-1,-1,-1
739,-1,544.411,190.011,37.617,137.677,0.957273,-1,-1,-1
739,-1,335.744,225.632,19.401,55.292,0.604961,-1,-1,-1
740,-1,201.866,189.62,51.891,134.421,0.995781,-1,-1,-1
740,-1,409.782,191.835,66.923,137.89,0.993061,-1,-1,-1
740,-1,555.793,192.28,40.303,143.083,0.983571,-1,-1,-1
740,-1,70.9262,187.19,42.9528,140.226,0.962757,-1,-1,-1
740,-1,118.138,146.161,67.779,196.347,0.9483,-1,-1,-1
740,-1,458.083,187.363,32.155,119.061,0.926897,-1,-1,-1
740,-1,589.437,196.219,47.462,127.353,0.906141,-1,-1,-1
740,-1,339.111,224.162,20.329,52.349,0.903141,-1,-1,-1
741,-1,416.039,189.227,70.77,140.831,0.997388,-1,-1,-1
741,-1,202.158,181.461,54.315,144.089,0.997034,-1,-1,-1
741,-1,560.738,199.333,48.52,129.021,0.993236,-1,-1,-1
741,-1,69.2159,181.045,43.5531,145.172,0.95384,-1,-1,-1
741,-1,120.211,131.678,66.742,226.226,0.917979,-1,-1,-1
742,-1,426.771,180.622,72.031,171.646,0.998939,-1,-1,-1
742,-1,202.773,178.833,48.68,140.981,0.994123,-1,-1,-1
742,-1,116.994,144.798,59.45,221.272,0.985918,-1,-1,-1
742,-1,553.413,187.846,60.489,144.068,0.985037,-1,-1,-1
742,-1,63.3866,168.482,41.9194,152.631,0.983519,-1,-1,-1
742,-1,346.312,212.336,20.169,62.248,0.776111,-1,-1,-1
743,-1,419.337,179.43,91.607,151.99,0.998218,-1,-1,-1
743,-1,191.485,169.218,62.241,164.886,0.993126,-1,-1,-1
743,-1,101.39,143.739,60.658,214.139,0.989813,-1,-1,-1
743,-1,57.306,182.336,44.262,140.269,0.95382,-1,-1,-1
743,-1,351.749,216.879,20.997,59.002,0.953451,-1,-1,-1
743,-1,170.539,201.692,22.304,86.114,0.72,-1,-1,-1
743,-1,61.1323,174.662,30.9463,65.109,0.582872,-1,-1,-1
744,-1,430.671,173.777,72.694,173.075,0.998451,-1,-1,-1
744,-1,193.011,173.181,66.193,168.286,0.991368,-1,-1,-1
744,-1,82.9289,115.03,79.1501,275.117,0.964847,-1,-1,-1
744,-1,46.7602,170.366,46.0933,161.72,0.957104,-1,-1,-1
744,-1,347.972,214.45,28.914,57.558,0.954058,-1,-1,-1
744,-1,164.91,197.942,21.112,91.466,0.516383,-1,-1,-1
745,-1,449.698,179.823,72.434,150.568,0.99872,-1,-1,-1
745,-1,188.644,181.28,55.288,151.378,0.993856,-1,-1,-1
745,-1,45.2004,206.567,46.7396,126.314,0.953186,-1,-1,-1
745,-1,88.2228,134.82,58.0012,240.107,0.923106,-1,-1,-1
745,-1,55.9324,165.088,35.6685,82.746,0.805982,-1,-1,-1
745,-1,349.623,211.13,16.562,62.745,0.652325,-1,-1,-1
745,-1,157.492,203.671,27.076,85.025,0.596583,-1,-1,-1
746,-1,440.951,179.846,96.37,166.016,0.998827,-1,-1,-1
746,-1,183.616,169.35,68.131,186.859,0.987782,-1,-1,-1
746,-1,26.3907,221.628,46.3242,118.594,0.951758,-1,-1,-1
746,-1,49.8831,132.758,97.1389,257.073,0.925298,-1,-1,-1
746,-1,147.922,211.213,29.047,76.45,0.832464,-1,-1,-1
746,-1,35.6338,157.662,47.5074,69.124,0.762056,-1,-1,-1
747,-1,456.521,171.2,70.796,182.293,0.998548,-1,-1,-1
747,-1,176.69,168.489,70.358,179.522,0.995842,-1,-1,-1
747,-1,129.187,213.688,36.302,66.266,0.98642,-1,-1,-1
747,-1,30.3668,115.725,95.2532,285.688,0.983584,-1,-1,-1
747,-1,16.356,202.124,37.7447,131.624,0.751912,-1,-1,-1
747,-1,236.525,196.905,21.62,82.906,0.622169,-1,-1,-1
747,-1,153.509,210.491,23.729,77.214,0.579909,-1,-1,-1
748,-1,474.986,175.38,69.825,179.127,0.996556,-1,-1,-1
748,-1,172.691,170.251,67.73,179.855,0.99265,-1,-1,-1
748,-1,11.1952,124.331,101.404,286.212,0.99034,-1,-1,-1
748,-1,131.411,210.275,41.279,70.884,0.981897,-1,-1,-1
748,-1,238.573,212.396,14.974,62.99,0.884394,-1,-1,-1
748,-1,359.499,221.506,17.05,54.34,0.698573,-1,-1,-1
749,-1,9.89457,61.2437,99.3154,368.694,0.997865,-1,-1,-1
749,-1,169.069,153.463,68.056,208.344,0.997485,-1,-1,-1
749,-1,475.229,183.211,85.869,168.548,0.996717,-1,-1,-1
749,-1,129.559,210.754,36.612,74.741,0.97416,-1,-1,-1
749,-1,236.674,198.495,21.433,77.726,0.967501,-1,-1,-1
749,-1,575.871,147.233,55.408,207.577,0.966155,-1,-1,-1
749,-1,366.213,214.59,19.508,62.09,0.943626,-1,-1,-1
750,-1,482.997,169.395,77.973,186.02,0.997392,-1,-1,-1
750,-1,153.556,156.357,80.509,213.448,0.99506,-1,-1,-1
750,-1,8.64466,73.7013,92.3863,354.675,0.989668,-1,-1,-1
750,-1,236.264,204.106,23.986,79.611,0.983837,-1,-1,-1
750,-1,365.264,212.251,20.332,61.578,0.958682,-1,-1,-1
750,-1,556.665,198.344,45.269,111.217,0.87506,-1,-1,-1
750,-1,125.314,204.691,31.95,76.961,0.872642,-1,-1,-1
751,-1,493.828,172.314,60.56,191.888,0.997137,-1,-1,-1
751,-1,138.703,159.412,94.128,221.61,0.99177,-1,-1,-1
751,-1,234.481,201.533,28.147,77.78,0.988252,-1,-1,-1
751,-1,357.437,214.255,40.568,65.776,0.93803,-1,-1,-1
751,-1,551.29,195.907,49.712,117.427,0.896948,-1,-1,-1
751,-1,371.826,222.085,19.237,38.449,0.665571,-1,-1,-1
751,-1,396.425,213.688,19.549,76.099,0.531537,-1,-1,-1
751,-1,3.42725,238.418,67.3679,144.784,0.500688,-1,-1,-1
752,-1,491.298,182.406,117.299,163.534,0.995802,-1,-1,-1
752,-1,225.913,212.277,26.408,71.046,0.990639,-1,-1,-1
752,-1,130.923,146.83,96.414,234.343,0.98674,-1,-1,-1
752,-1,373.125,210.248,22.508,68.783,0.887546,-1,-1,-1
753,-1,112.939,136.863,96.849,257.043,0.998022,-1,-1,-1
753,-1,497.554,179.914,109.993,170.784,0.997542,-1,-1,-1
753,-1,233.84,203.871,28.208,74.898,0.987373,-1,-1,-1
753,-1,398.607,220.098,25.232,81.184,0.904268,-1,-1,-1
753,-1,4.79031,144.632,37.6644,123.771,0.841099,-1,-1,-1
753,-1,375.791,214.688,24.393,69.433,0.796746,-1,-1,-1
754,-1,510.602,161.01,93.551,191.562,0.998352,-1,-1,-1
754,-1,106.948,121.45,91.484,283.018,0.997887,-1,-1,-1
754,-1,234.215,208.132,28.361,74.714,0.988073,-1,-1,-1
754,-1,386.595,212.579,21.528,77.282,0.886718,-1,-1,-1
755,-1,92.8976,106.268,101.069,308.169,0.996823,-1,-1,-1
755,-1,521.028,161.658,78.329,191.334,0.996375,-1,-1,-1
755,-1,235.097,208.538,26.986,70.315,0.994166,-1,-1,-1
755,-1,388.583,209.489,23.358,74.281,0.939554,-1,-1,-1
756,-1,75.3576,96.5835,104.986,328.513,0.999346,-1,-1,-1
756,-1,519.51,162.258,77.718,202.285,0.998993,-1,-1,-1
756,-1,224.037,191.049,40.754,101.239,0.987565,-1,-1,-1
756,-1,381.561,200.5,30.856,82.843,0.973557,-1,-1,-1
757,-1,39.3734,101.958,136.195,351.93,0.999464,-1,-1,-1
757,-1,530.331,170.022,87.916,188.922,0.99735,-1,-1,-1
757,-1,222.143,190.134,35.767,96.673,0.986091,-1,-1,-1
757,-1,388.32,200.189,28.362,78.176,0.960846,-1,-1,-1
758,-1,29.679,86.1454,128.593,373.861,0.999095,-1,-1,-1
758,-1,534.915,155.738,85.924,216.595,0.997313,-1,-1,-1
758,-1,223.085,206.614,42.706,74.998,0.988205,-1,-1,-1
758,-1,399.725,212.019,24.444,68.541,0.902004,-1,-1,-1
758,-1,387.241,203.982,17.024,72.746,0.777887,-1,-1,-1
759,-1,7.00207,49.0213,144.397,415.542,0.998559,-1,-1,-1
759,-1,546.737,147.91,77.196,221.851,0.998079,-1,-1,-1
759,-1,224.154,194.195,35.404,94.731,0.984279,-1,-1,-1
759,-1,390.94,198.31,25.083,86.387,0.954685,-1,-1,-1
760,-1,7.00978,33.7907,150.33,432.676,0.997906,-1,-1,-1
760,-1,541.517,160.216,96.5,212.261,0.99569,-1,-1,-1
760,-1,224.387,202.591,41.133,83.466,0.978931,-1,-1,-1
760,-1,392.305,206.442,25.598,75.421,0.97397,-1,-1,-1
760,-1,135.416,190.875,30.149,89.177,0.71488,-1,-1,-1
761,-1,119.73,197.906,49.811,85.371,0.991105,-1,-1,-1
761,-1,223.079,189.486,41.325,98.251,0.989262,-1,-1,-1
761,-1,558.167,162.424,70.51,219.927,0.98163,-1,-1,-1
761,-1,2.96994,26.2581,99.1121,450.594,0.979241,-1,-1,-1
761,-1,405.567,206.37,25.512,86.095,0.953538,-1,-1,-1
761,-1,393.692,212.985,23.185,68.488,0.87296,-1,-1,-1
762,-1,548.893,145.506,77.904,224.102,0.988902,-1,-1,-1
762,-1,220.21,198.454,46.712,87.866,0.988027,-1,-1,-1
762,-1,117.842,197.729,45.729,74.956,0.986758,-1,-1,-1
762,-1,406.426,201.274,25.433,89.616,0.93166,-1,-1,-1
762,-1,396.552,210.351,16.445,66.114,0.540088,-1,-1,-1
763,-1,565.682,156.087,56.128,216.87,0.995545,-1,-1,-1
763,-1,222.735,190.073,40.835,110.286,0.99014,-1,-1,-1
763,-1,113.728,209.616,48.693,72.298,0.963523,-1,-1,-1
763,-1,401.83,193.688,30.244,103.413,0.938289,-1,-1,-1
763,-1,394.36,207.181,19.505,63.739,0.579192,-1,-1,-1
764,-1,554.285,142.325,83.742,222.915,0.997765,-1,-1,-1
764,-1,212.657,192.447,50.222,96.175,0.992198,-1,-1,-1
764,-1,112.579,200.114,47.029,75.214,0.987282,-1,-1,-1
764,-1,405.075,208.577,25.81,87.566,0.70683,-1,-1,-1
765,-1,555.022,138.625,83.978,223.473,0.995907,-1,-1,-1
765,-1,212.217,200.851,40.92,92.374,0.990868,-1,-1,-1
765,-1,113.38,198.88,41.721,74.931,0.955864,-1,-1,-1
765,-1,409.953,206.25,26.725,93.922,0.859146,-1,-1,-1
765,-1,343.048,219.307,22.025,49.061,0.721302,-1,-1,-1
766,-1,211.469,196.377,44.025,103.15,0.995076,-1,-1,-1
766,-1,557.937,131.283,81.063,249.011,0.994685,-1,-1,-1
766,-1,106.577,203.011,53.676,93.993,0.974998,-1,-1,-1
766,-1,408.449,208.283,26.937,85.498,0.942184,-1,-1,-1
766,-1,341.241,214.989,21.238,55.597,0.559771,-1,-1,-1
767,-1,208.37,190.742,46.971,120.248,0.991822,-1,-1,-1
767,-1,110.669,193.693,48.027,97.203,0.982374,-1,-1,-1
767,-1,568.38,128.272,70.62,250.123,0.980958,-1,-1,-1
767,-1,410.351,204.028,28.005,101.374,0.970344,-1,-1,-1
768,-1,208.583,190.334,44.174,117.558,0.994022,-1,-1,-1
768,-1,107.821,205.879,46.302,93.104,0.950885,-1,-1,-1
768,-1,584.273,121.133,52.941,237.601,0.916558,-1,-1,-1
768,-1,412.262,209.617,28.274,104.203,0.890143,-1,-1,-1
768,-1,340.861,205.583,29.925,68.472,0.630329,-1,-1,-1
769,-1,203.553,184.131,47.277,130.993,0.995192,-1,-1,-1
769,-1,413.889,213.53,37.067,106.148,0.982956,-1,-1,-1
769,-1,590.155,168.22,46.242,177.228,0.956465,-1,-1,-1
769,-1,100.239,201.02,52.659,95.111,0.956208,-1,-1,-1
769,-1,340.529,218.35,27.741,50.298,0.737933,-1,-1,-1
769,-1,358.115,226.19,21.249,51.238,0.610563,-1,-1,-1
770,-1,187.927,192.099,64.401,123.891,0.996381,-1,-1,-1
770,-1,106.588,200.399,47.443,103.802,0.990773,-1,-1,-1
770,-1,419.972,207.082,29.365,107,0.895366,-1,-1,-1
770,-1,597.376,187.268,40.476,121.307,0.833893,-1,-1,-1
770,-1,350.5,214.702,23.544,65.056,0.55752,-1,-1,-1
771,-1,195.377,187.624,62.47,129.546,0.996497,-1,-1,-1
771,-1,106.86,198.675,44.925,105.716,0.989013,-1,-1,-1
771,-1,421.204,221.12,29.983,89.216,0.918743,-1,-1,-1
771,-1,600.828,191.944,38.172,120.017,0.896694,-1,-1,-1
771,-1,358.402,232.14,24.472,49.773,0.879528,-1,-1,-1
771,-1,347.792,225.971,21.953,51.222,0.681527,-1,-1,-1
772,-1,188.11,183.385,60.646,141.084,0.995155,-1,-1,-1
772,-1,96.2358,199.914,47.5882,99.718,0.972619,-1,-1,-1
772,-1,429.093,208.402,22.985,102.467,0.888806,-1,-1,-1
772,-1,359.089,228.739,18.901,42.981,0.727606,-1,-1,-1
772,-1,340.859,226.725,19.548,47.035,0.640257,-1,-1,-1
773,-1,188.602,177.098,53.235,146.049,0.991002,-1,-1,-1
773,-1,103.187,200.575,45.216,90.073,0.975889,-1,-1,-1
773,-1,426.852,208.125,27.983,102.271,0.948189,-1,-1,-1
774,-1,176.075,177.855,66.688,135.706,0.993736,-1,-1,-1
774,-1,104.123,194.297,41.764,116.372,0.98031,-1,-1,-1
774,-1,430.837,209.967,22.083,104.6,0.822067,-1,-1,-1
775,-1,177.226,175.003,61.449,153.181,0.992451,-1,-1,-1
775,-1,101.98,202.73,41.68,99.696,0.977116,-1,-1,-1
775,-1,429.485,201.08,25.254,109.889,0.803192,-1,-1,-1
776,-1,168.579,179.338,66.526,148.81,0.996099,-1,-1,-1
776,-1,95.932,203.437,45.496,97.843,0.974011,-1,-1,-1
776,-1,429.933,212.93,35.83,106.349,0.9541,-1,-1,-1
777,-1,159.372,179.871,76.331,145.146,0.996783,-1,-1,-1
777,-1,100.989,197.334,39.892,115.048,0.976615,-1,-1,-1
777,-1,430.639,211.239,34.881,89.318,0.884837,-1,-1,-1
777,-1,381.278,227.919,31.103,52.246,0.667359,-1,-1,-1
778,-1,157.134,176.092,71.695,139.615,0.996789,-1,-1,-1
778,-1,92.8344,198.924,40.3496,113.226,0.97334,-1,-1,-1
778,-1,440.919,219.92,26.232,90.118,0.906768,-1,-1,-1
779,-1,153.272,173.473,75.779,154.77,0.993532,-1,-1,-1
779,-1,87.1498,198.434,45.9652,115.549,0.984167,-1,-1,-1
779,-1,437.865,207.622,28.909,90.016,0.931319,-1,-1,-1
779,-1,394.717,228.952,21.246,46.507,0.751644,-1,-1,-1
780,-1,141.329,156.897,79.87,175.787,0.99603,-1,-1,-1
780,-1,437.776,207.591,30.618,84.614,0.948886,-1,-1,-1
780,-1,87.9677,195.981,44.9343,118.335,0.940675,-1,-1,-1
780,-1,453.802,211.208,31.121,104.575,0.595099,-1,-1,-1
780,-1,200.364,178.279,34.669,120.819,0.502079,-1,-1,-1
781,-1,132.519,143.681,79.564,191.202,0.992731,-1,-1,-1
781,-1,441.405,212.067,26.45,80.863,0.959781,-1,-1,-1
781,-1,208.623,184.279,30.762,86.318,0.909921,-1,-1,-1
781,-1,459.414,197.843,25.503,124.598,0.708681,-1,-1,-1
781,-1,81.469,193.456,47.441,102.818,0.678283,-1,-1,-1
782,-1,118.681,142.585,100.111,206.735,0.996174,-1,-1,-1
782,-1,84.5948,186.57,40.7342,114.218,0.979246,-1,-1,-1
782,-1,210.666,189.408,29.81,89.297,0.938741,-1,-1,-1
782,-1,442.896,211.413,23.464,76.063,0.929041,-1,-1,-1
782,-1,459.806,209.276,28.101,110.552,0.761508,-1,-1,-1
783,-1,112.554,145.296,81.677,210.725,0.994443,-1,-1,-1
783,-1,208.828,202.627,32.124,72.738,0.989408,-1,-1,-1
783,-1,431.045,210.387,44.455,82.616,0.979204,-1,-1,-1
783,-1,71.7798,191.489,42.7822,105.563,0.957192,-1,-1,-1
784,-1,209.947,198.113,30.254,72.19,0.993291,-1,-1,-1
784,-1,104.538,144.314,86.431,218.375,0.991335,-1,-1,-1
784,-1,439.756,207.843,31.722,85.98,0.967612,-1,-1,-1
784,-1,153.519,238.168,41.246,114.633,0.859731,-1,-1,-1
785,-1,81.6539,120.999,101.152,255.738,0.99625,-1,-1,-1
785,-1,204.868,200.618,43.586,77.086,0.992816,-1,-1,-1
785,-1,447.334,205.859,32.965,87.594,0.981053,-1,-1,-1
785,-1,477.405,192.982,33.408,126.351,0.888668,-1,-1,-1
786,-1,201.395,197.05,43.931,88.522,0.991331,-1,-1,-1
786,-1,73.0397,116.457,97.2283,274.7,0.988574,-1,-1,-1
786,-1,450.103,210.534,31.216,80.075,0.987895,-1,-1,-1
787,-1,205.022,196.953,32.628,77.384,0.992827,-1,-1,-1
787,-1,57.8944,128.069,117.487,216.454,0.991197,-1,-1,-1
787,-1,446.785,209.28,32.969,89.043,0.980431,-1,-1,-1
788,-1,31.8456,105.514,129.314,295.122,0.99699,-1,-1,-1
788,-1,452.131,209.237,31.417,83.54,0.991953,-1,-1,-1
788,-1,205.682,198.769,39.057,86.219,0.991807,-1,-1,-1
788,-1,548.37,185.414,38.099,92.35,0.795541,-1,-1,-1
789,-1,206.804,210.192,40.013,75.52,0.992859,-1,-1,-1
789,-1,12.9242,92.5531,141.245,335.424,0.991314,-1,-1,-1
789,-1,454.246,207.045,33.4,89.215,0.990571,-1,-1,-1
789,-1,551.286,194.126,33.712,133.345,0.984052,-1,-1,-1
789,-1,499.909,185.122,41.362,144.373,0.97437,-1,-1,-1
790,-1,10.3427,80.9493,120.722,381.026,0.995671,-1,-1,-1
790,-1,456.891,210.098,33.636,94.02,0.984799,-1,-1,-1
790,-1,207.33,206.517,39.698,82.154,0.982835,-1,-1,-1
790,-1,546.485,191.949,39.226,136.773,0.9776,-1,-1,-1
790,-1,508.073,192.119,35.564,142.287,0.866656,-1,-1,-1
790,-1,358.453,224.15,26.121,59.599,0.63602,-1,-1,-1
791,-1,0,86.0188,144.949,373.558,0.99567,-1,-1,-1
791,-1,461.312,213.672,32.543,83.603,0.993004,-1,-1,-1
791,-1,209.43,204.193,36.98,81.23,0.980125,-1,-1,-1
791,-1,363.266,236.27,21.515,45.022,0.964854,-1,-1,-1
791,-1,548.628,189.011,48.652,142.225,0.964386,-1,-1,-1
792,-1,535.686,195.695,51.479,131.706,0.993017,-1,-1,-1
792,-1,465.629,220.039,29.026,75.593,0.992752,-1,-1,-1
792,-1,216.04,201.58,27.521,79.764,0.979793,-1,-1,-1
792,-1,6.71538,103.35,114.643,353.926,0.968818,-1,-1,-1
792,-1,363.438,233.496,22.279,46.821,0.905233,-1,-1,-1
793,-1,211.605,198.74,33.952,79.793,0.992984,-1,-1,-1
793,-1,466.088,211.649,34.914,80.407,0.991284,-1,-1,-1
793,-1,543.322,203.711,38.202,129.351,0.975034,-1,-1,-1
793,-1,6.05687,132.768,91.1373,319.578,0.897304,-1,-1,-1
793,-1,360.276,215.033,28.538,61.209,0.778353,-1,-1,-1
793,-1,608.336,203.71,29.2,71.21,0.610976,-1,-1,-1
794,-1,208.182,203.595,42.819,79.568,0.989977,-1,-1,-1
794,-1,466.608,221.394,49.488,78.061,0.988894,-1,-1,-1
794,-1,547.73,212.539,39.007,132.495,0.975193,-1,-1,-1
794,-1,7.89625,147.453,43.9337,145.69,0.940355,-1,-1,-1
794,-1,363.797,222.876,28.25,63.392,0.913092,-1,-1,-1
794,-1,610.815,214.455,20.238,86.503,0.858482,-1,-1,-1
795,-1,543.942,195.017,55.883,149.034,0.993454,-1,-1,-1
795,-1,207.637,209.192,44.85,76.854,0.992838,-1,-1,-1
795,-1,471.753,202.603,34.416,101.523,0.98514,-1,-1,-1
795,-1,364.587,210.612,32.397,75.752,0.743368,-1,-1,-1
795,-1,609.421,217.957,23.103,94.68,0.621741,-1,-1,-1
795,-1,54.6269,175.524,44.7602,158.653,0.515712,-1,-1,-1
796,-1,206.952,200.356,49.111,87.334,0.990643,-1,-1,-1
796,-1,473.806,217.769,34.816,86.664,0.990034,-1,-1,-1
796,-1,544.056,187.99,59.113,153.845,0.979636,-1,-1,-1
796,-1,57.2045,179.83,43.7155,155.246,0.717703,-1,-1,-1
796,-1,361.871,215.2,36.287,60.763,0.664785,-1,-1,-1
797,-1,555.052,197.137,62.938,146.195,0.994539,-1,-1,-1
797,-1,471.251,224.644,45.59,86.19,0.979057,-1,-1,-1
797,-1,208.395,196.648,35.197,92.079,0.974236,-1,-1,-1
797,-1,54.2656,188.735,48.6134,150.52,0.776025,-1,-1,-1
797,-1,362.913,225.223,37.864,53.475,0.688542,-1,-1,-1
798,-1,569.998,169.48,65.97,191.279,0.996503,-1,-1,-1
798,-1,481.222,218.992,36.421,88.39,0.978139,-1,-1,-1
798,-1,208.339,191.683,36.293,101.342,0.9704,-1,-1,-1
799,-1,571.336,178.17,61.419,174.426,0.997534,-1,-1,-1
799,-1,212.096,196.168,34.038,97.643,0.978701,-1,-1,-1
799,-1,481.791,232.043,33.692,73.654,0.967023,-1,-1,-1
799,-1,45.6498,185.201,47.56,154.713,0.914631,-1,-1,-1
799,-1,541.241,196.801,34.043,140.356,0.899559,-1,-1,-1
799,-1,229.09,203.508,27.407,63.776,0.69624,-1,-1,-1
800,-1,210.603,196.554,35.617,89.475,0.99092,-1,-1,-1
800,-1,575.152,194.953,59.876,168.061,0.97728,-1,-1,-1
800,-1,541.987,189.333,31.877,138.4,0.971377,-1,-1,-1
800,-1,486.183,216.339,35.788,99.597,0.968167,-1,-1,-1
800,-1,35.8308,180.302,52.7169,158.237,0.899925,-1,-1,-1
800,-1,373.872,227.492,33.305,49.702,0.574528,-1,-1,-1
801,-1,209.172,202.486,33.797,78.247,0.988924,-1,-1,-1
801,-1,530.981,197.889,40.482,130.888,0.974308,-1,-1,-1
801,-1,596.508,215.466,42.28,142.628,0.972573,-1,-1,-1
801,-1,480.111,212.681,43.342,98.882,0.959518,-1,-1,-1
801,-1,17.9597,169.34,78.2246,126.838,0.755056,-1,-1,-1
802,-1,207.547,195.448,33.488,86.882,0.990735,-1,-1,-1
802,-1,526.616,200.077,46.501,119.896,0.987279,-1,-1,-1
802,-1,488.807,212.27,42.239,98.816,0.977466,-1,-1,-1
802,-1,372.965,234.012,43.065,44.699,0.94558,-1,-1,-1
802,-1,605.388,206.067,32.424,113.845,0.943271,-1,-1,-1
803,-1,524.446,200.886,49.115,124.075,0.989026,-1,-1,-1
803,-1,205.765,195.672,34.553,97.868,0.986333,-1,-1,-1
803,-1,488.641,208.704,35.809,98.64,0.956274,-1,-1,-1
803,-1,604.176,196.372,34.824,107.955,0.841687,-1,-1,-1
803,-1,15.0351,170.473,83.6562,139.002,0.747778,-1,-1,-1
803,-1,376.057,226.777,32.626,49.742,0.657883,-1,-1,-1
803,-1,226.579,204.818,26.413,76.944,0.52476,-1,-1,-1
804,-1,204.253,188.838,34.992,105.089,0.983839,-1,-1,-1
804,-1,506.928,205.326,69.088,127.047,0.979968,-1,-1,-1
804,-1,490.488,214.084,35.519,99.686,0.949677,-1,-1,-1
804,-1,19.535,174.791,92.523,150.653,0.526109,-1,-1,-1
805,-1,511.045,194.96,56.786,137.884,0.985966,-1,-1,-1
805,-1,204.001,193.206,34.868,103.147,0.983219,-1,-1,-1
805,-1,15.6873,159.881,64.6459,191.311,0.980574,-1,-1,-1
805,-1,493.29,206.142,40.261,107.945,0.870353,-1,-1,-1
805,-1,179.708,205.909,28.334,95.354,0.698466,-1,-1,-1
805,-1,377.757,220.804,29.825,60.351,0.590848,-1,-1,-1
805,-1,231.627,208.434,26.942,75.451,0.516398,-1,-1,-1
806,-1,498.171,193.79,59.982,134.954,0.996815,-1,-1,-1
806,-1,202.123,186.294,35.46,106.839,0.975492,-1,-1,-1
806,-1,11.4638,159.789,55.5429,192.758,0.759624,-1,-1,-1
806,-1,180.385,203.869,30.451,96.857,0.658997,-1,-1,-1
807,-1,496.641,188.13,64.828,142.51,0.99703,-1,-1,-1
807,-1,190.375,194.712,49.648,95.299,0.957334,-1,-1,-1
807,-1,8.18963,162.069,62.5451,190.942,0.822153,-1,-1,-1
808,-1,500.654,193.272,55.963,137.922,0.982859,-1,-1,-1
808,-1,207.634,194.652,27.518,93.725,0.945081,-1,-1,-1
808,-1,184.374,203.517,35.787,91.423,0.894625,-1,-1,-1
808,-1,19.6362,154.98,58.2465,138.738,0.72432,-1,-1,-1
808,-1,380.156,224.808,33.022,50.734,0.524115,-1,-1,-1
809,-1,491.398,198.326,68.894,131.82,0.998009,-1,-1,-1
809,-1,185.955,198.504,42.149,95.482,0.970813,-1,-1,-1
809,-1,380.021,212.666,32.807,71.432,0.887399,-1,-1,-1
809,-1,12.4617,150.095,62.461,149.204,0.860198,-1,-1,-1
809,-1,212.629,198.416,23.139,84.166,0.826118,-1,-1,-1
810,-1,497.944,184.744,58.466,135.518,0.995866,-1,-1,-1
810,-1,190.644,193.695,41.344,98.323,0.973507,-1,-1,-1
810,-1,387.036,225.2,28.287,53.369,0.862014,-1,-1,-1
811,-1,503.126,199.715,55.497,122.513,0.994601,-1,-1,-1
811,-1,178.574,199.54,55.127,107.149,0.966659,-1,-1,-1
811,-1,8.08427,159.188,43.5796,204.795,0.878606,-1,-1,-1
811,-1,238.328,212.028,13.397,48.248,0.508476,-1,-1,-1
812,-1,506.793,199.509,51.546,115.844,0.991909,-1,-1,-1
812,-1,188.694,199.164,46.289,98.016,0.958294,-1,-1,-1
812,-1,385.91,216.794,28.139,66.623,0.745667,-1,-1,-1
812,-1,7.69415,156.959,31.7317,197.621,0.691645,-1,-1,-1
813,-1,178.175,195.852,51.195,104.817,0.986186,-1,-1,-1
813,-1,509.044,204.016,63.235,110.053,0.955276,-1,-1,-1
813,-1,6.79924,193.367,34.2281,112.594,0.654663,-1,-1,-1
814,-1,184.558,193.133,39.39,107.384,0.984963,-1,-1,-1
814,-1,485.55,209.623,54.648,108.7,0.980109,-1,-1,-1
814,-1,532.394,203.491,39.45,106.63,0.968158,-1,-1,-1
814,-1,246.928,214.58,14.293,44.796,0.796815,-1,-1,-1
815,-1,185.419,189.682,39.013,110.671,0.988011,-1,-1,-1
815,-1,479.827,197.838,44.389,130.531,0.972829,-1,-1,-1
815,-1,532.434,204.803,39.392,108.089,0.969447,-1,-1,-1
815,-1,390.073,223.982,26.581,54.055,0.742014,-1,-1,-1
816,-1,179.528,189.368,48.936,118.922,0.993358,-1,-1,-1
816,-1,532.317,205.171,44.295,109.568,0.992455,-1,-1,-1
816,-1,475.073,179.202,47.258,142.327,0.991603,-1,-1,-1
816,-1,391.446,213.923,32.145,58.868,0.635007,-1,-1,-1
816,-1,238.937,205.944,16,45.35,0.522435,-1,-1,-1
817,-1,174.908,190.567,53.64,120.298,0.993268,-1,-1,-1
817,-1,524.545,198.872,66.692,112.464,0.990105,-1,-1,-1
817,-1,471.872,184.576,49.684,147.256,0.986048,-1,-1,-1
818,-1,534.473,204.184,62.918,108.433,0.994481,-1,-1,-1
818,-1,175.602,190.209,51.962,118.067,0.991477,-1,-1,-1
818,-1,473.373,178.114,41.707,144.775,0.991056,-1,-1,-1
818,-1,392.567,213.922,30.209,57.624,0.570783,-1,-1,-1
819,-1,467.401,176.025,49.686,156.282,0.995075,-1,-1,-1
819,-1,174.752,187.218,51.272,123.722,0.992712,-1,-1,-1
819,-1,538.737,202.333,50.302,113.782,0.987656,-1,-1,-1
819,-1,240.592,214.122,15.447,45.179,0.526426,-1,-1,-1
820,-1,173.308,188.183,53.075,124.903,0.991909,-1,-1,-1
820,-1,456.527,187.949,54.009,140.943,0.986623,-1,-1,-1
820,-1,547.441,209.982,62.717,108.86,0.98429,-1,-1,-1
820,-1,537.595,217.754,36.406,72.292,0.75752,-1,-1,-1
821,-1,446.418,189.698,68.022,137.882,0.993977,-1,-1,-1
821,-1,178.59,184.407,44.44,124.913,0.989016,-1,-1,-1
821,-1,572.99,195.777,46.904,129.422,0.978725,-1,-1,-1
821,-1,552.276,200.837,33.346,111.506,0.879834,-1,-1,-1
821,-1,245.448,220.977,17.589,35.799,0.616996,-1,-1,-1
822,-1,179.186,185.058,53.554,121.972,0.994586,-1,-1,-1
822,-1,444.832,183.872,67.853,144.94,0.992561,-1,-1,-1
822,-1,573.091,195.498,48.939,132.41,0.982192,-1,-1,-1
822,-1,551.784,210.391,29.339,90.529,0.833159,-1,-1,-1
823,-1,437.774,182.495,67.744,141.552,0.997985,-1,-1,-1
823,-1,173.012,193.995,63.542,121.282,0.992422,-1,-1,-1
823,-1,562.24,206.219,66.082,116.204,0.989572,-1,-1,-1
823,-1,242.972,218.788,19.103,38.542,0.756535,-1,-1,-1
824,-1,446.241,175.55,47.933,153.465,0.996819,-1,-1,-1
824,-1,577.967,197.351,59.195,125.65,0.992326,-1,-1,-1
824,-1,169.666,193.909,57.9,130.667,0.991924,-1,-1,-1
824,-1,243.492,225.049,18.667,39.551,0.781795,-1,-1,-1
825,-1,438.753,178.368,58.865,157.238,0.996443,-1,-1,-1
825,-1,568.911,191.942,70.089,145.241,0.98956,-1,-1,-1
825,-1,159.982,188.572,65.857,130.745,0.985504,-1,-1,-1
825,-1,242.011,221.847,14.725,41.507,0.654109,-1,-1,-1
825,-1,207.781,184.139,26.88,97.788,0.541521,-1,-1,-1
826,-1,437.993,183.56,51.753,155.601,0.995756,-1,-1,-1
826,-1,579.971,210.578,52.092,129.094,0.988701,-1,-1,-1
826,-1,186.586,166.352,51.098,150.242,0.980038,-1,-1,-1
826,-1,151.735,189.241,48.415,133.477,0.939962,-1,-1,-1
827,-1,420.596,187.113,58.062,140.721,0.995962,-1,-1,-1
827,-1,582.27,199.367,50.741,137.823,0.9878,-1,-1,-1
827,-1,188.397,182.521,44.232,128.893,0.983968,-1,-1,-1
827,-1,151.958,193.095,43.492,128.93,0.983611,-1,-1,-1
827,-1,245.256,226.935,14.54,29.242,0.846575,-1,-1,-1
827,-1,365.527,225.901,18.171,28.66,0.622091,-1,-1,-1
828,-1,422.08,185.588,51.3,148.215,0.994014,-1,-1,-1
828,-1,190.245,177.689,42.953,143.161,0.989773,-1,-1,-1
828,-1,150.361,185.924,40.764,144.052,0.974536,-1,-1,-1
828,-1,579.919,195.185,57.11,130.1,0.967482,-1,-1,-1
829,-1,422.972,177.894,45.984,162.318,0.995713,-1,-1,-1
829,-1,185.182,177.449,44.488,137.886,0.986525,-1,-1,-1
829,-1,143.987,178.912,40.764,155.316,0.982757,-1,-1,-1
829,-1,584.578,206.052,49.263,155.697,0.866616,-1,-1,-1
830,-1,411.319,167.158,55.982,174.707,0.994209,-1,-1,-1
830,-1,184.242,173.334,44.336,145.68,0.988518,-1,-1,-1
830,-1,135.042,182.528,49.933,155.03,0.98782,-1,-1,-1
830,-1,588.786,196.277,42.847,148.152,0.819439,-1,-1,-1
831,-1,181.164,173.121,48.293,141.835,0.991896,-1,-1,-1
831,-1,129.744,185.849,45.446,143.794,0.990384,-1,-1,-1
831,-1,410.287,171.632,52.517,153.323,0.958173,-1,-1,-1
831,-1,583.166,188.667,39.651,141.725,0.768375,-1,-1,-1
832,-1,401.697,181.621,57.733,145.38,0.997231,-1,-1,-1
832,-1,120.648,178.61,43.053,153.143,0.996733,-1,-1,-1
832,-1,177.029,169.258,46.785,146.113,0.992421,-1,-1,-1
832,-1,588.676,189.485,38.316,124.362,0.983974,-1,-1,-1
832,-1,378.402,213.85,15.667,40.559,0.520403,-1,-1,-1
833,-1,178.377,174.221,49.448,133.915,0.99139,-1,-1,-1
833,-1,121.754,178.77,38.798,159.887,0.989028,-1,-1,-1
833,-1,389.083,180.852,71.591,146.474,0.987195,-1,-1,-1
833,-1,598.041,197.808,39.091,125.997,0.964638,-1,-1,-1
834,-1,116.842,184.046,36.981,155.378,0.996774,-1,-1,-1
834,-1,384.772,176.84,64.802,155.137,0.995725,-1,-1,-1
834,-1,177.443,163.613,50.096,148.271,0.982677,-1,-1,-1
834,-1,256.211,215.435,14.558,35.302,0.50549,-1,-1,-1
835,-1,116.454,170.532,37.788,166.827,0.994953,-1,-1,-1
835,-1,174.797,169.144,48.336,139.192,0.987473,-1,-1,-1
835,-1,382.253,188.874,72.886,142.699,0.980287,-1,-1,-1
835,-1,328.025,213.559,19.739,45.8,0.795469,-1,-1,-1
835,-1,250.757,217.655,13.803,36.655,0.593289,-1,-1,-1
836,-1,93.8538,176.946,50.6312,171.994,0.995436,-1,-1,-1
836,-1,380.427,174.048,49.255,156.562,0.989218,-1,-1,-1
836,-1,172.589,157.394,53.691,163.774,0.965953,-1,-1,-1
836,-1,330.019,213.274,18.327,36.001,0.743908,-1,-1,-1
837,-1,87.2059,171.316,54.5901,176.673,0.99646,-1,-1,-1
837,-1,381.129,174.352,43.73,152.689,0.994113,-1,-1,-1
837,-1,169.326,160.949,56.313,161.788,0.98178,-1,-1,-1
838,-1,371.068,169.43,48.854,163.371,0.997078,-1,-1,-1
838,-1,88.594,172.701,49.372,178.004,0.995297,-1,-1,-1
838,-1,172.489,166.025,45.472,145.436,0.992461,-1,-1,-1
838,-1,431.985,212.077,43.856,68.545,0.784768,-1,-1,-1
839,-1,368.23,161.597,49.261,167.333,0.997756,-1,-1,-1
839,-1,69.673,166.937,62.86,176.468,0.993045,-1,-1,-1
839,-1,171.659,162.56,46.911,148.952,0.988292,-1,-1,-1
840,-1,358.071,165.932,58.8,157.104,0.997756,-1,-1,-1
840,-1,59.3293,151.357,65.6837,202.076,0.99502,-1,-1,-1
840,-1,167.828,141.749,47.732,168.333,0.982168,-1,-1,-1
840,-1,427.762,206.946,47.81,84.553,0.835605,-1,-1,-1
841,-1,53.378,159.426,63.395,201.036,0.993769,-1,-1,-1
841,-1,348.76,172.085,55.949,165.136,0.992568,-1,-1,-1
841,-1,166.121,152.773,47.525,158.963,0.990853,-1,-1,-1
841,-1,431.561,201.106,52.052,81.33,0.958609,-1,-1,-1
841,-1,255.042,214.71,14.593,34.474,0.564376,-1,-1,-1
842,-1,349.339,167.167,49.004,161.385,0.996334,-1,-1,-1
842,-1,49.9481,159.685,52.7359,193.336,0.99203,-1,-1,-1
842,-1,157.959,151.289,57.041,175.335,0.984084,-1,-1,-1
842,-1,434.281,204.478,50.778,82.415,0.821883,-1,-1,-1
843,-1,340.926,162.572,52.669,165.566,0.997054,-1,-1,-1
843,-1,159.823,156.969,56.185,159.041,0.985137,-1,-1,-1
843,-1,40.2652,158.097,59.2481,197.833,0.984922,-1,-1,-1
843,-1,444.923,206.562,43.528,74.007,0.925732,-1,-1,-1
843,-1,238.342,223.205,14.301,28.943,0.712435,-1,-1,-1
843,-1,263.018,219.373,16.888,40.916,0.63724,-1,-1,-1
844,-1,338.269,174.212,41.644,163.501,0.99808,-1,-1,-1
844,-1,24.5385,155.371,73.9545,206.539,0.996503,-1,-1,-1
844,-1,147.87,152.644,75.141,172.312,0.990447,-1,-1,-1
844,-1,441.33,203.623,50.298,85.173,0.972199,-1,-1,-1
845,-1,310.626,175.867,70.279,149.872,0.997662,-1,-1,-1
845,-1,147.952,140.164,65.701,193.415,0.993093,-1,-1,-1
845,-1,17.7378,154.043,71.0387,214.029,0.989739,-1,-1,-1
845,-1,449.218,208.685,48.681,82.874,0.977383,-1,-1,-1
845,-1,230.914,216.868,24.208,41.191,0.541928,-1,-1,-1
846,-1,314.676,174.688,66.04,165.076,0.998188,-1,-1,-1
846,-1,1.90036,137.101,87.8128,242.303,0.996251,-1,-1,-1
846,-1,145.045,165.639,67.401,164.494,0.989375,-1,-1,-1
846,-1,450.116,211.377,40.72,85.401,0.979827,-1,-1,-1
846,-1,389.776,222.502,15.991,42.146,0.883181,-1,-1,-1
847,-1,302.447,176.421,72.398,158.983,0.998604,-1,-1,-1
847,-1,149.002,146.847,57.18,191.562,0.996672,-1,-1,-1
847,-1,4.03238,133.246,74.6031,265.518,0.990469,-1,-1,-1
847,-1,451.612,215.454,47.286,80.875,0.926934,-1,-1,-1
847,-1,384.451,221.03,29.29,35.199,0.871731,-1,-1,-1
848,-1,311.327,174.909,47.1,171.262,0.998431,-1,-1,-1
848,-1,140.176,139.929,68.638,197.073,0.997526,-1,-1,-1
848,-1,453.884,204.597,50.917,92.671,0.981569,-1,-1,-1
848,-1,0,134.885,71.8257,253.244,0.953464,-1,-1,-1
848,-1,390.065,222.468,19.21,39.788,0.914751,-1,-1,-1
849,-1,301.429,176.336,51.252,160.202,0.997111,-1,-1,-1
849,-1,136.873,138.022,67.525,206.303,0.995969,-1,-1,-1
849,-1,2.51245,152.321,54.1946,245.898,0.982967,-1,-1,-1
849,-1,455.526,212.928,50.536,87.918,0.9355,-1,-1,-1
849,-1,390.196,225.544,21.664,27.907,0.904027,-1,-1,-1
850,-1,138.748,135.933,67.748,206.375,0.998105,-1,-1,-1
850,-1,289.297,164.118,58.463,169.39,0.997527,-1,-1,-1
850,-1,467.084,211.795,44.199,75.964,0.947911,-1,-1,-1
850,-1,390.174,230.033,21.459,29.239,0.892979,-1,-1,-1
850,-1,221.57,219.747,18.642,41.985,0.864441,-1,-1,-1
850,-1,2.22042,192.649,37.2032,199.341,0.633332,-1,-1,-1
850,-1,244.99,217.75,16.876,36.344,0.531601,-1,-1,-1
850,-1,255.912,216.032,15.939,36.963,0.504758,-1,-1,-1
851,-1,135.744,134.153,69.408,208.634,0.997988,-1,-1,-1
851,-1,286.615,171.841,52.417,173.425,0.996431,-1,-1,-1
851,-1,477.722,210.189,39.575,77.37,0.976693,-1,-1,-1
851,-1,216.095,219.006,27.419,42.958,0.962395,-1,-1,-1
851,-1,392.4,219.232,17.881,41.487,0.930935,-1,-1,-1
851,-1,233.042,214.214,26.26,45.744,0.818235,-1,-1,-1
851,-1,248.485,219.257,14.819,34.747,0.53034,-1,-1,-1
852,-1,273.773,168.905,64.406,170.889,0.997491,-1,-1,-1
852,-1,129.859,133.748,71.366,212.524,0.99529,-1,-1,-1
852,-1,467.844,210.023,52.722,93.792,0.981006,-1,-1,-1
852,-1,391.399,219.288,17.402,39.447,0.940303,-1,-1,-1
852,-1,218.625,207.282,21.829,44.72,0.90544,-1,-1,-1
852,-1,241.424,210.856,24.33,50.258,0.814563,-1,-1,-1
853,-1,268.612,168.639,61.158,174.727,0.99774,-1,-1,-1
853,-1,117.192,125.022,77.332,227.832,0.997359,-1,-1,-1
853,-1,481.753,196.774,42.616,100.514,0.968597,-1,-1,-1
853,-1,218.651,211.322,24.862,43.693,0.920326,-1,-1,-1
853,-1,390.722,220.433,19.667,40.444,0.880588,-1,-1,-1
853,-1,234.734,214.121,23.677,32.514,0.794984,-1,-1,-1
854,-1,125.039,120.975,73.817,229.587,0.997836,-1,-1,-1
854,-1,265.162,163.26,52.593,168.205,0.996201,-1,-1,-1
854,-1,391.176,219.765,22.606,46.652,0.94728,-1,-1,-1
854,-1,495.01,201.793,35.343,76.457,0.939558,-1,-1,-1
854,-1,215.844,217.665,28.452,28.61,0.906599,-1,-1,-1
854,-1,238.015,211.817,24.266,41.471,0.77773,-1,-1,-1
855,-1,113.377,115.711,81.635,227.992,0.995488,-1,-1,-1
855,-1,261.039,168.583,50.784,172.772,0.992622,-1,-1,-1
855,-1,493.102,186.676,41.874,116.589,0.987229,-1,-1,-1
855,-1,389.747,213.303,17.88,52.531,0.940146,-1,-1,-1
855,-1,232.972,214.14,23.299,35.967,0.770741,-1,-1,-1
855,-1,223.077,215.021,19.706,37.512,0.732576,-1,-1,-1
856,-1,249.361,178.057,46.355,165.068,0.996307,-1,-1,-1
856,-1,118.268,99.534,76.68,259.115,0.994444,-1,-1,-1
856,-1,495.85,204.511,38.61,90.627,0.985264,-1,-1,-1
856,-1,391.365,222.107,19.237,47.699,0.912208,-1,-1,-1
856,-1,215.72,213.367,21.577,43.239,0.864981,-1,-1,-1
857,-1,105.486,100.164,83.749,245.419,0.994143,-1,-1,-1
857,-1,225.268,165.348,77.378,177.186,0.990149,-1,-1,-1
857,-1,503.464,210.086,40.74,76.879,0.984557,-1,-1,-1
857,-1,214.227,209.957,18.228,51.574,0.808709,-1,-1,-1
857,-1,382.254,212.07,28.511,48.407,0.565353,-1,-1,-1
857,-1,330.402,218.053,16.796,45.479,0.509295,-1,-1,-1
858,-1,99.8229,104.213,79.6411,242.464,0.998312,-1,-1,-1
858,-1,214.161,181.969,72.763,154.349,0.996914,-1,-1,-1
858,-1,500.107,195.901,52.287,114.852,0.978296,-1,-1,-1
858,-1,380.478,220.391,24.913,43.641,0.901012,-1,-1,-1
859,-1,214.821,161.389,61.287,176.453,0.997349,-1,-1,-1
859,-1,96.9585,96.621,81.9685,255.685,0.994535,-1,-1,-1
859,-1,514.772,199.624,39.356,80.136,0.993574,-1,-1,-1
859,-1,385.279,217.428,23.13,46.51,0.92735,-1,-1,-1
859,-1,278.89,213.564,15.264,47.707,0.677559,-1,-1,-1
860,-1,88.378,100.925,88.932,247.769,0.997636,-1,-1,-1
860,-1,203.816,161.158,55.059,191.648,0.996574,-1,-1,-1
860,-1,520.434,187.259,38.362,98.167,0.984598,-1,-1,-1
860,-1,386.493,215.762,19.532,50.55,0.949626,-1,-1,-1
861,-1,75.0616,69.8188,95.0404,288.118,0.998073,-1,-1,-1
861,-1,195.864,144.846,55.324,201.149,0.99645,-1,-1,-1
861,-1,525.816,192.472,41.919,119.595,0.995637,-1,-1,-1
861,-1,386.571,216.167,24.657,43.978,0.91947,-1,-1,-1
861,-1,257.484,213.695,14.694,44.575,0.683238,-1,-1,-1
861,-1,322.178,215.432,15.844,50.499,0.635456,-1,-1,-1
862,-1,70.5873,90.9887,95.8147,258.195,0.998853,-1,-1,-1
862,-1,531.329,191.641,37.978,124.614,0.993979,-1,-1,-1
862,-1,195.746,158.52,45.543,183.122,0.982298,-1,-1,-1
862,-1,388.825,224.667,23.654,39.6,0.972423,-1,-1,-1
862,-1,256.274,219.232,16.072,35.437,0.838342,-1,-1,-1
863,-1,65.215,79.3585,103.734,277.964,0.998146,-1,-1,-1
863,-1,532.552,202.701,48.068,112.051,0.996233,-1,-1,-1
863,-1,177.295,163.801,62.199,173.148,0.989844,-1,-1,-1
863,-1,385.976,218.344,30.894,51.68,0.974225,-1,-1,-1
863,-1,254.974,223.657,14.636,34.188,0.713188,-1,-1,-1
863,-1,247.91,216.743,14.052,35.339,0.683213,-1,-1,-1
863,-1,272.974,217.205,13.024,38.372,0.57757,-1,-1,-1
864,-1,170.513,154.394,58.123,191.02,0.998753,-1,-1,-1
864,-1,54.6288,72.2186,105.353,296.76,0.996171,-1,-1,-1
864,-1,550.161,194.947,47.184,122.426,0.995466,-1,-1,-1
864,-1,386.846,220.486,26.107,55.407,0.971262,-1,-1,-1
864,-1,254.158,215.839,15.245,35.2,0.639613,-1,-1,-1
864,-1,307.599,222.764,13.838,35.101,0.555853,-1,-1,-1
865,-1,41.9191,61.686,115.381,313.574,0.998802,-1,-1,-1
865,-1,164.678,163.517,53.536,174.218,0.997868,-1,-1,-1
865,-1,553.998,195.737,52.17,116.682,0.995805,-1,-1,-1
865,-1,382.963,219.023,35.146,46.27,0.965966,-1,-1,-1
865,-1,266.331,221.924,13.496,34.926,0.638831,-1,-1,-1
866,-1,35.8559,58.0545,107.806,319.237,0.997832,-1,-1,-1
866,-1,558.462,189.105,60.374,119.821,0.995952,-1,-1,-1
866,-1,389.618,221.019,21.627,44.031,0.953051,-1,-1,-1
866,-1,159.486,163.863,52.409,175.561,0.947998,-1,-1,-1
866,-1,264.285,221.997,14.051,35.056,0.846568,-1,-1,-1
866,-1,211.488,208.893,24.742,51.074,0.825298,-1,-1,-1
866,-1,304.002,219.191,13.661,39.438,0.820512,-1,-1,-1
867,-1,16.7527,70.3125,133.724,291.142,0.997811,-1,-1,-1
867,-1,573.776,184.777,43.796,128.715,0.98608,-1,-1,-1
867,-1,148.327,152.46,52.321,192.575,0.942369,-1,-1,-1
867,-1,392.357,214.925,21.409,54.932,0.940656,-1,-1,-1
867,-1,265.794,221.114,15.814,37.405,0.874478,-1,-1,-1
867,-1,207.034,211.729,23.604,44.399,0.851942,-1,-1,-1
867,-1,322.678,217.772,17.269,37.957,0.64314,-1,-1,-1
867,-1,222.721,206.671,14.008,38.329,0.512823,-1,-1,-1
868,-1,8.5822,52.2394,135.716,327.565,0.998776,-1,-1,-1
868,-1,141.166,160.932,44.598,185.99,0.99381,-1,-1,-1
868,-1,574.932,167.418,59.649,157.631,0.990684,-1,-1,-1
868,-1,390.699,217.872,24.169,55.825,0.934034,-1,-1,-1
868,-1,223.114,220.435,19.356,35.857,0.914104,-1,-1,-1
868,-1,302.2,217.392,15.214,41.048,0.832266,-1,-1,-1
868,-1,211.157,206.955,20.436,44.21,0.770239,-1,-1,-1
869,-1,8.20856,53.3768,124.807,333.208,0.997379,-1,-1,-1
869,-1,122.298,157.551,60.508,184.155,0.994667,-1,-1,-1
869,-1,567.64,174.124,64.871,140.596,0.969805,-1,-1,-1
869,-1,217.555,214.023,20.3,37.287,0.95159,-1,-1,-1
869,-1,393.637,216.126,24.039,54.926,0.938975,-1,-1,-1
869,-1,206.19,216.759,19.853,45.159,0.659065,-1,-1,-1
869,-1,267.13,213.713,14.516,46.094,0.636878,-1,-1,-1
870,-1,4.09649,48.3857,127.027,360.598,0.997929,-1,-1,-1
870,-1,116.534,163.718,59.518,181.702,0.99637,-1,-1,-1
870,-1,216.246,220.262,22.469,34.906,0.941987,-1,-1,-1
870,-1,392.883,215.033,23.165,50.666,0.795535,-1,-1,-1
870,-1,267.198,213.048,16.335,49.282,0.792138,-1,-1,-1
870,-1,586.441,163.139,44.679,131.895,0.702977,-1,-1,-1
871,-1,1.15866,42.7091,127.611,370.859,0.998361,-1,-1,-1
871,-1,97.8906,173.989,67.8894,165.946,0.994165,-1,-1,-1
871,-1,392.07,215.716,24.54,59.885,0.967071,-1,-1,-1
871,-1,216.433,213.579,18.976,39.439,0.884831,-1,-1,-1
871,-1,263.361,216.927,14.185,41.739,0.602161,-1,-1,-1
872,-1,0,24.8021,117.021,410.564,0.997171,-1,-1,-1
872,-1,81.4812,165.579,70.1548,175.827,0.996597,-1,-1,-1
872,-1,388.374,210.169,33.725,59.573,0.942401,-1,-1,-1
872,-1,219.732,216.96,20.084,39.064,0.936272,-1,-1,-1
872,-1,290.997,219.939,19.699,39.486,0.855726,-1,-1,-1
872,-1,261.553,218.139,14.677,38.471,0.834527,-1,-1,-1
872,-1,203.643,212.669,16.586,46.974,0.700569,-1,-1,-1
872,-1,303.503,217.507,17.117,47.704,0.573292,-1,-1,-1
872,-1,269.208,213.797,15.726,38.781,0.515738,-1,-1,-1
872,-1,320.49,216.486,17.038,48.186,0.50158,-1,-1,-1
873,-1,0,16.1168,98.2062,431.009,0.996329,-1,-1,-1
873,-1,69.3397,130.12,60.2623,207.238,0.957825,-1,-1,-1
873,-1,216.719,211.726,18.712,40.319,0.881556,-1,-1,-1
873,-1,208.475,212.14,15.431,40.575,0.825504,-1,-1,-1
873,-1,260.311,210.01,14.005,43.975,0.802325,-1,-1,-1
873,-1,292.326,212.314,26.98,41.563,0.792213,-1,-1,-1
873,-1,390.957,213.575,31.77,56.45,0.738507,-1,-1,-1
873,-1,315.188,214.838,18.714,48.834,0.679995,-1,-1,-1
874,-1,0,31.2517,107.337,335.056,0.995807,-1,-1,-1
874,-1,258.106,205.76,17.002,49.975,0.893815,-1,-1,-1
874,-1,290.186,211.137,29.76,46.966,0.865411,-1,-1,-1
874,-1,216.44,211.436,19.397,42.093,0.857167,-1,-1,-1
874,-1,396.357,214.561,29.225,57.428,0.853378,-1,-1,-1
874,-1,307.843,217.522,41.062,38.952,0.833304,-1,-1,-1
874,-1,205.832,213.763,17.556,43.367,0.781583,-1,-1,-1
874,-1,282.564,212.552,18.421,51.329,0.533509,-1,-1,-1
875,-1,42.3698,150.806,60.7412,199.243,0.988961,-1,-1,-1
875,-1,393.373,213.507,25.621,55.222,0.954475,-1,-1,-1
875,-1,260.014,198.647,17.042,55.472,0.948208,-1,-1,-1
875,-1,303.977,209.84,19.753,54.539,0.833587,-1,-1,-1
875,-1,216.019,215.424,16.674,39.58,0.833095,-1,-1,-1
875,-1,326.897,214.929,22.263,47.201,0.764323,-1,-1,-1
875,-1,318.235,210.999,17.125,51.299,0.752791,-1,-1,-1
875,-1,240.241,200.349,25.951,54.431,0.663913,-1,-1,-1
875,-1,200.937,206.003,17,55.338,0.546609,-1,-1,-1
876,-1,37.7157,151.836,76.4783,200.205,0.996615,-1,-1,-1
876,-1,398.586,211.955,24.05,52.117,0.913469,-1,-1,-1
876,-1,210.337,217.302,15.515,35.874,0.861539,-1,-1,-1
876,-1,296.311,211.589,16.539,51.897,0.859831,-1,-1,-1
876,-1,258.528,210.724,16.349,49.954,0.825968,-1,-1,-1
876,-1,312.74,214.184,22.847,49.937,0.733726,-1,-1,-1
876,-1,223.534,220.592,15.211,39.102,0.540309,-1,-1,-1
877,-1,22.7646,152.144,78.3274,203.342,0.996207,-1,-1,-1
877,-1,402.504,203.802,26.764,64.059,0.981246,-1,-1,-1
877,-1,303.962,216.853,17.911,47.585,0.916054,-1,-1,-1
877,-1,261.964,208.418,15.143,56.056,0.887524,-1,-1,-1
877,-1,320.627,221.78,17.829,49.534,0.881927,-1,-1,-1
877,-1,150.06,202.062,22.909,70.487,0.660132,-1,-1,-1
877,-1,209.845,214.027,19.259,46.211,0.656484,-1,-1,-1
877,-1,333.021,215.115,22.668,52.67,0.566899,-1,-1,-1
877,-1,281.806,219.05,27.061,48.506,0.508652,-1,-1,-1
878,-1,17.7826,156.249,61.0043,197.772,0.997815,-1,-1,-1
878,-1,85.4144,191.625,32.9416,93.769,0.976091,-1,-1,-1
878,-1,403.849,219.143,35.077,59.18,0.950984,-1,-1,-1
878,-1,253.019,216.542,23.105,53.128,0.928318,-1,-1,-1
878,-1,299.428,219.197,14.216,47.202,0.906332,-1,-1,-1
878,-1,327.485,220.875,17.697,49.176,0.826423,-1,-1,-1
878,-1,317.612,212.95,15.035,53.83,0.652569,-1,-1,-1
878,-1,213.566,221.702,15.35,42.285,0.548718,-1,-1,-1
879,-1,9.35831,159.242,56.7657,195.962,0.998408,-1,-1,-1
879,-1,80.0359,194.167,33.8151,95.942,0.97115,-1,-1,-1
879,-1,262.336,207.816,16.326,55.62,0.951248,-1,-1,-1
879,-1,405.449,213.986,23.862,57.659,0.951089,-1,-1,-1
879,-1,303.464,218.228,18.509,48.353,0.916103,-1,-1,-1
879,-1,314.303,221.953,18.484,42.358,0.874877,-1,-1,-1
879,-1,327.696,222.858,17.596,48.132,0.753391,-1,-1,-1
879,-1,217.625,215.561,16.708,47.099,0.518916,-1,-1,-1
880,-1,3.35487,166.872,42.5233,186.09,0.992947,-1,-1,-1
880,-1,87.2012,195.81,36.4588,106.575,0.986865,-1,-1,-1
880,-1,254.184,209.403,29.126,68.285,0.949208,-1,-1,-1
880,-1,302.214,222.918,16.039,42.554,0.931224,-1,-1,-1
880,-1,404.328,220.222,26.938,62.101,0.91817,-1,-1,-1
880,-1,311.834,224.45,22.949,49.373,0.83067,-1,-1,-1
880,-1,6.70109,166.199,33.9248,63.456,0.651302,-1,-1,-1
880,-1,218.269,215.298,16.492,52.005,0.639794,-1,-1,-1
881,-1,85.2395,190.711,38.7545,116.285,0.989076,-1,-1,-1
881,-1,260.545,216.073,18.079,60.003,0.949979,-1,-1,-1
881,-1,301.18,220.694,21.88,55.452,0.923704,-1,-1,-1
881,-1,404.513,218.789,32.075,61.461,0.901227,-1,-1,-1
881,-1,211.242,223.238,22.966,45.705,0.88786,-1,-1,-1
881,-1,316.894,226.954,15.069,40.043,0.716695,-1,-1,-1
881,-1,331.098,225.872,13.679,43.629,0.596927,-1,-1,-1
881,-1,336.879,224.722,21.224,40.63,0.527098,-1,-1,-1
882,-1,406.094,218.822,26.312,63.101,0.993937,-1,-1,-1
882,-1,88.0506,185.013,37.0514,119.47,0.98393,-1,-1,-1
882,-1,255.791,218.525,25.377,55.947,0.946587,-1,-1,-1
882,-1,304.834,227.04,17.368,44.522,0.921638,-1,-1,-1
882,-1,212.281,221.079,16.305,43.782,0.770931,-1,-1,-1
882,-1,316.996,226.759,14.375,42.388,0.764381,-1,-1,-1
882,-1,324.632,232.195,23.013,41.923,0.705545,-1,-1,-1
882,-1,354.329,234.356,14.363,36.901,0.513548,-1,-1,-1
882,-1,270.797,212.982,23.769,64.204,0.511192,-1,-1,-1
883,-1,407.19,212.683,28.08,67.156,0.993641,-1,-1,-1
883,-1,99.4502,195.079,31.7728,106.929,0.983194,-1,-1,-1
883,-1,300.4,225.604,16.679,46.74,0.955228,-1,-1,-1
883,-1,259.967,215.662,16.107,59.504,0.912611,-1,-1,-1
883,-1,329.847,229.871,13.869,47.079,0.759804,-1,-1,-1
883,-1,311.925,221.075,21.841,56.826,0.726318,-1,-1,-1
883,-1,285.474,210.888,18.857,64.666,0.634651,-1,-1,-1
883,-1,212.844,222.139,16.349,41.386,0.6124,-1,-1,-1
884,-1,93.6169,187.035,53.0841,120.769,0.993178,-1,-1,-1
884,-1,409.156,213.798,26.482,62.431,0.992473,-1,-1,-1
884,-1,293.43,219.392,25.075,54.685,0.944749,-1,-1,-1
884,-1,260.054,220.743,16.37,58.286,0.943735,-1,-1,-1
884,-1,202.64,214.957,31.409,50.991,0.9435,-1,-1,-1
884,-1,309.615,223.325,24.647,51.676,0.570687,-1,-1,-1
884,-1,333.436,236.681,13.123,38.965,0.540638,-1,-1,-1
885,-1,98.4372,190.65,52.2578,108.774,0.993204,-1,-1,-1
885,-1,409.356,216.832,27.053,60.976,0.990393,-1,-1,-1
885,-1,208.732,215.357,27.923,55.035,0.974136,-1,-1,-1
885,-1,256.049,214.855,26.346,65.284,0.949932,-1,-1,-1
885,-1,296.53,224.51,15.663,47.974,0.914479,-1,-1,-1
885,-1,332.317,227.444,14.408,45.605,0.888568,-1,-1,-1
885,-1,305.54,230.568,14.477,45.518,0.788249,-1,-1,-1
885,-1,321.076,230.495,15.543,45.204,0.764216,-1,-1,-1
885,-1,344.514,225.937,14.297,47.896,0.575783,-1,-1,-1
886,-1,102.916,178.859,50.516,132.725,0.990563,-1,-1,-1
886,-1,410.177,213.873,32.812,75.063,0.986194,-1,-1,-1
886,-1,254.506,204.456,24.948,71.96,0.94926,-1,-1,-1
886,-1,295.446,223.806,16.242,51.17,0.826654,-1,-1,-1
886,-1,323.094,228.776,14.341,43.087,0.823465,-1,-1,-1
886,-1,354.739,231.177,16.795,40.778,0.818525,-1,-1,-1
886,-1,331.587,232.665,13.568,38.478,0.794828,-1,-1,-1
886,-1,311.375,225.374,16.696,46.392,0.75885,-1,-1,-1
886,-1,345.397,231.173,14.524,39.131,0.748282,-1,-1,-1
886,-1,211.113,218.447,17.876,45.963,0.747612,-1,-1,-1
887,-1,109.697,187.57,40.39,112.487,0.994109,-1,-1,-1
887,-1,410.143,209.812,34.233,76.951,0.988262,-1,-1,-1
887,-1,255.831,209.215,23.406,69.409,0.958861,-1,-1,-1
887,-1,212.134,219.881,23.069,48.894,0.84336,-1,-1,-1
887,-1,310.252,231.613,36.053,41.537,0.835494,-1,-1,-1
887,-1,355.052,227.261,17.45,42.098,0.779101,-1,-1,-1
887,-1,344.992,225.885,14.023,42.649,0.679603,-1,-1,-1
887,-1,295.648,219.838,17.16,56.015,0.581205,-1,-1,-1
888,-1,411.231,205.414,29.325,80.687,0.99279,-1,-1,-1
888,-1,107.668,184.568,38.435,119.628,0.992568,-1,-1,-1
888,-1,249.035,213.195,28.494,60.593,0.955108,-1,-1,-1
888,-1,204.871,209.796,28.064,56.157,0.913322,-1,-1,-1
888,-1,354.9,227.232,18.886,45.544,0.781127,-1,-1,-1
888,-1,321.303,221.769,15.303,46.984,0.77572,-1,-1,-1
888,-1,330.914,224.378,14.211,42.98,0.678138,-1,-1,-1
888,-1,308.324,217.411,18.827,54.772,0.660387,-1,-1,-1
888,-1,288.707,212.085,25.009,59.875,0.572724,-1,-1,-1
889,-1,111.831,177.786,46.242,128.822,0.994817,-1,-1,-1
889,-1,415.172,203.902,28.711,84.121,0.991863,-1,-1,-1
889,-1,246.64,212.447,28.967,57.763,0.926544,-1,-1,-1
889,-1,287.82,217.083,29.436,57.996,0.920505,-1,-1,-1
889,-1,326.274,220.797,19.496,47.759,0.881921,-1,-1,-1
889,-1,306.194,224.63,16.923,45.44,0.859114,-1,-1,-1
889,-1,480.258,217.33,19.892,23.448,0.849068,-1,-1,-1
889,-1,205.723,215.916,21.827,50.793,0.821085,-1,-1,-1
889,-1,359.871,221.626,17.474,47.109,0.719304,-1,-1,-1
889,-1,338.862,223.992,17.924,46.617,0.640317,-1,-1,-1
890,-1,413.607,203.602,34.118,87.825,0.992338,-1,-1,-1
890,-1,113.631,168.682,49.316,141.889,0.990678,-1,-1,-1
890,-1,248.91,212.944,28.174,60.503,0.925964,-1,-1,-1
890,-1,297.029,213.221,22.384,60.534,0.925488,-1,-1,-1
890,-1,278.973,211.434,25.557,60.986,0.892684,-1,-1,-1
890,-1,479.846,221.815,26.68,28.826,0.825385,-1,-1,-1
890,-1,202.014,215.936,23.031,49.387,0.820892,-1,-1,-1
890,-1,325.254,217.062,21.858,50.057,0.727112,-1,-1,-1
890,-1,317.411,211.219,17.214,62.056,0.577665,-1,-1,-1
891,-1,115.867,173.114,47.242,145.379,0.996071,-1,-1,-1
891,-1,417.135,198.195,33.208,94.369,0.988355,-1,-1,-1
891,-1,29.572,175.671,32.1204,124.398,0.98544,-1,-1,-1
891,-1,248.027,206.31,28.482,70.266,0.958792,-1,-1,-1
891,-1,297.727,215.245,18.882,53.037,0.906325,-1,-1,-1
891,-1,334.389,221.053,16.662,48.96,0.897794,-1,-1,-1
891,-1,279.908,209.648,25.487,65.463,0.782879,-1,-1,-1
891,-1,200.486,214.31,14.808,38.674,0.768481,-1,-1,-1
891,-1,325.17,211.838,17.482,55.274,0.748089,-1,-1,-1
891,-1,208.825,220.926,19.291,45.091,0.696553,-1,-1,-1
891,-1,482.334,219.519,22.788,25.822,0.670081,-1,-1,-1
891,-1,366.901,222.975,15.147,47.891,0.644619,-1,-1,-1
891,-1,345.317,223.303,19.541,45.051,0.572706,-1,-1,-1
892,-1,116.468,173.853,46.038,134.614,0.996984,-1,-1,-1
892,-1,417.929,198.322,31.965,86.566,0.989648,-1,-1,-1
892,-1,19.7282,177.391,44.7758,124.927,0.986268,-1,-1,-1
892,-1,295.231,215.311,18.605,53.23,0.944999,-1,-1,-1
892,-1,335.188,220.186,18.032,48.195,0.942145,-1,-1,-1
892,-1,249.459,211.219,29.351,59.843,0.939987,-1,-1,-1
892,-1,200.552,217.891,16.39,36.821,0.912143,-1,-1,-1
892,-1,208.167,211.935,17.916,52.697,0.774731,-1,-1,-1
892,-1,323.114,212.759,17.008,54.55,0.684631,-1,-1,-1
892,-1,368.023,223.977,14.11,44.826,0.595248,-1,-1,-1
892,-1,346.139,220.554,21.09,36.287,0.550484,-1,-1,-1
893,-1,118.415,174.219,48.639,132.931,0.995802,-1,-1,-1
893,-1,425.376,206.341,34.897,80.801,0.992126,-1,-1,-1
893,-1,27.6275,167.557,44.8562,131.71,0.989561,-1,-1,-1
893,-1,244.81,205.693,30.466,60.175,0.972428,-1,-1,-1
893,-1,333.598,215.058,17.052,50.687,0.955212,-1,-1,-1
893,-1,298.14,211.732,22.867,59.906,0.921328,-1,-1,-1
893,-1,319.577,211.795,22.614,57.169,0.906577,-1,-1,-1
893,-1,201.952,216.815,18.304,42.435,0.892854,-1,-1,-1
893,-1,212.699,213.472,16.503,43.865,0.652857,-1,-1,-1
893,-1,366.373,218.893,15.77,49.827,0.603505,-1,-1,-1
893,-1,283.257,204.376,20.73,68.37,0.50114,-1,-1,-1
894,-1,123.33,172.036,51.59,133.811,0.993981,-1,-1,-1
894,-1,428.104,201.736,27.959,83.148,0.992729,-1,-1,-1
894,-1,332.649,213.279,16.67,54.44,0.947343,-1,-1,-1
894,-1,30.7636,171.901,41.4811,127.479,0.9358,-1,-1,-1
894,-1,244.244,192.094,30.862,75.788,0.934749,-1,-1,-1
894,-1,300.5,214.422,15.664,57.217,0.921744,-1,-1,-1
894,-1,199.592,219.284,18.798,45.517,0.871171,-1,-1,-1
894,-1,210.591,221.41,13.895,35.391,0.643316,-1,-1,-1
894,-1,369.493,224.266,17.364,46.265,0.58965,-1,-1,-1
895,-1,128.704,171.811,42.243,132.005,0.995641,-1,-1,-1
895,-1,421.592,194.065,40.118,92.815,0.992366,-1,-1,-1
895,-1,31.5592,164.939,43.6866,130.741,0.989422,-1,-1,-1
895,-1,331.397,208.722,19.004,54.374,0.930429,-1,-1,-1
895,-1,209.93,208.274,22.49,46.482,0.895929,-1,-1,-1
895,-1,248.826,199.762,29.401,70.691,0.869676,-1,-1,-1
895,-1,301.219,204.708,18.104,70.854,0.806022,-1,-1,-1
896,-1,124.951,171.967,61.485,131.681,0.99571,-1,-1,-1
896,-1,34.0131,176.488,46.7086,111.377,0.995055,-1,-1,-1
896,-1,424.616,187.708,31.984,104.885,0.992043,-1,-1,-1
896,-1,328.211,205.381,23.22,59.401,0.965366,-1,-1,-1
896,-1,206.974,209.88,24.575,46.232,0.927573,-1,-1,-1
896,-1,247.887,207.043,26.962,60.232,0.924371,-1,-1,-1
896,-1,297.348,204.327,21.199,60.307,0.565608,-1,-1,-1
897,-1,26.9755,174.823,50.3504,123.058,0.996098,-1,-1,-1
897,-1,121.35,175.846,74.006,120.115,0.995588,-1,-1,-1
897,-1,425.938,186.247,37.469,106.272,0.994832,-1,-1,-1
897,-1,244.935,206.95,37.617,68.471,0.972391,-1,-1,-1
897,-1,333.845,216.638,15.868,55.157,0.935757,-1,-1,-1
897,-1,300.982,207.425,15.75,62.18,0.920575,-1,-1,-1
897,-1,208.752,211.479,16.48,43.068,0.918572,-1,-1,-1
897,-1,320.196,209.357,22.136,59.462,0.755794,-1,-1,-1
898,-1,130.581,183.808,65.34,116.883,0.998537,-1,-1,-1
898,-1,25.9307,181.622,51.5732,121.436,0.993315,-1,-1,-1
898,-1,421.786,183.507,42.859,117.028,0.99316,-1,-1,-1
898,-1,250.173,204.816,36.37,72.28,0.969505,-1,-1,-1
898,-1,206.376,216.015,29.134,50.916,0.938106,-1,-1,-1
898,-1,327.764,212.386,23.476,59.685,0.938013,-1,-1,-1
898,-1,303.255,210.31,15.733,62.998,0.856122,-1,-1,-1
898,-1,371.652,220.132,17.878,53.39,0.612076,-1,-1,-1
898,-1,317.045,208.988,17.351,62.039,0.543942,-1,-1,-1
899,-1,135.095,175.631,55.243,125.678,0.996753,-1,-1,-1
899,-1,31.4281,172.805,49.335,129.428,0.994235,-1,-1,-1
899,-1,430.123,194.157,43.126,101.119,0.990892,-1,-1,-1
899,-1,248.398,206.12,29.421,70.757,0.963572,-1,-1,-1
899,-1,322.651,213.382,39.126,67.976,0.958868,-1,-1,-1
899,-1,202.72,214.527,26.176,51.525,0.956581,-1,-1,-1
899,-1,306.636,220.767,16.373,59.28,0.901589,-1,-1,-1
900,-1,44.037,176.026,51.815,135.002,0.99728,-1,-1,-1
900,-1,145.335,173.925,44.552,137.932,0.996854,-1,-1,-1
900,-1,428.773,189.223,40.761,114.528,0.990571,-1,-1,-1
900,-1,323.751,214.739,39.394,69.481,0.957898,-1,-1,-1
900,-1,248.912,207.455,20.125,68.522,0.915611,-1,-1,-1
900,-1,212.027,211.574,17.692,52.023,0.857574,-1,-1,-1
900,-1,297.678,205.812,26.059,75.749,0.808587,-1,-1,-1
900,-1,370.347,231.341,16.991,37.706,0.70061,-1,-1,-1
900,-1,349.24,210.622,16.957,60.713,0.506344,-1,-1,-1
901,-1,43.781,170.337,46.5894,143.208,0.996611,-1,-1,-1
901,-1,426.851,191.642,48.513,115.388,0.993341,-1,-1,-1
901,-1,151.402,165.193,44.318,142.701,0.987238,-1,-1,-1
901,-1,336.207,219.723,21.112,57.52,0.971132,-1,-1,-1
901,-1,248.337,209.388,27.451,74.229,0.892332,-1,-1,-1
901,-1,325.805,222.23,18.899,60.159,0.835867,-1,-1,-1
901,-1,207.68,215.144,19.18,55.554,0.822951,-1,-1,-1
901,-1,308.86,224.203,16.025,62.38,0.691565,-1,-1,-1
901,-1,120.96,195.345,19.996,83.679,0.60245,-1,-1,-1
901,-1,372.965,219.681,18.869,57.368,0.564731,-1,-1,-1
902,-1,49.2903,170.648,52.3357,149.362,0.995581,-1,-1,-1
902,-1,154.874,177.959,39.389,131.628,0.993967,-1,-1,-1
902,-1,436.738,193.991,42.561,105.763,0.988139,-1,-1,-1
902,-1,249.851,206.956,25.45,83.801,0.977597,-1,-1,-1
902,-1,335.45,214.831,22.626,63.583,0.974784,-1,-1,-1
902,-1,318.841,214.534,26.108,69.312,0.760111,-1,-1,-1
902,-1,302.637,215.06,18.977,69.303,0.740843,-1,-1,-1
902,-1,120.169,220.137,17.296,51.862,0.675923,-1,-1,-1
903,-1,42.6411,169.021,63.8849,157.606,0.997722,-1,-1,-1
903,-1,440.178,192.06,38.403,112.428,0.996205,-1,-1,-1
903,-1,158.334,177.004,42.181,124.847,0.99007,-1,-1,-1
903,-1,330.295,207.727,34.258,71.908,0.988131,-1,-1,-1
903,-1,244.517,203.048,29.982,94.937,0.981539,-1,-1,-1
903,-1,316.333,207.747,26.551,70.126,0.570664,-1,-1,-1
904,-1,46.0973,168.503,66.5407,154.144,0.998699,-1,-1,-1
904,-1,432.626,196.896,51.161,120.201,0.996142,-1,-1,-1
904,-1,240.199,208.986,30.681,81.652,0.981823,-1,-1,-1
904,-1,336.723,209.308,24.452,74.184,0.978528,-1,-1,-1
904,-1,156.733,181.092,41.73,123.857,0.97715,-1,-1,-1
904,-1,109.732,211.005,19.765,56.266,0.82539,-1,-1,-1
904,-1,325.693,211.489,20.371,73.79,0.731097,-1,-1,-1
904,-1,305.152,205.79,20.094,79.419,0.679526,-1,-1,-1
905,-1,40.799,174.452,80.425,146.925,0.997552,-1,-1,-1
905,-1,442.33,186.805,45.771,124.929,0.996635,-1,-1,-1
905,-1,334.206,209.727,26.184,75.239,0.986897,-1,-1,-1
905,-1,244.39,212.466,29.263,80.527,0.979605,-1,-1,-1
905,-1,159.113,180.534,45.175,130.416,0.975854,-1,-1,-1
905,-1,303.34,215.967,22.199,65.667,0.915891,-1,-1,-1
905,-1,111.238,210.334,17.906,56.68,0.833242,-1,-1,-1
905,-1,378.986,223.709,17.948,54.876,0.633172,-1,-1,-1
905,-1,320.655,219.741,15.013,62.394,0.528578,-1,-1,-1
906,-1,43.8303,176.325,68.5657,146.27,0.996964,-1,-1,-1
906,-1,440.592,182.753,53.907,136.421,0.994054,-1,-1,-1
906,-1,158.219,184.008,49.832,127.796,0.993196,-1,-1,-1
906,-1,246.451,204.575,30.62,90.906,0.982091,-1,-1,-1
906,-1,337.924,212.912,26.128,70.952,0.968103,-1,-1,-1
906,-1,303.016,217.061,20.346,69.15,0.897208,-1,-1,-1
906,-1,312.81,211.082,23.773,68.761,0.779518,-1,-1,-1
906,-1,111.167,213.222,19.028,59.999,0.580692,-1,-1,-1
906,-1,379.337,224.325,15.895,53.457,0.575037,-1,-1,-1
907,-1,41.001,173.687,78.581,131.336,0.997942,-1,-1,-1
907,-1,449.472,189.949,41.793,125.768,0.994091,-1,-1,-1
907,-1,162.2,169.987,47.531,122.75,0.99255,-1,-1,-1
907,-1,247.302,209.685,38.736,88.439,0.991027,-1,-1,-1
907,-1,335.426,202.843,31.415,91.929,0.975511,-1,-1,-1
908,-1,54.7331,166.372,59.5409,153.178,0.99746,-1,-1,-1
908,-1,162.3,176.836,51.382,133.948,0.994936,-1,-1,-1
908,-1,244.527,202.647,31.998,92.829,0.990673,-1,-1,-1
908,-1,452.797,182.851,54.067,142.991,0.983596,-1,-1,-1
908,-1,337.139,202.483,28.288,88.956,0.965163,-1,-1,-1
908,-1,306.566,210.135,18.421,77.75,0.728821,-1,-1,-1
908,-1,383.568,224.438,15.77,51.839,0.587804,-1,-1,-1
909,-1,63.8672,165.629,52.8778,146.455,0.99695,-1,-1,-1
909,-1,163.162,179.835,50.084,134.89,0.996247,-1,-1,-1
909,-1,451.09,190.444,55.526,136.317,0.994806,-1,-1,-1
909,-1,239.022,204.6,46.693,92.646,0.986213,-1,-1,-1
909,-1,332.09,205.3,36.939,84.132,0.949756,-1,-1,-1
909,-1,310.564,213.095,16.097,76.07,0.68184,-1,-1,-1
910,-1,60.9874,160.177,59.3316,160.211,0.996384,-1,-1,-1
910,-1,164.575,179.769,49.827,129.356,0.995933,-1,-1,-1
910,-1,453.776,176.577,60.71,154.401,0.99592,-1,-1,-1
910,-1,338.256,203.956,32.075,95.101,0.98773,-1,-1,-1
910,-1,242.786,198.121,36.957,96.217,0.942476,-1,-1,-1
910,-1,305.813,215.362,24.389,71.728,0.89871,-1,-1,-1
910,-1,566.108,215.757,42.217,52.709,0.586997,-1,-1,-1
910,-1,230.733,204.625,26.201,77.408,0.564879,-1,-1,-1
911,-1,58.4965,168.367,70.1495,148.494,0.997707,-1,-1,-1
911,-1,468.598,175.467,47.318,144.272,0.997131,-1,-1,-1
911,-1,161.095,180.446,50.178,135.236,0.996658,-1,-1,-1
911,-1,247.936,194.839,29.178,103.751,0.989477,-1,-1,-1
911,-1,336.404,211.567,33.976,78.024,0.987218,-1,-1,-1
911,-1,310.878,207.842,21.407,79.163,0.965671,-1,-1,-1
912,-1,163.732,180.776,48.878,133.123,0.997978,-1,-1,-1
912,-1,62.3502,156.23,65.6108,174.228,0.997768,-1,-1,-1
912,-1,472.533,175.67,47.891,155.023,0.995541,-1,-1,-1
912,-1,246.917,201.28,32.518,97.13,0.988637,-1,-1,-1
912,-1,340.389,207.836,28.124,82.032,0.981275,-1,-1,-1
912,-1,312.646,211.198,20.391,76.212,0.965206,-1,-1,-1
912,-1,386.756,226.167,15.718,58.326,0.800216,-1,-1,-1
913,-1,469.862,174.54,68.409,152.351,0.998015,-1,-1,-1
913,-1,70.9854,174.681,55.4216,148.382,0.993817,-1,-1,-1
913,-1,346.317,212.094,30.427,87.311,0.988282,-1,-1,-1
913,-1,247.877,199.623,31.036,99.366,0.987706,-1,-1,-1
913,-1,163.972,181.028,44.844,136.726,0.982623,-1,-1,-1
913,-1,307.824,206.619,25.176,88.708,0.962345,-1,-1,-1
913,-1,330.669,198.475,28.838,97.635,0.709474,-1,-1,-1
914,-1,477.176,163.584,62.668,166.081,0.995774,-1,-1,-1
914,-1,77.7765,173.473,46.1715,150.822,0.99117,-1,-1,-1
914,-1,239.429,182.4,42.961,125.421,0.990455,-1,-1,-1
914,-1,309.988,217.897,19.756,75.862,0.986801,-1,-1,-1
914,-1,345.897,211.361,28.116,86.935,0.983462,-1,-1,-1
914,-1,161.493,175.546,45.128,141.302,0.981649,-1,-1,-1
914,-1,325.644,207.831,20.82,96.869,0.559828,-1,-1,-1
914,-1,227.141,211.712,18.6,73.089,0.559608,-1,-1,-1
915,-1,475.913,182.692,85.397,151.687,0.998618,-1,-1,-1
915,-1,78.4236,171.127,51.1504,153.556,0.992296,-1,-1,-1
915,-1,169.328,177.344,42.342,135.171,0.992084,-1,-1,-1
915,-1,235.553,187.012,42.357,124.463,0.987128,-1,-1,-1
915,-1,348.668,210.627,32.593,84.749,0.986599,-1,-1,-1
915,-1,311.303,212.238,23.498,81.164,0.981513,-1,-1,-1
916,-1,496.202,166.524,69.321,182.43,0.998192,-1,-1,-1
916,-1,167.488,180.628,43.659,137.88,0.994134,-1,-1,-1
916,-1,234.757,188.393,42.306,120.728,0.990031,-1,-1,-1
916,-1,347.829,206.001,29.077,97.705,0.987462,-1,-1,-1
916,-1,306.11,210.865,27.089,81.257,0.95801,-1,-1,-1
916,-1,75.094,171.049,55.104,128.097,0.864086,-1,-1,-1
917,-1,489.575,167.49,95.32,177.205,0.998086,-1,-1,-1
917,-1,163.125,170.996,48.671,142.843,0.995486,-1,-1,-1
917,-1,74.5969,175.377,54.6001,146.765,0.995288,-1,-1,-1
917,-1,224.533,190.757,54.644,116.502,0.990374,-1,-1,-1
917,-1,340.431,204.987,48.139,96.674,0.989325,-1,-1,-1
917,-1,301.194,209.696,32.892,82.823,0.980018,-1,-1,-1
917,-1,322.181,216.046,24.513,71.691,0.600308,-1,-1,-1
918,-1,508.451,147.256,71.959,202.016,0.999223,-1,-1,-1
918,-1,77.2202,174.593,52.1418,149.032,0.996128,-1,-1,-1
918,-1,161.196,174.074,50.563,143.669,0.995778,-1,-1,-1
918,-1,227.089,185.457,54.744,127.705,0.99516,-1,-1,-1
918,-1,350.946,192.544,33.856,105.112,0.990236,-1,-1,-1
918,-1,299.642,201.259,34.168,91.662,0.973252,-1,-1,-1
918,-1,323.38,212.087,23.95,73.093,0.578517,-1,-1,-1
919,-1,527.069,147.3,60.818,208.076,0.998936,-1,-1,-1
919,-1,157.201,171.007,57.463,136.775,0.99699,-1,-1,-1
919,-1,236.37,181.053,33.394,137.606,0.995552,-1,-1,-1
919,-1,83.9735,172.168,46.0235,151.382,0.994016,-1,-1,-1
919,-1,346.759,197.701,37.139,103.062,0.989015,-1,-1,-1
919,-1,298.384,207.165,46.358,93.116,0.98792,-1,-1,-1
920,-1,234.504,173.269,39.073,147.142,0.996522,-1,-1,-1
920,-1,80.4598,164.539,48.4542,142.476,0.99614,-1,-1,-1
920,-1,528.097,151.898,74.215,169.64,0.995339,-1,-1,-1
920,-1,162.525,171.933,50.471,143.212,0.993885,-1,-1,-1
920,-1,343.173,197.917,50.668,106.097,0.991704,-1,-1,-1
920,-1,308.035,199.553,28.925,100.815,0.978787,-1,-1,-1
920,-1,292.332,214.497,28.841,71.91,0.555686,-1,-1,-1
921,-1,542.452,136.332,83.117,241.987,0.997343,-1,-1,-1
921,-1,82.2742,165.738,51.6298,148.985,0.995887,-1,-1,-1
921,-1,227.594,178.598,49.28,143.279,0.995525,-1,-1,-1
921,-1,354.653,196.242,25.472,98.05,0.987759,-1,-1,-1
921,-1,162.626,171.029,36.968,136.061,0.98504,-1,-1,-1
921,-1,297.67,204.488,49.293,89.875,0.982093,-1,-1,-1
922,-1,553.431,132.039,65.97,256.686,0.999099,-1,-1,-1
922,-1,232.293,162.687,35.676,156.925,0.997619,-1,-1,-1
922,-1,80.7791,167.931,60.3519,146.349,0.996996,-1,-1,-1
922,-1,362.078,199.194,29.383,93.141,0.99162,-1,-1,-1
922,-1,303.409,200.545,31.258,91.515,0.989608,-1,-1,-1
922,-1,161.956,174.821,43.812,138.688,0.964314,-1,-1,-1
923,-1,85.8382,170.255,54.8898,139.334,0.994907,-1,-1,-1
923,-1,578.771,109.472,57.434,290.854,0.993285,-1,-1,-1
923,-1,232.234,165.469,39.903,159.926,0.992519,-1,-1,-1
923,-1,161.717,169.253,45.182,147.062,0.99132,-1,-1,-1
923,-1,302.711,188.686,35.453,104.638,0.991218,-1,-1,-1
923,-1,362.228,193.464,30.011,102.291,0.989554,-1,-1,-1
923,-1,534.681,216.329,19.526,37.021,0.847814,-1,-1,-1
923,-1,42.019,207.667,24.5491,59.39,0.522113,-1,-1,-1
924,-1,81.7305,168.644,59.9445,151.62,0.996374,-1,-1,-1
924,-1,229.771,159.35,42.741,159.239,0.996356,-1,-1,-1
924,-1,308.428,196.355,33.898,100.658,0.990082,-1,-1,-1
924,-1,163.504,167.387,44.749,148.761,0.989663,-1,-1,-1
924,-1,361.088,190.734,32.19,102.851,0.987419,-1,-1,-1
924,-1,579.053,106.734,54.556,264.737,0.982438,-1,-1,-1
924,-1,533.381,219.529,20.219,34.013,0.677578,-1,-1,-1
924,-1,38.2751,161.289,31.2325,109.025,0.589347,-1,-1,-1
925,-1,214.551,160.151,58.574,176.256,0.996817,-1,-1,-1
925,-1,80.4751,161.583,63.0189,161.034,0.996358,-1,-1,-1
925,-1,364.073,191.463,38.174,109.539,0.990889,-1,-1,-1
925,-1,306.585,195.542,37.093,107.296,0.990136,-1,-1,-1
925,-1,156.889,169.339,52.26,151.435,0.989172,-1,-1,-1
925,-1,27.3159,148.718,36.5012,119.745,0.809607,-1,-1,-1
926,-1,214.56,161.498,54.196,178.256,0.998902,-1,-1,-1
926,-1,159.196,171.615,46.255,141.875,0.995019,-1,-1,-1
926,-1,307.981,191.406,37.292,114.797,0.993504,-1,-1,-1
926,-1,363.713,191.751,41.186,109.003,0.991425,-1,-1,-1
926,-1,91.3249,166.448,50.2241,151.162,0.991068,-1,-1,-1
926,-1,31.1256,134.193,37.1573,130.437,0.505021,-1,-1,-1
927,-1,207.181,154.763,63.024,186.847,0.998701,-1,-1,-1
927,-1,167.58,180.646,44.196,139.076,0.996381,-1,-1,-1
927,-1,308.439,201.759,35.633,100.492,0.994714,-1,-1,-1
927,-1,366.561,198.848,39.341,107.817,0.98934,-1,-1,-1
927,-1,94.214,167.527,54.626,153.955,0.973438,-1,-1,-1
928,-1,197.169,159.884,69.516,188.073,0.995993,-1,-1,-1
928,-1,308.496,197.504,39.641,114.613,0.995604,-1,-1,-1
928,-1,161.365,176.624,47.516,144.129,0.983324,-1,-1,-1
928,-1,365.168,198.262,48.363,109.523,0.982177,-1,-1,-1
928,-1,101.527,162.772,46.972,161.057,0.941385,-1,-1,-1
929,-1,185.37,158.703,96.851,180.297,0.997853,-1,-1,-1
929,-1,309.427,193.377,40.977,124.177,0.995548,-1,-1,-1
929,-1,367.048,195.844,47.374,116.543,0.988272,-1,-1,-1
929,-1,163.52,179.596,41.558,143.639,0.984452,-1,-1,-1
929,-1,95.6672,176.205,55.3908,151.894,0.922194,-1,-1,-1
930,-1,185.427,169.111,83.843,194.295,0.996487,-1,-1,-1
930,-1,311.49,185.179,38.519,139.353,0.994482,-1,-1,-1
930,-1,93.5254,186.092,59.6196,138.927,0.990768,-1,-1,-1
930,-1,377.696,206.711,38.923,106.821,0.986246,-1,-1,-1
930,-1,166.498,173.706,36.877,158.201,0.895965,-1,-1,-1
931,-1,172.557,162.868,92.846,207.043,0.998438,-1,-1,-1
931,-1,300.933,175.975,50.497,144.507,0.993934,-1,-1,-1
931,-1,375.148,194.231,47.335,130.927,0.991702,-1,-1,-1
931,-1,89.7562,181.033,45.5558,158.545,0.928366,-1,-1,-1
931,-1,164.044,182.902,39.04,145.519,0.87904,-1,-1,-1
932,-1,176.248,157.332,80.084,207.565,0.997472,-1,-1,-1
932,-1,95.2257,180.338,53.1993,151.347,0.996809,-1,-1,-1
932,-1,310.274,193.13,39.377,128.381,0.992383,-1,-1,-1
932,-1,379.146,195.629,45.942,125.055,0.985029,-1,-1,-1
933,-1,167.308,140.393,92.812,246.334,0.998995,-1,-1,-1
933,-1,380.744,194.643,47.504,125.267,0.994805,-1,-1,-1
933,-1,298.648,188.685,54.406,138.963,0.989248,-1,-1,-1
933,-1,95.3492,176.773,49.6688,156.019,0.93995,-1,-1,-1
934,-1,174.022,131.395,75.954,260.939,0.999213,-1,-1,-1
934,-1,389.52,197.161,48.72,133.459,0.995317,-1,-1,-1
934,-1,88.1667,166.273,48.8413,174.831,0.993499,-1,-1,-1
934,-1,307.832,177.511,52.926,149.041,0.992951,-1,-1,-1
934,-1,550.044,221.429,22.524,41.628,0.81959,-1,-1,-1
935,-1,158.166,123.94,91.629,257.616,0.998842,-1,-1,-1
935,-1,91.2639,179.771,53.8091,154.726,0.993903,-1,-1,-1
935,-1,393.36,188.81,49.828,137.006,0.989612,-1,-1,-1
935,-1,309.834,187.603,48.463,133.837,0.985952,-1,-1,-1
935,-1,561.742,227.815,19.198,30.109,0.545548,-1,-1,-1
936,-1,146.144,128.356,105.119,275.943,0.998598,-1,-1,-1
936,-1,89.2225,178.72,57.9755,153.198,0.996112,-1,-1,-1
936,-1,311.76,190.896,56.661,141.368,0.993551,-1,-1,-1
936,-1,401.272,195.211,46.813,135.032,0.99103,-1,-1,-1
936,-1,568.815,228.224,25.504,33.242,0.825382,-1,-1,-1
937,-1,143.87,118.648,114.048,299.676,0.998361,-1,-1,-1
937,-1,412.393,186.961,43.255,145.403,0.99489,-1,-1,-1
937,-1,93.6727,189.375,54.0703,142.098,0.994416,-1,-1,-1
937,-1,310.498,195.977,55.597,136.642,0.992562,-1,-1,-1
937,-1,568.935,225.658,17.981,29.928,0.77993,-1,-1,-1
937,-1,365.122,212.543,31.372,87.245,0.570042,-1,-1,-1
938,-1,134.438,89.5465,109.042,351.909,0.997919,-1,-1,-1
938,-1,412.393,181.891,49.317,145.79,0.997394,-1,-1,-1
938,-1,309.999,190.828,58.457,135.454,0.994271,-1,-1,-1
938,-1,86.1273,162.08,62.3307,172.628,0.992275,-1,-1,-1
938,-1,567.628,217.577,22.894,41.932,0.662682,-1,-1,-1
938,-1,215.934,139.91,43.789,172.535,0.528814,-1,-1,-1
939,-1,113.766,65.3896,120.017,355.683,0.998118,-1,-1,-1
939,-1,403.533,177.391,60.594,169.185,0.996848,-1,-1,-1
939,-1,314.353,182.26,56.131,156.618,0.995548,-1,-1,-1
939,-1,92.7835,149.544,50.7885,200.115,0.965663,-1,-1,-1
939,-1,220.213,160.577,31.413,148.07,0.761795,-1,-1,-1
939,-1,572.4,224.501,25.513,29.432,0.650852,-1,-1,-1
940,-1,408.2,184.032,71.782,154.339,0.998937,-1,-1,-1
940,-1,312.987,183.074,69.998,156.349,0.998443,-1,-1,-1
940,-1,92.2289,65.0607,122.157,384.821,0.998393,-1,-1,-1
940,-1,218.9,190.628,41.591,114.786,0.988711,-1,-1,-1
941,-1,84.4865,52.3846,127.71,383.108,0.999024,-1,-1,-1
941,-1,410.42,171.7,69.083,161.17,0.998139,-1,-1,-1
941,-1,316.22,183.282,75.297,146.362,0.996139,-1,-1,-1
941,-1,222.418,187.489,39.722,117.635,0.986092,-1,-1,-1
941,-1,577.923,221.035,26.078,41.28,0.870485,-1,-1,-1
942,-1,426.779,178.273,69.892,151.095,0.998297,-1,-1,-1
942,-1,325.341,183.918,70.44,162.308,0.997974,-1,-1,-1
942,-1,45.0912,44.6366,163.311,409.246,0.997859,-1,-1,-1
942,-1,223.09,189.639,42.799,124.446,0.985509,-1,-1,-1
942,-1,590.256,220.034,26.897,34.604,0.82382,-1,-1,-1
943,-1,17.7294,0,187.44,478.414,0.998828,-1,-1,-1
943,-1,334.652,167.461,62.261,179.328,0.998596,-1,-1,-1
943,-1,438.127,162.115,71.521,188.402,0.997146,-1,-1,-1
943,-1,217.547,188.661,57.109,120.836,0.993187,-1,-1,-1
943,-1,598.078,222.021,25.657,38.457,0.520565,-1,-1,-1
944,-1,338.363,157.893,75.514,196.324,0.99858,-1,-1,-1
944,-1,7.57194,0,171.03,472.086,0.998069,-1,-1,-1
944,-1,441.626,172.654,75.924,169.533,0.993776,-1,-1,-1
944,-1,225.182,177.304,42.589,136.198,0.988639,-1,-1,-1
944,-1,166.113,152.922,46.08,168.543,0.954724,-1,-1,-1
945,-1,343.59,162.024,69.93,192.786,0.998531,-1,-1,-1
945,-1,457.067,165.433,72.252,173.518,0.992733,-1,-1,-1
945,-1,220.002,173.041,55.363,140.38,0.991168,-1,-1,-1
945,-1,0,0,147.611,475.682,0.987305,-1,-1,-1
945,-1,167.717,168.438,43.757,142.421,0.980571,-1,-1,-1
946,-1,359.557,146.064,62.824,210.207,0.998773,-1,-1,-1
946,-1,472.297,151.244,81.404,200.328,0.998769,-1,-1,-1
946,-1,228.132,163.661,46.191,154.055,0.995187,-1,-1,-1
946,-1,103.232,161.289,51.067,163.149,0.991834,-1,-1,-1
946,-1,162.606,167.534,44.883,141.548,0.990393,-1,-1,-1
946,-1,4.7499,0,94.6893,453.853,0.703443,-1,-1,-1
947,-1,477.956,152.764,85.972,197.533,0.998539,-1,-1,-1
947,-1,353.579,155.467,85.219,204.849,0.997956,-1,-1,-1
947,-1,103.707,174.429,55.111,155.512,0.996942,-1,-1,-1
947,-1,217.092,166.278,59.085,162.237,0.996449,-1,-1,-1
947,-1,163.547,180.97,42.867,132.075,0.993662,-1,-1,-1
948,-1,363.59,156.136,99.653,213.42,0.999039,-1,-1,-1
948,-1,488.238,152.682,103.176,220.996,0.998805,-1,-1,-1
948,-1,218.113,166.681,64.934,169.848,0.995892,-1,-1,-1
948,-1,103.931,173.254,53.337,164.076,0.995577,-1,-1,-1
948,-1,171.833,167.224,41.744,152.33,0.985118,-1,-1,-1
949,-1,505.811,138.617,79.412,254.58,0.998862,-1,-1,-1
949,-1,360.676,151.124,109.895,233.054,0.997673,-1,-1,-1
949,-1,100.887,169.53,56.89,152.106,0.997285,-1,-1,-1
949,-1,218.896,177.697,63.286,154.72,0.996499,-1,-1,-1
949,-1,171.514,169.42,42.28,151.678,0.988183,-1,-1,-1
950,-1,376.748,150.588,105.804,242.048,0.999355,-1,-1,-1
950,-1,508.685,147.238,101.595,223.172,0.998414,-1,-1,-1
950,-1,98.6242,169.416,54.5648,153.873,0.998118,-1,-1,-1
950,-1,214.521,174.082,70.277,158.829,0.998033,-1,-1,-1
950,-1,169.409,164.225,36.723,149.045,0.983786,-1,-1,-1
951,-1,392.793,153.646,95.999,242.927,0.99947,-1,-1,-1
951,-1,537.754,147.923,94.04,241.316,0.999022,-1,-1,-1
951,-1,100.627,168.521,53.444,158.177,0.998172,-1,-1,-1
951,-1,219.508,162.685,66.793,187.214,0.997503,-1,-1,-1
951,-1,175.381,172.186,37.789,151.5,0.988968,-1,-1,-1
952,-1,406.579,132.947,103.203,280.016,0.999243,-1,-1,-1
952,-1,556.007,119.899,75.077,281.22,0.998346,-1,-1,-1
952,-1,109.273,178.36,54.309,148.755,0.996771,-1,-1,-1
952,-1,216.518,156.716,71.847,184.088,0.996622,-1,-1,-1
952,-1,178.455,189.617,40.104,140.579,0.991055,-1,-1,-1
953,-1,416.724,120.297,116.836,297.955,0.999398,-1,-1,-1
953,-1,215.812,154.142,71.826,189.608,0.996989,-1,-1,-1
953,-1,115.002,161.011,57.101,171.046,0.996561,-1,-1,-1
953,-1,572.935,120.928,66.065,285.632,0.994042,-1,-1,-1
953,-1,178.84,167.991,44.798,146.997,0.990136,-1,-1,-1
953,-1,302.569,223.363,21.834,38.841,0.697392,-1,-1,-1
954,-1,422.382,119.97,138.3,306.845,0.999315,-1,-1,-1
954,-1,108.924,160.044,61.436,153.962,0.998037,-1,-1,-1
954,-1,210.287,151.471,79.032,203.949,0.996099,-1,-1,-1
954,-1,174.459,177.607,48.438,140.153,0.989511,-1,-1,-1
954,-1,586.052,141.004,49.795,245.188,0.811901,-1,-1,-1
954,-1,309.873,213.749,13.632,45.133,0.739637,-1,-1,-1
955,-1,432.687,106.306,145.121,333.745,0.999255,-1,-1,-1
955,-1,201.589,159.696,90.317,203.081,0.997328,-1,-1,-1
955,-1,111.048,166.157,55.972,150.924,0.99697,-1,-1,-1
955,-1,172.474,175.318,40.355,143.365,0.973351,-1,-1,-1
956,-1,444.35,99.7824,160.136,360.316,0.99799,-1,-1,-1
956,-1,204.364,153.552,75.399,215.416,0.996529,-1,-1,-1
956,-1,104.884,167.041,58.727,163.944,0.995678,-1,-1,-1
956,-1,172.19,182.899,41.208,138.535,0.956354,-1,-1,-1
956,-1,305.671,211.728,17.743,49.508,0.755046,-1,-1,-1
957,-1,459.746,85.6094,169.675,382.46,0.999087,-1,-1,-1
957,-1,183.394,149.535,96.732,234.679,0.998628,-1,-1,-1
957,-1,102.816,170.683,56.921,158.926,0.995441,-1,-1,-1
957,-1,169.003,170.11,36.643,151.809,0.938321,-1,-1,-1
957,-1,427.24,228.753,18.51,47.058,0.824806,-1,-1,-1
957,-1,293.311,214.588,25.924,51.187,0.648237,-1,-1,-1
958,-1,183.226,127.164,86.114,271.807,0.999077,-1,-1,-1
958,-1,480.366,104.184,158.634,365.748,0.998608,-1,-1,-1
958,-1,98.4848,170.24,63.2602,154.562,0.993059,-1,-1,-1
958,-1,429.792,231.924,23.959,45.015,0.980465,-1,-1,-1
958,-1,168.132,180.117,29.123,140.722,0.893897,-1,-1,-1
958,-1,291.283,217.357,24.347,50.302,0.835967,-1,-1,-1
958,-1,306.445,214.928,14.097,46.537,0.735689,-1,-1,-1
959,-1,163.263,130.219,100.614,271.73,0.998594,-1,-1,-1
959,-1,105.022,157.706,57.584,183.367,0.997508,-1,-1,-1
959,-1,512.8,77.6857,126.2,386.349,0.989351,-1,-1,-1
959,-1,419.753,235.049,25.631,43.924,0.924045,-1,-1,-1
959,-1,301.775,212.786,12.844,48.944,0.710843,-1,-1,-1
959,-1,293.209,218.283,14.082,45.915,0.602057,-1,-1,-1
959,-1,165.538,178.984,38.39,153.098,0.582989,-1,-1,-1
960,-1,152.06,104.936,108.206,287.646,0.998933,-1,-1,-1
960,-1,89.5923,155.512,69.2107,174.127,0.991927,-1,-1,-1
960,-1,587.549,206.862,40.975,94.214,0.957222,-1,-1,-1
960,-1,426.68,228.326,21.651,50.397,0.877901,-1,-1,-1
960,-1,305.309,210.757,13.558,48.132,0.552225,-1,-1,-1
961,-1,137.324,107.676,117.571,316.632,0.998889,-1,-1,-1
961,-1,85.4556,151.033,56.5084,178.642,0.980007,-1,-1,-1
961,-1,429.826,229.558,16.155,41.269,0.883676,-1,-1,-1
961,-1,304.157,222.354,15.127,43.364,0.738766,-1,-1,-1
961,-1,253.352,212.938,15.604,51.982,0.648193,-1,-1,-1
962,-1,103.146,77.9371,152.822,372.319,0.998502,-1,-1,-1
962,-1,256,214.072,17.578,56.657,0.835839,-1,-1,-1
962,-1,301.088,211.408,17.991,45.935,0.798497,-1,-1,-1
962,-1,426.93,229.43,25.515,50.663,0.675236,-1,-1,-1
963,-1,87.1599,67.4234,156.904,388.324,0.999186,-1,-1,-1
963,-1,427.437,225.352,26.095,52.828,0.973039,-1,-1,-1
963,-1,250.67,211.279,20.417,58.177,0.939393,-1,-1,-1
963,-1,301.701,213.114,17.36,51.864,0.76518,-1,-1,-1
964,-1,72.1196,55.3174,150.329,402.921,0.99934,-1,-1,-1
964,-1,430.213,234.639,26.754,48.338,0.968551,-1,-1,-1
964,-1,248.423,217.483,23.513,50.603,0.955882,-1,-1,-1
964,-1,299.118,214.554,17.027,47.859,0.872394,-1,-1,-1
965,-1,42.4879,14.8753,165.224,464.125,0.997544,-1,-1,-1
965,-1,249.166,222.759,17.791,48.521,0.946428,-1,-1,-1
965,-1,429.776,228.674,28.582,50.475,0.939877,-1,-1,-1
965,-1,302.04,226.32,16.441,40.111,0.921684,-1,-1,-1
965,-1,229.476,207.951,30.532,65.418,0.882427,-1,-1,-1
966,-1,12.586,11.8638,175.982,402.996,0.996338,-1,-1,-1
966,-1,435.754,226.705,22.463,52.705,0.971965,-1,-1,-1
966,-1,244.349,214.964,25.393,55.275,0.954366,-1,-1,-1
966,-1,300.794,225.86,25.086,47.648,0.945596,-1,-1,-1
967,-1,1.1928,0.636963,166.082,474.375,0.999586,-1,-1,-1
967,-1,438.252,230.857,26.059,51.843,0.977528,-1,-1,-1
967,-1,303.882,221.571,22.109,45.437,0.952496,-1,-1,-1
967,-1,242.93,214.057,22.385,55.073,0.930794,-1,-1,-1
967,-1,256.251,221.891,17.943,46.456,0.885581,-1,-1,-1
968,-1,0,8.33969,155.014,470.66,0.996877,-1,-1,-1
968,-1,440.863,232.433,24.621,45.948,0.958436,-1,-1,-1
968,-1,238.392,212.968,27.949,55.4,0.958375,-1,-1,-1
968,-1,304.53,225.965,17.981,36.483,0.911483,-1,-1,-1
968,-1,257.067,222.627,17.197,43.102,0.907163,-1,-1,-1
969,-1,56.6285,170.799,89.0885,155.988,0.989367,-1,-1,-1
969,-1,248.88,216.024,23.677,52.665,0.946506,-1,-1,-1
969,-1,303.935,215.226,17.225,44.091,0.871557,-1,-1,-1
969,-1,441.251,228.626,21.266,48.053,0.84598,-1,-1,-1
970,-1,51.7076,171.292,87.3994,158.5,0.994194,-1,-1,-1
970,-1,247.49,213.843,20.63,53.969,0.961527,-1,-1,-1
970,-1,439.493,224.479,20.639,54.535,0.959996,-1,-1,-1
970,-1,303.539,222.338,17.228,40.39,0.9079,-1,-1,-1
970,-1,108.183,184.033,43.299,144.797,0.726208,-1,-1,-1
970,-1,231.636,209.554,27.898,67.743,0.565903,-1,-1,-1
971,-1,42.2105,170.936,75.4685,162.506,0.993996,-1,-1,-1
971,-1,99.6156,179.484,46.5824,140.788,0.984452,-1,-1,-1
971,-1,439.614,227.925,21.776,49.425,0.972169,-1,-1,-1
971,-1,304.104,218.37,21.945,45.772,0.926192,-1,-1,-1
971,-1,232.637,204.474,34.354,64.181,0.899461,-1,-1,-1
971,-1,259.628,210.058,14.884,55.518,0.892417,-1,-1,-1
972,-1,33.8903,162.795,94.0137,159.364,0.995328,-1,-1,-1
972,-1,440.942,230.693,23.708,53.227,0.947541,-1,-1,-1
972,-1,230.827,212.66,26.192,63.637,0.906719,-1,-1,-1
972,-1,251.119,222.301,18.768,52.394,0.87051,-1,-1,-1
972,-1,304.23,225.05,17.096,37.147,0.857755,-1,-1,-1
972,-1,263.087,223.663,15.163,50.252,0.722665,-1,-1,-1
973,-1,12.0996,156.441,94.6604,172.304,0.997217,-1,-1,-1
973,-1,66.664,158.265,62.622,142.603,0.987947,-1,-1,-1
973,-1,229.444,212.017,25.726,57.128,0.893699,-1,-1,-1
973,-1,439.313,232.862,28.753,55.389,0.886221,-1,-1,-1
973,-1,250.614,213.154,21.755,61.575,0.852307,-1,-1,-1
973,-1,304.888,224.274,19.936,37.283,0.844405,-1,-1,-1
973,-1,268.144,217.942,23.476,54.492,0.683818,-1,-1,-1
974,-1,16.0175,164.409,77.9017,164.367,0.9963,-1,-1,-1
974,-1,65.9777,160.439,45.1663,149.622,0.960432,-1,-1,-1
974,-1,235.791,210.243,21.847,63.562,0.822428,-1,-1,-1
974,-1,304.356,221.15,18.353,45.33,0.804397,-1,-1,-1
974,-1,442.454,226.038,22.036,52.127,0.778208,-1,-1,-1
974,-1,244.328,213.739,36.987,57.746,0.548053,-1,-1,-1
974,-1,258.055,218.616,12.777,46.327,0.522753,-1,-1,-1
975,-1,10.2712,154.662,76.2307,178.882,0.995824,-1,-1,-1
975,-1,442.129,232.038,29.929,50.476,0.900897,-1,-1,-1
975,-1,306.305,220.404,18.74,46.243,0.845344,-1,-1,-1
975,-1,56.2505,160.758,56.8415,126.408,0.809919,-1,-1,-1
975,-1,232.059,211.097,22.927,57.637,0.562524,-1,-1,-1
976,-1,8.0109,151.518,60.2536,191.762,0.995237,-1,-1,-1
976,-1,48.6758,151.67,51.0911,168.478,0.988456,-1,-1,-1
976,-1,450.018,227.212,22.298,54.141,0.933511,-1,-1,-1
976,-1,302.952,206.289,22.258,57.285,0.869232,-1,-1,-1
977,-1,30.7151,152.278,69.7009,174.462,0.986839,-1,-1,-1
977,-1,6.65639,162.853,43.9128,182.413,0.98041,-1,-1,-1
977,-1,452.385,221.874,19.495,54.672,0.914013,-1,-1,-1
977,-1,305.246,214.24,20.23,48.008,0.887835,-1,-1,-1
977,-1,234.404,206.116,22.827,62.451,0.708249,-1,-1,-1
977,-1,264.502,210.237,17.061,54.191,0.707938,-1,-1,-1
978,-1,24.9753,149.088,78.1957,168.962,0.98907,-1,-1,-1
978,-1,1.09611,154.831,49.2727,194.793,0.980988,-1,-1,-1
978,-1,451.265,211.982,29.273,75.277,0.956527,-1,-1,-1
978,-1,259.444,214.281,15.093,51.339,0.735144,-1,-1,-1
978,-1,236.143,210.245,24.146,63.154,0.658143,-1,-1,-1
978,-1,308.8,212.08,20.307,49.545,0.569037,-1,-1,-1
979,-1,17.834,145.607,61.0683,180.836,0.995462,-1,-1,-1
979,-1,262.674,213.601,17.116,51.898,0.908235,-1,-1,-1
979,-1,455.718,220.865,20.846,57.53,0.900521,-1,-1,-1
979,-1,244.356,210.266,21.057,54.115,0.854453,-1,-1,-1
979,-1,305.865,212.255,19.439,47.763,0.6802,-1,-1,-1
979,-1,272.1,222.226,24.106,50.083,0.532674,-1,-1,-1
980,-1,23.3626,150.819,53.688,172.819,0.989816,-1,-1,-1
980,-1,245.825,212.526,31.456,60.95,0.936979,-1,-1,-1
980,-1,451.856,217.842,32.394,69.574,0.736972,-1,-1,-1
980,-1,307.256,211.062,15.935,51.643,0.698133,-1,-1,-1
980,-1,270.351,209.151,14.321,53.69,0.583438,-1,-1,-1
981,-1,12.7724,141.941,48.3641,182.736,0.998586,-1,-1,-1
981,-1,461.58,213.15,24.025,74.421,0.939536,-1,-1,-1
981,-1,308.359,211.235,19.813,52.143,0.929091,-1,-1,-1
981,-1,256.269,209.627,19.292,58.248,0.921931,-1,-1,-1
981,-1,238.546,209.285,24.884,58.091,0.811341,-1,-1,-1
982,-1,3.00895,153.443,56.5427,170.123,0.994098,-1,-1,-1
982,-1,462.006,225.694,22.469,61.245,0.938615,-1,-1,-1
982,-1,249.183,210.252,25.32,60.122,0.914651,-1,-1,-1
982,-1,310.127,211.061,18.591,42.367,0.683212,-1,-1,-1
982,-1,275.247,211.862,17.353,58.472,0.519375,-1,-1,-1
983,-1,2.35783,151.277,44.9055,175.773,0.99247,-1,-1,-1
983,-1,466.45,227.432,24.681,65.741,0.953012,-1,-1,-1
983,-1,243.368,211.777,25.578,64.267,0.903804,-1,-1,-1
983,-1,259.948,212.018,21.151,63.333,0.850933,-1,-1,-1
983,-1,277.965,209.575,17.214,55.127,0.772098,-1,-1,-1
983,-1,306.47,211.288,17.142,51.764,0.769623,-1,-1,-1
984,-1,2.91441,169.048,42.1155,144.999,0.99308,-1,-1,-1
984,-1,461.735,224.865,27.073,68.878,0.947498,-1,-1,-1
984,-1,266.818,213.658,22.641,53.734,0.934207,-1,-1,-1
984,-1,253.189,213.062,23.13,52.993,0.897622,-1,-1,-1
984,-1,315.122,216.338,16.281,46.751,0.840747,-1,-1,-1
984,-1,236.605,216.072,26.361,53.574,0.75294,-1,-1,-1
984,-1,285.989,222.564,24.14,52.491,0.699727,-1,-1,-1
985,-1,303.416,220.317,28.288,51.06,0.962755,-1,-1,-1
985,-1,465.804,229.867,24.777,60.975,0.952737,-1,-1,-1
985,-1,241.173,219.85,25.492,59.22,0.902463,-1,-1,-1
985,-1,262.613,220.019,18.2,53.694,0.893759,-1,-1,-1
985,-1,273.397,215.777,16.97,62.077,0.733478,-1,-1,-1
986,-1,463.84,237.588,25.753,57.697,0.921325,-1,-1,-1
986,-1,301.695,217.981,20.274,53.557,0.911912,-1,-1,-1
986,-1,240.746,218.187,23.524,52.329,0.853799,-1,-1,-1
986,-1,217.934,217.39,34.195,58.566,0.772437,-1,-1,-1
986,-1,263.684,219.916,14.925,57.213,0.770806,-1,-1,-1
986,-1,277.223,217.363,14.444,56.908,0.624605,-1,-1,-1
987,-1,303.66,223.61,22.808,45.859,0.946148,-1,-1,-1
987,-1,237.866,220.536,22.278,55.52,0.838708,-1,-1,-1
987,-1,466.221,241.978,20.152,53.975,0.827921,-1,-1,-1
987,-1,218.398,218.056,32.83,68.411,0.791359,-1,-1,-1
987,-1,251.239,223.703,20.215,57.245,0.777966,-1,-1,-1
987,-1,273.002,221.48,16.835,57.337,0.650433,-1,-1,-1
988,-1,469.13,235.108,19.619,63.447,0.820756,-1,-1,-1
988,-1,224.719,223.152,25.796,58.446,0.810567,-1,-1,-1
988,-1,297.312,219.621,27.692,57.768,0.739512,-1,-1,-1
988,-1,252.343,219.887,22.66,65.585,0.729232,-1,-1,-1
988,-1,262.623,209.382,32.919,67.211,0.586471,-1,-1,-1
989,-1,214.389,216.097,33.777,62.399,0.955987,-1,-1,-1
989,-1,467.119,237.21,22.186,56.743,0.913238,-1,-1,-1
989,-1,262.796,213.874,23.939,60.725,0.887273,-1,-1,-1
989,-1,298.773,223.875,25.74,37.274,0.736102,-1,-1,-1
989,-1,236.202,218.963,20.898,54.671,0.534102,-1,-1,-1
990,-1,216.221,213.394,32.821,61.762,0.935076,-1,-1,-1
990,-1,257.06,218.929,16.865,51.268,0.900307,-1,-1,-1
990,-1,296.292,220.512,24.758,55.216,0.857106,-1,-1,-1
990,-1,460.916,235.008,27.234,62.296,0.831881,-1,-1,-1
990,-1,244.643,219.019,22.011,62.572,0.818406,-1,-1,-1
991,-1,223.905,221.306,21.628,55.878,0.964451,-1,-1,-1
991,-1,463.345,228.435,26.302,70.638,0.952674,-1,-1,-1
991,-1,260.092,213.306,21.94,65.184,0.951206,-1,-1,-1
991,-1,301.327,217.337,19.347,49.194,0.89138,-1,-1,-1
991,-1,242.501,212.52,23.006,65.359,0.589645,-1,-1,-1
992,-1,300.901,221.791,22.356,42.548,0.974211,-1,-1,-1
992,-1,466.058,232.074,25.596,65.099,0.94666,-1,-1,-1
992,-1,260.587,220.203,18.799,58.151,0.940677,-1,-1,-1
992,-1,226.221,217.254,18.495,58.77,0.735629,-1,-1,-1
993,-1,260.511,215.066,18.957,67.443,0.965822,-1,-1,-1
993,-1,295.53,218.69,20.962,55.355,0.959288,-1,-1,-1
993,-1,458.868,231.4,33.031,64.047,0.935248,-1,-1,-1
993,-1,220.451,210.141,27.465,69.124,0.773849,-1,-1,-1
994,-1,294.107,227.295,18.734,42.194,0.967602,-1,-1,-1
994,-1,245.056,218.974,24.786,67.959,0.932491,-1,-1,-1
994,-1,472.991,239.441,23.092,61.269,0.920078,-1,-1,-1
994,-1,219.107,207.845,29.023,68.441,0.906613,-1,-1,-1
995,-1,250.932,211.739,21.632,71.199,0.973627,-1,-1,-1
995,-1,471.779,239.267,24.311,65.478,0.944937,-1,-1,-1
995,-1,291.535,222.49,25.187,45.013,0.903561,-1,-1,-1
995,-1,219.003,203.447,27.217,81.357,0.762853,-1,-1,-1
996,-1,242.321,209.019,23.158,73.687,0.978626,-1,-1,-1
996,-1,291.81,220.072,20.352,46.106,0.939323,-1,-1,-1
996,-1,219.232,204.453,28.415,73.762,0.875626,-1,-1,-1
996,-1,470.913,240.724,23.1,60.134,0.809673,-1,-1,-1
997,-1,474.237,244.906,23.319,56.707,0.956223,-1,-1,-1
997,-1,228.349,213.365,27.299,67.195,0.942642,-1,-1,-1
997,-1,286.928,224.815,15.954,40.208,0.934016,-1,-1,-1
997,-1,241.606,222.21,30.319,65.103,0.890714,-1,-1,-1
998,-1,474.001,241.864,23.138,58.677,0.963865,-1,-1,-1
998,-1,229.883,211.545,31.585,68.972,0.953568,-1,-1,-1
998,-1,287.627,219.092,16.612,48.608,0.948026,-1,-1,-1
998,-1,207.829,207.289,34.387,66.068,0.622262,-1,-1,-1
999,-1,235.23,211.01,25.561,71.928,0.977461,-1,-1,-1
999,-1,476.551,239.609,20.816,55.14,0.967607,-1,-1,-1
999,-1,288.045,218.299,19.689,44.066,0.963302,-1,-1,-1
999,-1,213.88,205.249,31.531,71.289,0.773366,-1,-1,-1
1000,-1,232.725,201.681,25.015,82.409,0.987474,-1,-1,-1
1000,-1,286.337,217.557,25.167,46.14,0.967605,-1,-1,-1
1000,-1,481.598,243.602,20.317,56.317,0.94687,-1,-1,-1
================================================
FILE: data/ETH-Pedcross2/det.txt
================================================
1,-1,11.2975,148.802,79.1665,197.675,0.996934,-1,-1,-1
1,-1,127.539,149.108,61.742,185.324,0.996496,-1,-1,-1
2,-1,18.7885,155.458,73.9084,193.915,0.997462,-1,-1,-1
2,-1,128.76,155.924,62.695,177.132,0.992312,-1,-1,-1
3,-1,18.5993,160.425,77.9734,177.18,0.986727,-1,-1,-1
3,-1,118.563,154.343,89.716,166.363,0.975686,-1,-1,-1
3,-1,252.733,206.097,31.034,51.173,0.909134,-1,-1,-1
4,-1,23.1384,149.022,73.5588,202.195,0.993819,-1,-1,-1
4,-1,128.449,154.627,74.063,185.727,0.990711,-1,-1,-1
4,-1,242.425,200.137,24.501,58.035,0.748383,-1,-1,-1
4,-1,254.464,200.79,42.028,56.225,0.637355,-1,-1,-1
5,-1,146.804,153.863,60.958,205.123,0.99435,-1,-1,-1
5,-1,31.6013,154.217,72.1277,208.404,0.993849,-1,-1,-1
5,-1,257.189,201.056,26.71,63.345,0.918179,-1,-1,-1
5,-1,280.908,205.495,32.594,46.494,0.886573,-1,-1,-1
6,-1,159.415,146.593,57.831,200.305,0.997111,-1,-1,-1
6,-1,36.6791,150.395,66.3099,202.615,0.995144,-1,-1,-1
6,-1,265.694,199.64,27.957,58.843,0.899162,-1,-1,-1
6,-1,237.647,201.3,20.195,64.414,0.818037,-1,-1,-1
6,-1,251.638,200.579,22.87,54.649,0.766188,-1,-1,-1
7,-1,150.693,155.788,72.114,179.665,0.994368,-1,-1,-1
7,-1,39.7279,147.994,72.2051,207.007,0.994026,-1,-1,-1
7,-1,329.029,201.549,38.759,50.625,0.949925,-1,-1,-1
7,-1,269.222,199.442,26.963,62.727,0.942203,-1,-1,-1
7,-1,234.416,202.912,23.401,55.814,0.727034,-1,-1,-1
8,-1,164.502,155.263,62.996,194.391,0.998147,-1,-1,-1
8,-1,39.1316,146.627,79.4374,208.266,0.990066,-1,-1,-1
8,-1,279.987,198.502,25.076,65.262,0.956917,-1,-1,-1
8,-1,238.515,202.298,22.194,63.368,0.858071,-1,-1,-1
8,-1,365.865,194.84,31.805,59.27,0.788058,-1,-1,-1
9,-1,158.776,148.595,76.563,201.442,0.998599,-1,-1,-1
9,-1,41.9895,145.068,75.4845,197.47,0.980974,-1,-1,-1
9,-1,292.947,199.427,24.203,62.362,0.951072,-1,-1,-1
9,-1,385.327,195.667,32.14,57.915,0.89191,-1,-1,-1
9,-1,249.004,203.328,22.203,62.952,0.772472,-1,-1,-1
9,-1,264.04,198.771,21.435,65.166,0.50681,-1,-1,-1
10,-1,171.596,150.174,74.262,200.665,0.998918,-1,-1,-1
10,-1,58.206,155.021,69.184,209.113,0.990292,-1,-1,-1
10,-1,297.317,203.304,25.983,60.769,0.971483,-1,-1,-1
10,-1,260.911,198.24,22.033,64.514,0.68989,-1,-1,-1
10,-1,249.29,197.1,19.889,70.924,0.64782,-1,-1,-1
10,-1,279.571,198.281,21.092,65.711,0.639514,-1,-1,-1
11,-1,165.432,144.733,96.157,206.478,0.998902,-1,-1,-1
11,-1,62.8775,146.49,75.0605,204.283,0.997118,-1,-1,-1
11,-1,302.861,200.71,24.369,62.637,0.95105,-1,-1,-1
11,-1,264.076,202.364,21.284,58.802,0.840167,-1,-1,-1
11,-1,283.328,197.912,24.001,57.511,0.607553,-1,-1,-1
12,-1,175.6,141.762,96.366,222.136,0.998974,-1,-1,-1
12,-1,60.3079,144.749,81.8191,214.707,0.998232,-1,-1,-1
12,-1,319.883,201.39,25.925,60.583,0.943213,-1,-1,-1
12,-1,305.26,203.78,22.962,59.414,0.844334,-1,-1,-1
12,-1,270.11,200.398,24.204,70.404,0.75704,-1,-1,-1
12,-1,287.783,203.649,19.597,62.335,0.687097,-1,-1,-1
13,-1,185.015,146.92,80.664,211.616,0.997859,-1,-1,-1
13,-1,74.8644,153.444,74.6066,209.264,0.991694,-1,-1,-1
13,-1,327.156,198.954,30.674,57.145,0.949084,-1,-1,-1
13,-1,276.393,207.33,26.871,62.463,0.715727,-1,-1,-1
13,-1,316.939,211.003,25.314,56.114,0.610014,-1,-1,-1
13,-1,303.156,201.935,21.098,63.871,0.602528,-1,-1,-1
14,-1,210.559,141.95,72.314,225.921,0.997458,-1,-1,-1
14,-1,83.8101,154.832,73.6859,209.563,0.994001,-1,-1,-1
14,-1,334.697,202.359,27.562,58.513,0.970819,-1,-1,-1
14,-1,296.821,201.611,20.833,62.296,0.789463,-1,-1,-1
14,-1,317.067,198.656,22.183,69.707,0.691547,-1,-1,-1
14,-1,284.093,192.522,22.761,75.855,0.684798,-1,-1,-1
15,-1,207.235,155.248,88.733,214.049,0.996032,-1,-1,-1
15,-1,86.4563,141.528,90.9147,227.293,0.991825,-1,-1,-1
15,-1,343.145,201.746,27.914,65.614,0.973511,-1,-1,-1
15,-1,303.353,198.491,18.982,69.793,0.850666,-1,-1,-1
15,-1,331.567,202.52,20.947,61.484,0.781941,-1,-1,-1
15,-1,183.72,193.309,22.834,82.085,0.53515,-1,-1,-1
16,-1,218.86,129.66,79.558,237.666,0.999081,-1,-1,-1
16,-1,82.5179,140.296,87.1601,228.726,0.998611,-1,-1,-1
16,-1,349.317,198.245,28.499,67.381,0.948145,-1,-1,-1
16,-1,331.984,197.592,23.108,63.43,0.689644,-1,-1,-1
16,-1,302.704,207.271,24.876,56.022,0.501951,-1,-1,-1
17,-1,213.383,143.276,86.125,224.92,0.998602,-1,-1,-1
17,-1,77.8502,134.105,93.5208,231.024,0.99734,-1,-1,-1
17,-1,195.543,192.636,24.176,69.337,0.960684,-1,-1,-1
17,-1,309.844,194.255,23.363,69.642,0.853118,-1,-1,-1
17,-1,295.288,172.395,27.605,101.395,0.502358,-1,-1,-1
18,-1,214.231,133.521,97.913,246.065,0.998579,-1,-1,-1
18,-1,83.1969,136.682,102.607,234.381,0.985729,-1,-1,-1
18,-1,1.85479,148.306,28.7391,90.326,0.95543,-1,-1,-1
18,-1,304.165,175.248,27.249,98.561,0.858571,-1,-1,-1
18,-1,197.655,186.794,21.271,77.285,0.789349,-1,-1,-1
19,-1,220.116,132.591,87.36,247.578,0.998371,-1,-1,-1
19,-1,78.4888,128.912,93.2412,236.096,0.997309,-1,-1,-1
19,-1,1.66721,153.657,31.6095,88.347,0.971546,-1,-1,-1
19,-1,11.9651,250.551,32.0487,92.396,0.589831,-1,-1,-1
20,-1,209.803,139.276,102.228,237.879,0.997017,-1,-1,-1
20,-1,76.6437,125.137,102.131,252.383,0.99223,-1,-1,-1
20,-1,2.79334,149.247,30.5802,80.678,0.913045,-1,-1,-1
20,-1,6.56276,233.507,31.8272,113.359,0.530322,-1,-1,-1
21,-1,211.225,125.7,108.655,253.855,0.996629,-1,-1,-1
21,-1,65.2997,114.067,100.777,264.894,0.994172,-1,-1,-1
21,-1,7.07684,195.786,29.4446,98.3,0.735262,-1,-1,-1
21,-1,1.26864,141.493,32.2708,84.095,0.729479,-1,-1,-1
22,-1,218.288,119.441,92.761,257.58,0.997735,-1,-1,-1
22,-1,62.5299,105.308,106.072,280.011,0.991948,-1,-1,-1
22,-1,0.516466,140.108,32.2039,85.558,0.779015,-1,-1,-1
22,-1,1.87903,210.042,30.3693,131.184,0.698255,-1,-1,-1
22,-1,202.771,184.675,31.013,83.91,0.667602,-1,-1,-1
23,-1,215.395,115.387,115.961,276.391,0.998348,-1,-1,-1
23,-1,63.5647,115.953,111.526,275.497,0.98991,-1,-1,-1
23,-1,0,145.803,30.4005,118.81,0.693451,-1,-1,-1
23,-1,3.69973,207.139,38.2875,124.27,0.684458,-1,-1,-1
23,-1,109.532,108.478,45.048,51.474,0.612533,-1,-1,-1
24,-1,215.257,114.936,116.722,268.754,0.998207,-1,-1,-1
24,-1,59.0037,125.264,110.572,256.897,0.993713,-1,-1,-1
24,-1,0,177.949,35.6763,158.659,0.860887,-1,-1,-1
25,-1,214.142,105.434,128.738,300.305,0.997056,-1,-1,-1
25,-1,53.723,116.251,128.148,286.117,0.9941,-1,-1,-1
25,-1,0.432999,158.565,39.4288,179.269,0.885394,-1,-1,-1
26,-1,213.817,121.565,126.364,287.902,0.997698,-1,-1,-1
26,-1,56.4008,115.297,115.017,289.086,0.992434,-1,-1,-1
26,-1,0,148.04,40.972,203.879,0.815473,-1,-1,-1
27,-1,218.672,103.225,126.092,315.457,0.993579,-1,-1,-1
27,-1,56.7506,111.829,116.643,297.363,0.993529,-1,-1,-1
27,-1,0,180.709,32.993,152.272,0.818776,-1,-1,-1
28,-1,46.4369,114.254,140.684,294.86,0.991601,-1,-1,-1
28,-1,230.512,118.395,124.874,297.581,0.988873,-1,-1,-1
28,-1,0,159.535,40.2875,179.713,0.918296,-1,-1,-1
29,-1,55.7922,89.917,129.313,325.887,0.996239,-1,-1,-1
29,-1,222.675,100.665,127.681,324.627,0.986574,-1,-1,-1
29,-1,0,190.122,41.3378,139.873,0.948851,-1,-1,-1
29,-1,0,125.38,26.6196,93.725,0.765636,-1,-1,-1
29,-1,140.621,94.6114,40.481,100.353,0.636493,-1,-1,-1
30,-1,43.1106,99.1181,146.276,320.806,0.996336,-1,-1,-1
30,-1,220.56,104.514,135.424,322.674,0.994006,-1,-1,-1
30,-1,0,177.409,41.2155,152.013,0.924589,-1,-1,-1
30,-1,147.342,93.5934,35.949,80.7266,0.677583,-1,-1,-1
31,-1,39.6917,86.8487,151.385,313.696,0.99522,-1,-1,-1
31,-1,228.443,98.2551,127.018,336.157,0.992988,-1,-1,-1
31,-1,0,192.91,33.8305,136.953,0.934529,-1,-1,-1
31,-1,145.249,87.9437,36.47,92.3113,0.84361,-1,-1,-1
32,-1,243.171,90.9463,130.383,341.586,0.996706,-1,-1,-1
32,-1,47.9476,79.2873,146.001,349.848,0.995145,-1,-1,-1
32,-1,406.357,185.423,30.294,76.216,0.988157,-1,-1,-1
32,-1,145.246,93.382,43.254,90.925,0.568117,-1,-1,-1
33,-1,242.444,83.1294,139.739,353.328,0.998135,-1,-1,-1
33,-1,54.928,71.5744,142.723,364.797,0.9958,-1,-1,-1
33,-1,416.626,183.77,33.884,79.162,0.988235,-1,-1,-1
33,-1,0.043025,97.9942,28.4569,119.854,0.88148,-1,-1,-1
33,-1,389.135,183.757,27.766,69.544,0.867551,-1,-1,-1
33,-1,147.563,86.8975,48.816,92.8775,0.826406,-1,-1,-1
33,-1,365.621,182.258,19.58,80.013,0.740465,-1,-1,-1
34,-1,262.595,84.2264,116.889,366.666,0.99851,-1,-1,-1
34,-1,63.3396,69.9193,131.138,362.268,0.992389,-1,-1,-1
34,-1,426.55,186.011,28.495,82.845,0.949544,-1,-1,-1
34,-1,370.776,180.535,31.312,82.293,0.910087,-1,-1,-1
34,-1,399.631,187.139,26.247,73.139,0.902165,-1,-1,-1
34,-1,155.417,76.0679,54.351,137.338,0.801117,-1,-1,-1
34,-1,1.79717,107.073,27.5954,122.14,0.761701,-1,-1,-1
34,-1,389.507,191.801,20.973,69.93,0.619907,-1,-1,-1
35,-1,269.389,75.5207,133.188,374.705,0.998226,-1,-1,-1
35,-1,65.8087,78.3083,153.985,370.721,0.996981,-1,-1,-1
35,-1,431.109,191.657,27.149,77.064,0.979133,-1,-1,-1
35,-1,1.05162,126.069,42.2502,123.53,0.949631,-1,-1,-1
35,-1,378.732,181.339,24.031,91.998,0.932115,-1,-1,-1
35,-1,415.618,183.54,27.726,88.538,0.829516,-1,-1,-1
35,-1,157.51,81.3883,62.699,182.696,0.781743,-1,-1,-1
36,-1,273.8,79.5878,147.561,373.338,0.998869,-1,-1,-1
36,-1,80.4271,71.0381,140.204,373.802,0.995711,-1,-1,-1
36,-1,451.079,190.945,27.512,78.084,0.982659,-1,-1,-1
36,-1,0,125.63,49.1705,128.696,0.946396,-1,-1,-1
36,-1,182.428,81.8354,34.919,100.856,0.888842,-1,-1,-1
36,-1,419.361,184.837,24.197,75.486,0.782403,-1,-1,-1
36,-1,434.267,186.081,22.904,80.756,0.605252,-1,-1,-1
36,-1,390.406,159.687,26.283,105.969,0.524677,-1,-1,-1
37,-1,282.473,71.1237,146.591,388.052,0.99864,-1,-1,-1
37,-1,79.0166,54.8124,148.61,400.93,0.996019,-1,-1,-1
37,-1,453.406,189.015,29.982,77.083,0.981559,-1,-1,-1
37,-1,6.97618,120.493,45.8738,168.801,0.959907,-1,-1,-1
37,-1,390.654,160.249,33.632,116.575,0.854198,-1,-1,-1
37,-1,171.319,85.0628,45.149,82.9312,0.769517,-1,-1,-1
37,-1,426.442,179.709,26.884,90.149,0.648887,-1,-1,-1
38,-1,288.961,58.8054,147.531,415.418,0.998001,-1,-1,-1
38,-1,72.2874,46.5178,153.083,407.982,0.996618,-1,-1,-1
38,-1,459.335,188.956,29.909,82.35,0.988462,-1,-1,-1
38,-1,5.3241,119.823,48.1478,139.63,0.942523,-1,-1,-1
38,-1,392.993,154.11,40.216,123.183,0.783734,-1,-1,-1
38,-1,425.597,174.745,31.401,97.814,0.761857,-1,-1,-1
38,-1,185.313,85.5667,39.625,75.6863,0.637234,-1,-1,-1
39,-1,293.167,67.4732,157.356,398.136,0.999105,-1,-1,-1
39,-1,71.7824,31.001,150.06,427.926,0.996976,-1,-1,-1
39,-1,457.523,190.803,26.939,76.195,0.976505,-1,-1,-1
39,-1,3.02059,119.376,50.0932,136.103,0.969057,-1,-1,-1
39,-1,419.029,174.804,43.777,96.11,0.867894,-1,-1,-1
39,-1,185.627,60.4956,48.598,160.133,0.838159,-1,-1,-1
39,-1,398.218,156.662,35.286,133.872,0.600682,-1,-1,-1
40,-1,73.9884,50.6654,162.062,419.203,0.997456,-1,-1,-1
40,-1,285.212,54.8919,170.445,424.108,0.996607,-1,-1,-1
40,-1,465.731,183.044,32.897,87.189,0.970853,-1,-1,-1
40,-1,2.26167,117.504,51.952,153.701,0.95601,-1,-1,-1
40,-1,181.372,64.6991,56.023,154.861,0.859241,-1,-1,-1
40,-1,437.427,178.601,32.345,88.728,0.846874,-1,-1,-1
40,-1,410.104,157.947,35.715,124.846,0.600519,-1,-1,-1
41,-1,65.889,28.8886,160.071,447.526,0.996301,-1,-1,-1
41,-1,287.896,62.7795,168.238,416.221,0.996043,-1,-1,-1
41,-1,0,116.095,57.6458,162.867,0.933744,-1,-1,-1
41,-1,177.931,61.2126,59.078,164.097,0.639193,-1,-1,-1
41,-1,426.656,169.102,41.452,96.478,0.624769,-1,-1,-1
42,-1,295.244,54.1391,146.491,424.861,0.997969,-1,-1,-1
42,-1,51.8221,43.4082,180.681,429.52,0.988091,-1,-1,-1
42,-1,0,109.315,48.2927,149.059,0.911538,-1,-1,-1
43,-1,295.259,52.9038,160.634,426.096,0.997904,-1,-1,-1
43,-1,47.8943,13.7152,177.018,454.186,0.989533,-1,-1,-1
43,-1,0,103.879,40.867,125.063,0.960266,-1,-1,-1
44,-1,288.073,50.1493,162.413,428.851,0.996646,-1,-1,-1
44,-1,41.3508,42.6263,189.183,417.975,0.992369,-1,-1,-1
44,-1,0.673355,109.836,39.3345,129.8,0.980317,-1,-1,-1
45,-1,293.307,41.8667,173.129,435.093,0.996035,-1,-1,-1
45,-1,33.1952,39.5139,200.015,424.529,0.990712,-1,-1,-1
45,-1,0.00868797,99.9478,38.9156,140.734,0.98344,-1,-1,-1
45,-1,170.245,55.9466,56.554,136.327,0.550508,-1,-1,-1
45,-1,274.525,180.522,41.442,68.41,0.514688,-1,-1,-1
46,-1,282.012,41.5065,179.644,430.717,0.998268,-1,-1,-1
46,-1,26.7381,28.7516,205.448,438.012,0.995063,-1,-1,-1
46,-1,2.24597,100.521,31.0567,129.939,0.864267,-1,-1,-1
47,-1,291.322,10.0638,160.385,468.936,0.997712,-1,-1,-1
47,-1,22.0837,24.3173,225.622,442.97,0.995526,-1,-1,-1
47,-1,2.08753,101.381,35.8448,133.005,0.906058,-1,-1,-1
47,-1,3.95176,60.1361,78.7722,391.686,0.700462,-1,-1,-1
48,-1,297.328,36.7374,168.21,442.263,0.996126,-1,-1,-1
48,-1,22.4664,13.2835,221.085,453.558,0.994463,-1,-1,-1
48,-1,3.11339,96.9655,31.0923,135.097,0.877822,-1,-1,-1
49,-1,301.134,32.3704,175.107,446.63,0.99382,-1,-1,-1
49,-1,22.6677,16.3613,222.809,448.693,0.992114,-1,-1,-1
49,-1,2.99732,101.556,30.9488,115.914,0.928281,-1,-1,-1
50,-1,13.0091,10.9045,219.701,462.947,0.995313,-1,-1,-1
50,-1,304.423,6.47984,171.456,472.52,0.989757,-1,-1,-1
50,-1,2.11063,99.0008,33.6729,128.554,0.904501,-1,-1,-1
51,-1,301.188,26.2972,166.707,452.703,0.997667,-1,-1,-1
51,-1,9.55779,15.8446,220.262,453.819,0.996942,-1,-1,-1
51,-1,5.26022,92.4231,39.9875,121.279,0.977065,-1,-1,-1
52,-1,297.685,17.2599,179.445,461.74,0.988101,-1,-1,-1
52,-1,17.5643,0,223.033,474.507,0.980219,-1,-1,-1
52,-1,3.07262,94.1418,37.463,119.116,0.873047,-1,-1,-1
53,-1,320.126,19.0436,157.328,459.956,0.990314,-1,-1,-1
53,-1,13.2054,0,224.279,477.524,0.990148,-1,-1,-1
53,-1,0.600519,90.7396,43.7147,112.159,0.928478,-1,-1,-1
53,-1,3.74478,82.534,69.1378,366.286,0.520325,-1,-1,-1
54,-1,321.586,11.8996,166.287,467.1,0.986099,-1,-1,-1
54,-1,20.309,0,218.954,469.899,0.98523,-1,-1,-1
54,-1,0.448452,92.7994,33.8479,133.184,0.901578,-1,-1,-1
55,-1,310.171,8.29276,186.819,468.378,0.997474,-1,-1,-1
55,-1,22.0885,0,223.599,470.097,0.982989,-1,-1,-1
55,-1,0,88.7962,34.1177,136.177,0.850455,-1,-1,-1
56,-1,315.303,12.2621,179.13,463.179,0.994032,-1,-1,-1
56,-1,9.11967,4.01868,227.417,466.327,0.993669,-1,-1,-1
56,-1,153.008,18.768,101.46,387.253,0.930702,-1,-1,-1
56,-1,0.290962,91.3779,40.8239,117.869,0.878843,-1,-1,-1
57,-1,312.298,0,188.229,479,0.989577,-1,-1,-1
57,-1,7.53352,8.84961,244.962,467.783,0.97588,-1,-1,-1
57,-1,0,83.8871,33.5186,135.261,0.747307,-1,-1,-1
57,-1,183.697,243.312,38.95,145.286,0.744118,-1,-1,-1
58,-1,5.01176,7.06541,247.702,470.305,0.985164,-1,-1,-1
58,-1,315.659,0,181.515,479,0.983536,-1,-1,-1
58,-1,0,87.4254,35.768,124.845,0.831017,-1,-1,-1
58,-1,136.582,20.1641,113.637,304.503,0.811281,-1,-1,-1
58,-1,184.46,263.085,38.234,132.088,0.591394,-1,-1,-1
59,-1,310.288,18.8311,222.439,460.169,0.987136,-1,-1,-1
59,-1,24.4875,14.3513,208.833,458.229,0.979593,-1,-1,-1
59,-1,0,86.0536,34.6779,132.782,0.842493,-1,-1,-1
59,-1,156.598,15.0929,98.228,322.47,0.770117,-1,-1,-1
59,-1,187.515,254.59,36.588,144.075,0.571907,-1,-1,-1
60,-1,26.9655,30.6938,219.059,422.067,0.98314,-1,-1,-1
60,-1,336.281,26.45,164.866,452.55,0.923095,-1,-1,-1
60,-1,0,85.8714,31.3092,128.473,0.824037,-1,-1,-1
61,-1,20.9039,26.4661,232.26,432.281,0.990547,-1,-1,-1
61,-1,299.217,18.6674,250.345,460.333,0.97103,-1,-1,-1
61,-1,155.371,10.1669,97.898,320.081,0.821085,-1,-1,-1
61,-1,0.283854,95.7493,27.218,85.0937,0.661336,-1,-1,-1
62,-1,20.4023,19.2779,241.676,431.814,0.992834,-1,-1,-1
62,-1,325.782,11.2902,230.692,467.71,0.980681,-1,-1,-1
62,-1,0.27822,87.9594,29.2957,117.815,0.797466,-1,-1,-1
63,-1,21.3428,13.3481,254.264,429.146,0.991933,-1,-1,-1
63,-1,316.923,11.7562,226.149,437.544,0.971802,-1,-1,-1
63,-1,0,94.9669,26.4637,85.7601,0.782448,-1,-1,-1
64,-1,20.6987,14.1704,255.782,435.393,0.991819,-1,-1,-1
64,-1,321.319,10.2148,221.881,468.785,0.978117,-1,-1,-1
64,-1,0.802954,82.6696,28.9037,126.507,0.846699,-1,-1,-1
64,-1,492.602,150.074,38.128,139.107,0.634666,-1,-1,-1
65,-1,21.0204,19.0503,256.893,423.328,0.985208,-1,-1,-1
65,-1,322.746,11.4977,211.744,467.502,0.984085,-1,-1,-1
65,-1,1.22202,95.1618,22.6908,85.1822,0.641772,-1,-1,-1
65,-1,498.405,133.758,32.57,153.701,0.587715,-1,-1,-1
66,-1,14.5695,16.9875,244.899,423.868,0.991836,-1,-1,-1
66,-1,328.959,0,211.438,479,0.986127,-1,-1,-1
66,-1,150.206,7.29547,111.783,291.544,0.667392,-1,-1,-1
67,-1,328.112,9.93623,217.845,469.064,0.994442,-1,-1,-1
67,-1,20.5163,18.968,238.623,427.636,0.990155,-1,-1,-1
68,-1,11.8221,17.119,266.363,425.672,0.990977,-1,-1,-1
68,-1,338.525,2.00247,208.418,476.998,0.987938,-1,-1,-1
69,-1,323.4,17.6657,220.846,461.334,0.9926,-1,-1,-1
69,-1,17.6703,21.4648,249.471,428.483,0.990149,-1,-1,-1
69,-1,293.548,173.478,23.648,69.527,0.736576,-1,-1,-1
70,-1,10.8017,17.7976,265.108,427.622,0.991804,-1,-1,-1
70,-1,327.332,14.2583,225.439,464.742,0.98723,-1,-1,-1
70,-1,294.986,184.513,28.92,70.801,0.922574,-1,-1,-1
71,-1,12.4441,22.3892,254.598,428.482,0.988335,-1,-1,-1
71,-1,336.155,0,209.949,479,0.973324,-1,-1,-1
71,-1,294.306,182.916,27.319,70.288,0.950913,-1,-1,-1
71,-1,157.167,1.17894,110.646,286.54,0.589023,-1,-1,-1
72,-1,319.937,15.1253,214.206,463.875,0.987516,-1,-1,-1
72,-1,13.2631,24.3451,260.607,424.199,0.981987,-1,-1,-1
72,-1,294.324,173.159,27.675,67.473,0.940358,-1,-1,-1
72,-1,502.616,164.052,28.552,142.78,0.753633,-1,-1,-1
72,-1,576.235,192.572,24.721,54.955,0.704353,-1,-1,-1
72,-1,8.45702,226.18,29.8723,157.633,0.676944,-1,-1,-1
73,-1,12.4583,23.7727,263.101,429.118,0.984823,-1,-1,-1
73,-1,321.436,10.9108,229.038,468.089,0.982861,-1,-1,-1
73,-1,293.527,175.495,28.169,60.583,0.911642,-1,-1,-1
73,-1,165.021,6.31778,104.162,299.285,0.701157,-1,-1,-1
73,-1,7.93367,221.714,30.2079,160.341,0.630082,-1,-1,-1
74,-1,30.8509,0,243.485,466.329,0.988168,-1,-1,-1
74,-1,327.881,11.2362,205.994,467.764,0.986183,-1,-1,-1
74,-1,293.296,174.349,29.562,63.115,0.881454,-1,-1,-1
74,-1,164.018,13.6432,105.613,301.452,0.810348,-1,-1,-1
74,-1,494.345,140.783,39.423,145.26,0.639646,-1,-1,-1
74,-1,8.41876,220.191,30.722,164.983,0.616585,-1,-1,-1
75,-1,25.9114,3.50014,244.471,455.56,0.99034,-1,-1,-1
75,-1,327.709,44.0951,203.738,433.463,0.970751,-1,-1,-1
75,-1,293.906,172.544,33.647,76.918,0.901361,-1,-1,-1
75,-1,163.655,12.606,110.329,303.091,0.887489,-1,-1,-1
76,-1,13.0134,16.7277,274.556,425.5,0.989128,-1,-1,-1
76,-1,322.066,15.5601,199.182,463.44,0.977208,-1,-1,-1
76,-1,293.435,174.025,44.89,97.539,0.899754,-1,-1,-1
76,-1,178.206,3.92491,96.348,374.431,0.881593,-1,-1,-1
77,-1,13.1763,19.5327,271.426,424.687,0.989793,-1,-1,-1
77,-1,341.09,0,174.447,479,0.878418,-1,-1,-1
77,-1,291.822,169.042,46.365,91.796,0.876371,-1,-1,-1
77,-1,164.036,14.6459,115.816,298.758,0.757005,-1,-1,-1
78,-1,13.4997,21.4225,269.436,428.358,0.987553,-1,-1,-1
78,-1,337.485,0,182.592,479,0.977012,-1,-1,-1
78,-1,295.858,172.299,39.382,88.541,0.83789,-1,-1,-1
78,-1,161.89,12.5013,113.876,306.247,0.537761,-1,-1,-1
79,-1,16.8091,20.0321,266.553,423.774,0.988924,-1,-1,-1
79,-1,313.521,58.0164,212.945,416.302,0.944656,-1,-1,-1
79,-1,291.234,173.378,35.59,89.995,0.917861,-1,-1,-1
80,-1,16.2297,24.4833,257.847,423.583,0.984826,-1,-1,-1
80,-1,317.354,14.829,208.291,464.171,0.947139,-1,-1,-1
80,-1,165.677,11.6657,112.718,320.552,0.927968,-1,-1,-1
80,-1,291.743,177.755,34.529,57.577,0.922881,-1,-1,-1
80,-1,369.666,24.7724,221.919,205.143,0.553227,-1,-1,-1
80,-1,0.605787,86.0097,24.6959,69.0983,0.511437,-1,-1,-1
81,-1,18.1331,26.0676,248.697,428.295,0.987784,-1,-1,-1
81,-1,310.471,30.5833,203.718,448.417,0.965937,-1,-1,-1
81,-1,0.453978,94.9546,25.2894,85.6034,0.807269,-1,-1,-1
81,-1,164.629,6.84773,112.897,326.944,0.802592,-1,-1,-1
81,-1,364.238,20.4785,223.07,215.816,0.551054,-1,-1,-1
82,-1,38.1851,23.3506,230.492,429.425,0.988827,-1,-1,-1
82,-1,297.245,31.6626,234.77,447.337,0.984855,-1,-1,-1
82,-1,1.26879,81.4925,25.5772,123.529,0.821416,-1,-1,-1
82,-1,371.539,26.4873,211.575,195.026,0.670207,-1,-1,-1
83,-1,27.6094,21.3799,233.547,429.617,0.986723,-1,-1,-1
83,-1,293.395,61.0777,220.163,417.922,0.87015,-1,-1,-1
84,-1,146.961,18.3995,125.411,406.139,0.99058,-1,-1,-1
84,-1,319.797,18.8065,201.969,460.193,0.963197,-1,-1,-1
84,-1,410.671,24.3526,184.343,225.838,0.521187,-1,-1,-1
85,-1,27.5662,21.3763,241.658,424.709,0.992265,-1,-1,-1
85,-1,327.818,5.93585,188.46,473.064,0.952616,-1,-1,-1
86,-1,26.1686,19.4562,245.019,427.195,0.991876,-1,-1,-1
86,-1,311.352,30.1625,212.526,448.837,0.987525,-1,-1,-1
86,-1,2.01939,83.273,23.6294,130.968,0.659025,-1,-1,-1
86,-1,502.623,164.862,41.507,113.987,0.646803,-1,-1,-1
87,-1,309.206,0,212.105,479,0.986536,-1,-1,-1
87,-1,19.7063,22.016,249.961,436.028,0.985863,-1,-1,-1
87,-1,503.206,155.249,26.733,134.785,0.727158,-1,-1,-1
88,-1,28.1979,22.7119,248.073,428.363,0.993531,-1,-1,-1
88,-1,317.228,38.6055,211.827,440.394,0.947071,-1,-1,-1
88,-1,2.15927,81.8432,24.4201,126.901,0.678924,-1,-1,-1
89,-1,23.7667,25.4864,248.345,431.584,0.992819,-1,-1,-1
89,-1,318.856,8.53812,221.205,470.462,0.973772,-1,-1,-1
89,-1,2.21868,85.745,23.3608,116.947,0.583027,-1,-1,-1
90,-1,22.4412,20.1816,264.419,440.279,0.994061,-1,-1,-1
90,-1,329.043,1.08247,197.608,477.918,0.989139,-1,-1,-1
90,-1,1.92902,224.675,30.451,154.164,0.642794,-1,-1,-1
91,-1,20.7023,22.3996,266.77,430.161,0.99327,-1,-1,-1
91,-1,326.854,14.097,205.197,464.903,0.98271,-1,-1,-1
92,-1,35.0011,0,227.873,467.343,0.993323,-1,-1,-1
92,-1,314.286,20.3847,234.978,458.615,0.988371,-1,-1,-1
92,-1,596.217,180.619,40.113,78.919,0.962526,-1,-1,-1
92,-1,301.547,170.738,31.834,86.224,0.862877,-1,-1,-1
93,-1,22.5339,21.9463,266.911,432.584,0.992455,-1,-1,-1
93,-1,320.912,43.5061,210.541,435.494,0.98144,-1,-1,-1
93,-1,556.962,174.316,55.178,85.371,0.958087,-1,-1,-1
93,-1,289.091,176.414,32.478,78.829,0.921447,-1,-1,-1
93,-1,276.208,184.071,27.132,65.499,0.578341,-1,-1,-1
94,-1,19.9212,24.3831,262.092,433.657,0.992183,-1,-1,-1
94,-1,313.482,0,229.314,479,0.981729,-1,-1,-1
94,-1,288.902,176.019,35.38,82.302,0.94557,-1,-1,-1
94,-1,274.376,180.59,28.179,69.628,0.701971,-1,-1,-1
94,-1,0.994462,93.9094,24.881,73.0686,0.606509,-1,-1,-1
95,-1,23.2068,24.3648,257.964,431.1,0.991719,-1,-1,-1
95,-1,321.175,0,222.311,479,0.982234,-1,-1,-1
95,-1,297.559,171.936,34.092,91.306,0.911452,-1,-1,-1
95,-1,272.355,185.822,24.921,64.364,0.649485,-1,-1,-1
96,-1,135.829,17.1454,133.033,421.013,0.989196,-1,-1,-1
96,-1,323.834,13.0587,204.449,465.941,0.974517,-1,-1,-1
96,-1,289.76,176.778,32.153,82.241,0.951441,-1,-1,-1
97,-1,309.579,14.8777,236.183,464.122,0.991617,-1,-1,-1
97,-1,32.997,0,227.62,460.521,0.987206,-1,-1,-1
97,-1,291.738,178.395,32.589,82.145,0.946964,-1,-1,-1
98,-1,45.1106,12.0766,218.751,448.712,0.986556,-1,-1,-1
98,-1,322.528,17.8535,208.168,452.438,0.984492,-1,-1,-1
98,-1,281.808,177.34,34.968,77.602,0.918818,-1,-1,-1
98,-1,300.832,172.183,47.276,97.176,0.523537,-1,-1,-1
99,-1,325.332,21.3287,212.97,452.138,0.984339,-1,-1,-1
99,-1,158.974,20.2691,112.151,414.482,0.979787,-1,-1,-1
99,-1,288.343,172.474,41.173,90.694,0.922622,-1,-1,-1
100,-1,175.646,16.9748,103.686,407.705,0.983449,-1,-1,-1
100,-1,311.368,0,235.193,479,0.983378,-1,-1,-1
100,-1,20.0594,21.9882,225.406,434.655,0.977781,-1,-1,-1
100,-1,291.368,183.872,35.694,75.745,0.888857,-1,-1,-1
101,-1,172.694,32.9001,110.311,391.403,0.993623,-1,-1,-1
101,-1,8.52946,11.9645,252.346,460.881,0.981286,-1,-1,-1
101,-1,315.362,39.6224,211.857,439.378,0.97118,-1,-1,-1
101,-1,289.2,164.7,37.456,86.32,0.609814,-1,-1,-1
102,-1,181.07,26.1683,103.819,403.973,0.986277,-1,-1,-1
102,-1,339.668,0.546356,198.906,478.454,0.983132,-1,-1,-1
102,-1,17.1337,0,234.234,468.157,0.982962,-1,-1,-1
103,-1,174.567,26.1423,110.193,390.298,0.990567,-1,-1,-1
103,-1,26.5753,0,233.989,461.65,0.987386,-1,-1,-1
103,-1,341.922,0,191.34,476.854,0.975791,-1,-1,-1
103,-1,286.051,175.355,40.853,87.105,0.597151,-1,-1,-1
104,-1,184.745,29.8496,104.946,390.01,0.989259,-1,-1,-1
104,-1,322.907,13.1341,203.943,465.866,0.980619,-1,-1,-1
104,-1,9.84929,0,238.438,466.036,0.978822,-1,-1,-1
104,-1,286.093,168.587,37.443,94.895,0.80848,-1,-1,-1
105,-1,183.358,30.807,103.222,388.759,0.990001,-1,-1,-1
105,-1,338.214,0,196.605,479,0.977511,-1,-1,-1
105,-1,32.4071,9.66205,212.849,450.875,0.970721,-1,-1,-1
105,-1,293.024,170.168,30.735,65.344,0.890594,-1,-1,-1
106,-1,26.7463,0,232.36,464.77,0.990764,-1,-1,-1
106,-1,183.997,36.4025,96.971,381.145,0.984322,-1,-1,-1
106,-1,330.224,22.5425,209.644,456.457,0.96902,-1,-1,-1
106,-1,286.943,174.905,39.819,81.865,0.894567,-1,-1,-1
107,-1,178.473,15.5577,99.864,409.255,0.991828,-1,-1,-1
107,-1,9.21988,0,256.114,465.478,0.973999,-1,-1,-1
107,-1,332.67,0,210.554,479,0.973581,-1,-1,-1
107,-1,289.488,177.678,40.979,83.455,0.9631,-1,-1,-1
108,-1,181.541,26.2236,98.387,399.886,0.989604,-1,-1,-1
108,-1,24.0256,0,228.223,464.402,0.987574,-1,-1,-1
108,-1,312.092,3.58875,241.99,475.411,0.976045,-1,-1,-1
108,-1,281.58,181.165,37.78,78.024,0.933586,-1,-1,-1
109,-1,190.486,33.135,98.845,392.132,0.99531,-1,-1,-1
109,-1,19.3533,0,242.979,462.882,0.987589,-1,-1,-1
109,-1,334.069,11.801,212.825,467.199,0.97672,-1,-1,-1
109,-1,286.945,172.731,40.604,95.821,0.948,-1,-1,-1
110,-1,190.562,33.7537,99.741,396.04,0.996351,-1,-1,-1
110,-1,28.1325,0,239.904,459.694,0.988068,-1,-1,-1
110,-1,332.217,37.0197,180.703,441.98,0.941702,-1,-1,-1
110,-1,290.233,176.388,39.269,84.316,0.905331,-1,-1,-1
111,-1,188.61,38.585,103.445,387.814,0.996528,-1,-1,-1
111,-1,14.6836,0,251.036,465.503,0.988953,-1,-1,-1
111,-1,342.032,5.1732,191.123,473.827,0.974365,-1,-1,-1
111,-1,288.671,171.802,39.36,95.602,0.950694,-1,-1,-1
112,-1,186.73,36.1944,95.248,390.009,0.992239,-1,-1,-1
112,-1,23.5153,0,239.013,464.815,0.984784,-1,-1,-1
112,-1,291.598,182.968,32.678,79.397,0.974966,-1,-1,-1
112,-1,330.109,54.1306,194.773,424.869,0.951866,-1,-1,-1
113,-1,22.2966,5.92723,245.051,450.611,0.991231,-1,-1,-1
113,-1,314.928,31.6642,214.351,447.336,0.973409,-1,-1,-1
113,-1,191.835,12.1536,87.759,425.572,0.784406,-1,-1,-1
114,-1,173.188,12.5888,108.085,423.898,0.989761,-1,-1,-1
114,-1,308.43,57.1693,219.551,421.831,0.970176,-1,-1,-1
114,-1,1.72827,0,257.674,473.573,0.938124,-1,-1,-1
115,-1,172.333,26.1623,111.37,402.263,0.99302,-1,-1,-1
115,-1,319.877,4.02454,244.036,474.975,0.91237,-1,-1,-1
115,-1,0,0,253.415,478.028,0.854842,-1,-1,-1
116,-1,172.958,14.985,109.334,420.966,0.988954,-1,-1,-1
116,-1,296.707,32.8752,253.858,446.125,0.956968,-1,-1,-1
116,-1,2.8609,17.5419,259.155,451.633,0.950814,-1,-1,-1
117,-1,177.816,10.6033,106.767,425.617,0.990057,-1,-1,-1
117,-1,322.83,14.0107,184.807,464.989,0.973838,-1,-1,-1
117,-1,1.62756,0,256.622,476.884,0.784112,-1,-1,-1
118,-1,167.779,25.0667,115.975,402.589,0.992938,-1,-1,-1
118,-1,317.26,6.81895,218.029,472.181,0.956883,-1,-1,-1
118,-1,6.7784,17.5525,244.368,375.173,0.615649,-1,-1,-1
119,-1,294.628,33.7746,247.637,445.225,0.986609,-1,-1,-1
119,-1,33.1375,0,247.219,464.92,0.984782,-1,-1,-1
119,-1,163.825,21.7853,122.051,254.959,0.962134,-1,-1,-1
119,-1,504.791,155.585,27.507,126.562,0.856226,-1,-1,-1
120,-1,55.0397,0,226.28,465.634,0.982789,-1,-1,-1
120,-1,305.639,13.5947,218.446,465.405,0.976829,-1,-1,-1
120,-1,181.372,20.1976,109.347,321.795,0.882434,-1,-1,-1
120,-1,506.031,174.543,25.533,112.882,0.86324,-1,-1,-1
121,-1,322.669,23.1995,204.275,455.8,0.980262,-1,-1,-1
121,-1,172.367,19.5224,109.96,405.337,0.969222,-1,-1,-1
121,-1,12.1744,6.54744,251.474,472.453,0.859198,-1,-1,-1
121,-1,506.02,175.298,24.361,108.317,0.828153,-1,-1,-1
122,-1,317.225,6.03456,215.046,472.965,0.988768,-1,-1,-1
122,-1,169.693,26.6155,111.948,385.471,0.972357,-1,-1,-1
122,-1,503.064,158.422,27.157,125.682,0.845345,-1,-1,-1
122,-1,6.36349,19.2843,249.792,459.716,0.822263,-1,-1,-1
123,-1,330.476,30.4505,196.734,448.55,0.991547,-1,-1,-1
123,-1,32.2496,0,249.558,467.421,0.973904,-1,-1,-1
123,-1,297.538,174.077,38.821,95.889,0.921724,-1,-1,-1
123,-1,501.813,164.03,29.456,129.703,0.828371,-1,-1,-1
123,-1,197.657,16.1631,94.578,423.444,0.743661,-1,-1,-1
124,-1,26.6881,0,250.245,469.205,0.990443,-1,-1,-1
124,-1,324.099,32.2557,202.721,446.744,0.986464,-1,-1,-1
124,-1,290.838,175.908,37.503,88.244,0.980327,-1,-1,-1
124,-1,501.448,164.888,29.115,127.822,0.824453,-1,-1,-1
124,-1,179.935,42.5396,104.529,354.362,0.778016,-1,-1,-1
125,-1,326.312,38.4522,201.14,440.548,0.987184,-1,-1,-1
125,-1,287.858,175.216,42.554,95.12,0.974655,-1,-1,-1
125,-1,170.58,12.5598,113.085,416.09,0.965997,-1,-1,-1
125,-1,504.989,166.388,26.98,116.609,0.856758,-1,-1,-1
125,-1,9.93273,0,246.611,478.633,0.552304,-1,-1,-1
126,-1,28.0807,0,254.471,470.471,0.984971,-1,-1,-1
126,-1,315.13,70.9205,201.607,408.079,0.980519,-1,-1,-1
126,-1,289.306,174.773,39.726,84.567,0.956163,-1,-1,-1
126,-1,504.988,163.359,26.114,118.016,0.842238,-1,-1,-1
126,-1,199.818,26.3415,51.823,87.6815,0.527937,-1,-1,-1
127,-1,327.701,27.9878,198.347,451.012,0.98601,-1,-1,-1
127,-1,29.8332,0,242.336,472.641,0.973026,-1,-1,-1
127,-1,290.401,176.157,39.93,92.566,0.964175,-1,-1,-1
127,-1,503.696,162.593,25.53,117.49,0.833001,-1,-1,-1
127,-1,201.355,32.3827,43.384,56.1611,0.715404,-1,-1,-1
128,-1,24.1693,0,258.284,472.873,0.982169,-1,-1,-1
128,-1,320.492,15.212,217.568,463.788,0.975817,-1,-1,-1
128,-1,290.219,176.331,40.045,92.422,0.959386,-1,-1,-1
128,-1,504.886,163.687,25.612,117.075,0.852525,-1,-1,-1
128,-1,199.362,33.3138,44.369,59.559,0.640912,-1,-1,-1
129,-1,324.828,22.7608,199.415,453.364,0.992661,-1,-1,-1
129,-1,20.4963,0,277.79,477.358,0.973927,-1,-1,-1
129,-1,289.548,177.924,40.368,92.692,0.962959,-1,-1,-1
129,-1,503.55,156.497,26.461,128.192,0.819266,-1,-1,-1
129,-1,201.86,42.6936,35.904,49.2123,0.673962,-1,-1,-1
130,-1,329.764,37.4245,191.884,441.575,0.991417,-1,-1,-1
130,-1,33.2906,0,234.512,470.535,0.980218,-1,-1,-1
130,-1,287.726,175.777,41.318,93.276,0.957697,-1,-1,-1
130,-1,504.14,161.595,26.598,121.369,0.836453,-1,-1,-1
130,-1,199.015,36.2754,42.019,55.9904,0.697886,-1,-1,-1
131,-1,32.0115,21.7325,258.293,440.037,0.99271,-1,-1,-1
131,-1,327.138,25.8533,195.21,453.147,0.990321,-1,-1,-1
131,-1,291.303,177.376,36.59,83.855,0.948077,-1,-1,-1
131,-1,205.688,39.8951,41.712,60.0543,0.734553,-1,-1,-1
131,-1,503.365,154.501,27.012,130.525,0.662467,-1,-1,-1
132,-1,326.112,25.5703,207.914,453.43,0.994485,-1,-1,-1
132,-1,31.6136,18.5768,260.488,442.455,0.989866,-1,-1,-1
132,-1,289.852,174.153,37.284,82.123,0.970987,-1,-1,-1
132,-1,499.561,157.575,33.481,117.201,0.796379,-1,-1,-1
133,-1,16.5512,0,255.807,468.815,0.989921,-1,-1,-1
133,-1,321.714,18.7969,212.309,460.203,0.988761,-1,-1,-1
133,-1,289.946,179.12,40.774,85.995,0.969893,-1,-1,-1
133,-1,186.183,25.9049,94.857,411.464,0.852119,-1,-1,-1
133,-1,498.402,151.783,35.333,126.331,0.730918,-1,-1,-1
133,-1,199.59,34.3362,53.532,81.6838,0.665676,-1,-1,-1
134,-1,327.452,0,198.76,479,0.995833,-1,-1,-1
134,-1,26.2298,0,247.651,472.09,0.977525,-1,-1,-1
134,-1,289.943,174.896,38.28,84.896,0.971029,-1,-1,-1
134,-1,498.148,154.338,36.496,126.7,0.710921,-1,-1,-1
134,-1,194.689,29.2434,60.1,104.033,0.583775,-1,-1,-1
135,-1,318.168,66.4841,208.909,412.516,0.987062,-1,-1,-1
135,-1,172.856,19.6493,107.975,407.044,0.982069,-1,-1,-1
135,-1,289.675,177.052,35.031,88.151,0.966115,-1,-1,-1
135,-1,498.523,153.449,33.322,129.769,0.693767,-1,-1,-1
135,-1,60.6477,36.9922,371.004,383.572,0.549484,-1,-1,-1
136,-1,327.728,0,203.045,479,0.994517,-1,-1,-1
136,-1,33.4085,20.0791,244.637,438.94,0.986294,-1,-1,-1
136,-1,290.145,176.372,31.989,84.229,0.956969,-1,-1,-1
136,-1,181.331,19.059,104.814,335.388,0.7091,-1,-1,-1
136,-1,501.394,151.112,26.368,137.383,0.519786,-1,-1,-1
137,-1,41.5576,6.02505,237.157,456.717,0.98831,-1,-1,-1
137,-1,317.789,0,223.573,479,0.985642,-1,-1,-1
137,-1,291.255,175.12,32.32,88.107,0.957644,-1,-1,-1
137,-1,498.716,152.538,32.774,128.237,0.596225,-1,-1,-1
138,-1,314.373,15.1509,222.719,463.849,0.995623,-1,-1,-1
138,-1,37.9175,27.1442,236.102,431.514,0.988519,-1,-1,-1
138,-1,291.094,173.814,35.296,83.21,0.924037,-1,-1,-1
138,-1,188.119,57.535,100.804,371.969,0.82514,-1,-1,-1
138,-1,498.854,156.573,30.416,121.833,0.672709,-1,-1,-1
139,-1,324.173,43.9759,196.426,435.024,0.991104,-1,-1,-1
139,-1,181.451,21.6629,108.527,396.995,0.988242,-1,-1,-1
139,-1,1.24976,20.3899,240.233,458.61,0.980092,-1,-1,-1
139,-1,292.232,174.868,31.668,79.483,0.933294,-1,-1,-1
139,-1,498.187,153.656,33.016,124.39,0.771515,-1,-1,-1
140,-1,182.87,28.436,104.808,399.348,0.990055,-1,-1,-1
140,-1,12.1521,1.80348,236.013,468.192,0.988033,-1,-1,-1
140,-1,320.232,22.5272,207.718,456.473,0.987139,-1,-1,-1
140,-1,290.714,172.289,33.91,80.508,0.972514,-1,-1,-1
140,-1,499.342,155.698,32.042,123.232,0.785992,-1,-1,-1
141,-1,173.757,17.7591,111.041,414.181,0.991753,-1,-1,-1
141,-1,18.025,15.5265,241.663,454.551,0.987096,-1,-1,-1
141,-1,329.326,13.0376,197.016,465.962,0.981313,-1,-1,-1
141,-1,289.737,173.18,35.105,81.887,0.968014,-1,-1,-1
141,-1,503.993,168.939,27.707,110.467,0.895485,-1,-1,-1
141,-1,188.195,280.303,30.698,108.783,0.767848,-1,-1,-1
142,-1,172.479,30.4673,115.77,388.846,0.996655,-1,-1,-1
142,-1,323.159,34.6405,203.287,444.36,0.994615,-1,-1,-1
142,-1,13.8258,22.4825,245.371,447.298,0.979653,-1,-1,-1
142,-1,290.196,171.068,35.015,86.481,0.962811,-1,-1,-1
142,-1,503.532,164.302,28.696,118.191,0.876113,-1,-1,-1
143,-1,181.224,13.8477,105.703,406.856,0.991133,-1,-1,-1
143,-1,322.608,40.1296,207.368,438.87,0.984482,-1,-1,-1
143,-1,18.2709,18.0704,229.263,447.402,0.984186,-1,-1,-1
143,-1,289.795,173.992,34.499,85.916,0.961873,-1,-1,-1
143,-1,505.779,171.332,28.759,101.63,0.850817,-1,-1,-1
144,-1,173.313,23.8941,114.227,397.625,0.993628,-1,-1,-1
144,-1,315.596,23.0715,216.362,455.928,0.991562,-1,-1,-1
144,-1,22.9454,20.4547,224.612,441.234,0.982759,-1,-1,-1
144,-1,290.745,172.827,36.574,86.26,0.962476,-1,-1,-1
144,-1,503.697,163.318,27.564,117.143,0.817741,-1,-1,-1
145,-1,174.099,35.6616,117.327,390.85,0.99328,-1,-1,-1
145,-1,319.244,0,225.985,479,0.987621,-1,-1,-1
145,-1,14.1459,0,230.009,474.744,0.969701,-1,-1,-1
145,-1,292.058,172.999,33.365,86.572,0.942724,-1,-1,-1
146,-1,328.734,20.1095,217.7,458.89,0.992743,-1,-1,-1
146,-1,170.608,30.3182,117.644,398.673,0.990189,-1,-1,-1
146,-1,23.0404,18.8782,223.013,446.329,0.983868,-1,-1,-1
146,-1,292.307,170.348,34.355,85.037,0.914093,-1,-1,-1
147,-1,171.187,33.8565,117.597,391.478,0.992021,-1,-1,-1
147,-1,330.299,0,241.129,479,0.969578,-1,-1,-1
147,-1,11.4375,38.5804,218.768,434.702,0.951147,-1,-1,-1
147,-1,292.757,175.313,28.742,75.276,0.865379,-1,-1,-1
148,-1,320.962,41.148,205.643,437.852,0.991119,-1,-1,-1
148,-1,25.4464,15.7082,243.453,449.842,0.990566,-1,-1,-1
148,-1,289.942,177.861,28.977,71.507,0.96196,-1,-1,-1
148,-1,192.908,30.8122,94.814,400.692,0.930341,-1,-1,-1
149,-1,327.8,10.6874,220.817,468.313,0.993361,-1,-1,-1
149,-1,172.003,17.4419,111.695,408.064,0.988658,-1,-1,-1
149,-1,7.12576,19.0523,244.064,454.428,0.983527,-1,-1,-1
149,-1,290.089,175.614,28.927,72.464,0.956624,-1,-1,-1
150,-1,332.216,0,204.25,479,0.990428,-1,-1,-1
150,-1,27.6422,29.8312,247.087,426.483,0.989689,-1,-1,-1
150,-1,193.756,47.5297,91.889,382.674,0.884349,-1,-1,-1
150,-1,287.211,182.411,35.251,97.784,0.777958,-1,-1,-1
151,-1,7.40211,18.7448,241.958,454.218,0.989857,-1,-1,-1
151,-1,307.952,40.6238,212.646,438.376,0.965553,-1,-1,-1
151,-1,179.051,12.5163,104.087,410.382,0.937363,-1,-1,-1
152,-1,35.8248,29.3409,236.031,427.839,0.983552,-1,-1,-1
152,-1,323.097,0,235.149,479,0.973939,-1,-1,-1
152,-1,178.826,17.8991,105.123,333.151,0.672177,-1,-1,-1
153,-1,318.227,15.2258,224.29,463.774,0.990088,-1,-1,-1
153,-1,37.2716,28.7481,230.635,433.463,0.976926,-1,-1,-1
153,-1,165.603,18.2369,119.299,308.019,0.916682,-1,-1,-1
154,-1,310.191,11.0385,211.708,467.962,0.980379,-1,-1,-1
154,-1,13.9491,21.1485,251.956,448.579,0.976247,-1,-1,-1
154,-1,178.821,24.076,102.181,396.4,0.941393,-1,-1,-1
154,-1,496.485,156.221,33.015,130.163,0.871847,-1,-1,-1
155,-1,7.80431,3.77856,247.151,466.558,0.981777,-1,-1,-1
155,-1,319.095,0.479691,226.185,478.52,0.971254,-1,-1,-1
155,-1,169.744,28.955,106.925,398.747,0.927752,-1,-1,-1
155,-1,495.721,152.647,34.224,129.969,0.914365,-1,-1,-1
156,-1,316.905,7.62115,215.734,471.379,0.985206,-1,-1,-1
156,-1,35.7287,18.3941,234.055,439.66,0.974019,-1,-1,-1
156,-1,170.213,22.5841,112.768,293.207,0.934686,-1,-1,-1
156,-1,506.168,162.667,22.654,117.062,0.876701,-1,-1,-1
157,-1,302.931,6.41843,216.692,472.582,0.994911,-1,-1,-1
157,-1,37.3219,22.2166,231.953,434.442,0.979483,-1,-1,-1
157,-1,500.963,159.1,29.923,123.285,0.919831,-1,-1,-1
157,-1,170.467,18.8742,110.314,302.745,0.884442,-1,-1,-1
158,-1,310.377,1.84233,219.432,477.158,0.995277,-1,-1,-1
158,-1,178.706,18.1059,115.12,404.033,0.96552,-1,-1,-1
158,-1,13.8912,17.1936,239.888,446.058,0.964078,-1,-1,-1
158,-1,499.249,147.24,34.378,132.105,0.924037,-1,-1,-1
158,-1,575.878,4.28472,63.122,236.569,0.859471,-1,-1,-1
159,-1,303.63,8.1143,212.971,470.886,0.996697,-1,-1,-1
159,-1,35.3538,15.5257,237.182,441.243,0.977738,-1,-1,-1
159,-1,499.905,157.187,29.536,123.595,0.928364,-1,-1,-1
159,-1,172.776,24.9894,109.991,306.962,0.869448,-1,-1,-1
159,-1,568.539,4.00845,70.461,232.891,0.770491,-1,-1,-1
160,-1,309.536,19.0588,209.849,459.941,0.995023,-1,-1,-1
160,-1,500.128,175.866,29.643,101.586,0.980978,-1,-1,-1
160,-1,29.2402,15.8388,231.623,440.329,0.978387,-1,-1,-1
160,-1,182.941,4.12109,102.55,427.914,0.950047,-1,-1,-1
160,-1,579.366,10.8047,59.634,104.277,0.890813,-1,-1,-1
161,-1,307.065,10.6855,204.368,468.315,0.996184,-1,-1,-1
161,-1,33.3722,0,230.771,457.938,0.985429,-1,-1,-1
161,-1,506.029,190.837,22.702,84.689,0.983943,-1,-1,-1
161,-1,164.44,24.0782,117.83,308.595,0.943948,-1,-1,-1
161,-1,582.935,0,56.065,115.094,0.69068,-1,-1,-1
162,-1,305.024,14.6414,216.823,464.359,0.996732,-1,-1,-1
162,-1,171.208,23.5342,112.996,397.7,0.985254,-1,-1,-1
162,-1,506.814,189.508,23.078,84.786,0.981125,-1,-1,-1
162,-1,577.248,3.85849,61.752,238.223,0.766937,-1,-1,-1
162,-1,1.37357,13.8057,245.824,450.549,0.735801,-1,-1,-1
163,-1,299.085,14.0262,212.042,464.974,0.996825,-1,-1,-1
163,-1,18.6148,0,252.168,467.555,0.985732,-1,-1,-1
163,-1,506.18,185.702,25.065,84.408,0.976315,-1,-1,-1
163,-1,162.201,11.0751,124.661,331.961,0.878063,-1,-1,-1
164,-1,296.722,11.5964,209.116,467.404,0.993466,-1,-1,-1
164,-1,32.6668,23.7726,242.885,409.321,0.991145,-1,-1,-1
164,-1,504.809,181.622,24.571,86.773,0.979517,-1,-1,-1
165,-1,294.768,12.0907,222.736,466.909,0.996233,-1,-1,-1
165,-1,26.2637,0,258.415,452.103,0.990506,-1,-1,-1
165,-1,505.454,184.772,25.953,81.009,0.982923,-1,-1,-1
165,-1,138.722,21.2086,135.273,253.013,0.616424,-1,-1,-1
166,-1,293.899,10.0636,215.933,468.936,0.994535,-1,-1,-1
166,-1,30.7782,0,251.242,457.57,0.990204,-1,-1,-1
166,-1,504.457,188.103,26.995,82.42,0.974584,-1,-1,-1
166,-1,586.139,5.02647,52.233,138.064,0.757628,-1,-1,-1
166,-1,152.028,15.0076,128.091,263.298,0.582323,-1,-1,-1
167,-1,296.898,0.909988,210.268,478.09,0.993229,-1,-1,-1
167,-1,162.11,11.8399,121.909,418.227,0.990995,-1,-1,-1
167,-1,498.291,182.399,33.971,96.254,0.975594,-1,-1,-1
167,-1,550.57,202.395,33.641,35.906,0.751513,-1,-1,-1
168,-1,301.546,5.85634,218.073,473.144,0.993175,-1,-1,-1
168,-1,163.316,15.9456,111.58,401.988,0.988474,-1,-1,-1
168,-1,493.915,186.18,32.814,77.975,0.982352,-1,-1,-1
168,-1,550.9,205.381,33.776,35.138,0.706482,-1,-1,-1
168,-1,0,20.0395,232.672,403.593,0.582318,-1,-1,-1
169,-1,295.784,0,229.756,479,0.995903,-1,-1,-1
169,-1,22.0136,0,258.627,458.013,0.992352,-1,-1,-1
169,-1,504.431,193.74,26.584,80.684,0.987674,-1,-1,-1
170,-1,283.148,13.8215,241.993,465.178,0.996957,-1,-1,-1
170,-1,30.2681,0,244.562,458.046,0.98964,-1,-1,-1
170,-1,502.9,188.735,26.387,80.231,0.986752,-1,-1,-1
171,-1,255.836,10.9433,248.908,468.057,0.994079,-1,-1,-1
171,-1,21.7659,0,253,465.019,0.983715,-1,-1,-1
172,-1,252.75,1.65236,260.8,477.348,0.992471,-1,-1,-1
172,-1,21.8975,0,251.102,461.645,0.985359,-1,-1,-1
172,-1,167.951,8.68796,113.826,306.591,0.747484,-1,-1,-1
173,-1,297.855,0,204.544,479,0.98756,-1,-1,-1
173,-1,26.3742,6.58379,258.305,435.75,0.986154,-1,-1,-1
174,-1,284.585,0,223.718,479,0.989366,-1,-1,-1
174,-1,44.6513,14.7675,223.765,440.54,0.98672,-1,-1,-1
175,-1,20.4095,0,252.6,462.851,0.984065,-1,-1,-1
175,-1,259.327,5.74277,261.843,473.257,0.979136,-1,-1,-1
176,-1,289.827,0,225.905,479,0.992546,-1,-1,-1
176,-1,166.369,17.2402,119.239,415.17,0.988564,-1,-1,-1
177,-1,294.812,4.26122,221.888,474.739,0.992366,-1,-1,-1
177,-1,162.07,14.9834,114.467,386.142,0.987188,-1,-1,-1
178,-1,505.631,183.454,26.869,87.091,0.986679,-1,-1,-1
178,-1,17.7535,24.8968,267.523,429.831,0.97862,-1,-1,-1
178,-1,291.943,0,218.414,479,0.977254,-1,-1,-1
178,-1,545.725,202.217,26.013,46.509,0.849062,-1,-1,-1
178,-1,155.372,12.3282,116.685,280.771,0.644333,-1,-1,-1
179,-1,20.7898,21.7981,247.104,418.824,0.98599,-1,-1,-1
179,-1,299.198,0,212.816,479,0.976566,-1,-1,-1
179,-1,506.185,186.824,22.188,79.652,0.970173,-1,-1,-1
179,-1,545.376,213.204,22.677,26.547,0.874062,-1,-1,-1
179,-1,162.004,12.119,123.128,279.661,0.777317,-1,-1,-1
180,-1,268.371,7.80226,245.534,471.198,0.98723,-1,-1,-1
180,-1,26.2713,0,251.443,464.626,0.985174,-1,-1,-1
180,-1,504.883,184.798,25.067,88.084,0.980941,-1,-1,-1
180,-1,163.597,16.5667,122.757,282.18,0.794497,-1,-1,-1
180,-1,545.71,213.067,20.649,29.704,0.517333,-1,-1,-1
181,-1,288.791,0,224.46,479,0.98985,-1,-1,-1
181,-1,25.6827,0,251.022,464.015,0.984771,-1,-1,-1
181,-1,505.418,189.442,27.733,84.717,0.981468,-1,-1,-1
181,-1,157.942,19.3749,124.16,271.162,0.840157,-1,-1,-1
181,-1,492.632,160.958,29.451,137.365,0.61911,-1,-1,-1
181,-1,546.286,209.074,19.947,31.908,0.583204,-1,-1,-1
182,-1,298.249,0.118866,221.827,478.881,0.992653,-1,-1,-1
182,-1,162.954,21.0361,123.112,412.485,0.99018,-1,-1,-1
182,-1,495.716,175.582,33.793,103.68,0.964936,-1,-1,-1
183,-1,302.366,4.86127,220.95,474.139,0.993363,-1,-1,-1
183,-1,163.867,19.2714,122.279,422.802,0.989222,-1,-1,-1
183,-1,504.003,184.901,25.807,85.014,0.980027,-1,-1,-1
183,-1,546.715,202.25,19.912,48.91,0.546293,-1,-1,-1
184,-1,284.013,10.4915,239.77,468.509,0.997153,-1,-1,-1
184,-1,166.835,20.8171,118.778,414.985,0.99042,-1,-1,-1
184,-1,499.025,181.715,33.208,102.175,0.966665,-1,-1,-1
184,-1,545.033,203.795,20.705,52.275,0.710051,-1,-1,-1
185,-1,288.934,5.81163,238.375,473.188,0.997038,-1,-1,-1
185,-1,25.1522,0,252.95,457.33,0.992902,-1,-1,-1
185,-1,504.796,181.007,27.481,93.774,0.975559,-1,-1,-1
185,-1,544.881,204.085,21.764,49.69,0.672701,-1,-1,-1
186,-1,242.11,7.98964,272.164,471.01,0.994722,-1,-1,-1
186,-1,160.477,23.5028,129.304,413.862,0.99053,-1,-1,-1
186,-1,500.1,182.75,31.731,93.817,0.969512,-1,-1,-1
186,-1,545.091,205.72,20.014,47.53,0.56197,-1,-1,-1
187,-1,290.305,7.22041,237.113,471.78,0.997186,-1,-1,-1
187,-1,164.071,22.7972,123.733,413.283,0.990737,-1,-1,-1
187,-1,506.249,183.028,24.269,83.375,0.9632,-1,-1,-1
188,-1,293.041,11.915,238.79,467.085,0.99756,-1,-1,-1
188,-1,158.017,9.7435,131.551,435.206,0.992153,-1,-1,-1
188,-1,505.62,185.638,27.714,87.098,0.976816,-1,-1,-1
189,-1,290.645,4.99332,235.416,474.007,0.996852,-1,-1,-1
189,-1,169.906,22.5218,113.952,421.93,0.991162,-1,-1,-1
189,-1,498.95,180.213,31.991,93.211,0.958004,-1,-1,-1
190,-1,298.58,0,223.916,479,0.995335,-1,-1,-1
190,-1,167.299,20.6669,117.089,414.924,0.991051,-1,-1,-1
190,-1,500.517,182.799,31.741,87.231,0.962352,-1,-1,-1
191,-1,299.974,0.995514,219.337,478.004,0.994133,-1,-1,-1
191,-1,168.392,8.30272,119.2,434.781,0.986663,-1,-1,-1
191,-1,498.202,179.918,30.877,96.92,0.940285,-1,-1,-1
192,-1,267.118,5.11575,254.533,473.884,0.995241,-1,-1,-1
192,-1,167.577,14.3529,120.008,420.045,0.990349,-1,-1,-1
192,-1,499.698,177.055,32.943,97.584,0.965135,-1,-1,-1
193,-1,163.232,25.9652,126.675,412.25,0.994634,-1,-1,-1
193,-1,293.329,0,230.368,479,0.994435,-1,-1,-1
193,-1,504.922,178.99,29.168,97.198,0.949322,-1,-1,-1
194,-1,293.39,0,230.583,479,0.994379,-1,-1,-1
194,-1,29.3907,24.4207,241.667,427.111,0.988415,-1,-1,-1
194,-1,495.54,171.458,32.787,107.943,0.951654,-1,-1,-1
194,-1,161.501,12.6009,123.077,307.574,0.643559,-1,-1,-1
195,-1,269.226,8.65303,248.725,470.347,0.995285,-1,-1,-1
195,-1,164.622,18.9725,118.378,413.59,0.988014,-1,-1,-1
195,-1,497.127,173.73,35.586,108.316,0.957001,-1,-1,-1
195,-1,543.341,196.438,31.664,52.217,0.673682,-1,-1,-1
196,-1,274.454,11.9156,240.255,467.084,0.995112,-1,-1,-1
196,-1,163.76,28.6085,117.051,414.499,0.991001,-1,-1,-1
196,-1,498.998,174.509,33.71,108.436,0.958801,-1,-1,-1
196,-1,544.718,203.414,25.854,52.357,0.759718,-1,-1,-1
197,-1,29.8928,28.3155,241.065,425.718,0.990219,-1,-1,-1
197,-1,298.112,0.212723,222.766,478.787,0.989633,-1,-1,-1
197,-1,498.611,176.91,28.947,100.523,0.937971,-1,-1,-1
197,-1,539.721,202.554,23.058,59.757,0.854211,-1,-1,-1
197,-1,555.695,210.502,22.85,40.423,0.567623,-1,-1,-1
198,-1,272.719,9.64172,249.264,469.358,0.996274,-1,-1,-1
198,-1,51.1718,15.1143,216.793,440.652,0.983324,-1,-1,-1
198,-1,498.018,174.149,29.733,105.412,0.906218,-1,-1,-1
198,-1,539.2,204.192,23.348,59.137,0.877393,-1,-1,-1
199,-1,291.51,0,234.759,479,0.990584,-1,-1,-1
199,-1,158.653,12.3751,117.452,430.766,0.985204,-1,-1,-1
199,-1,541.525,206.801,23.302,46.331,0.941985,-1,-1,-1
199,-1,499.167,164.453,32.901,118.822,0.924412,-1,-1,-1
200,-1,298.711,0,220.366,479,0.992952,-1,-1,-1
200,-1,158.805,10.5946,119.546,417.656,0.979668,-1,-1,-1
200,-1,497.113,164.769,34.525,123.731,0.910247,-1,-1,-1
200,-1,541.316,200.118,26.931,57.412,0.901794,-1,-1,-1
201,-1,292.198,0,232.884,479,0.992974,-1,-1,-1
201,-1,20.3823,0,253.939,462.432,0.991781,-1,-1,-1
201,-1,496.507,176.044,34.348,110.586,0.952166,-1,-1,-1
201,-1,538.074,204.468,28.873,58.216,0.911859,-1,-1,-1
202,-1,290.657,0.787613,228.366,478.212,0.992217,-1,-1,-1
202,-1,126.495,7.84102,143.953,405.66,0.987352,-1,-1,-1
202,-1,497.361,177.466,34.37,100.048,0.947231,-1,-1,-1
202,-1,537.519,202.338,26.852,60.638,0.932833,-1,-1,-1
203,-1,294.756,0,221.396,479,0.991744,-1,-1,-1
203,-1,22.2667,25.3261,230.815,411.014,0.989528,-1,-1,-1
203,-1,496.133,179.399,35.185,96.688,0.961149,-1,-1,-1
203,-1,532.439,197.951,25.935,61.309,0.912233,-1,-1,-1
204,-1,287.857,0,230.963,479,0.995113,-1,-1,-1
204,-1,24.7006,24.409,232.766,408.78,0.991403,-1,-1,-1
204,-1,494.615,184.46,36.966,94.917,0.970624,-1,-1,-1
204,-1,534.084,195.973,22.48,70.588,0.565985,-1,-1,-1
205,-1,295.324,0,225.803,479,0.993655,-1,-1,-1
205,-1,23.9201,21.4402,228.34,409.437,0.986652,-1,-1,-1
205,-1,494.843,184.622,36.518,93.751,0.9709,-1,-1,-1
205,-1,532.624,191.838,25.54,70.905,0.726437,-1,-1,-1
206,-1,25.6185,27.6258,219.754,420.898,0.987506,-1,-1,-1
206,-1,287.102,0,227.577,479,0.984797,-1,-1,-1
206,-1,495.76,183.04,35.663,94.958,0.967937,-1,-1,-1
206,-1,534.201,190.785,24.145,73.215,0.805762,-1,-1,-1
207,-1,34.6387,18.7169,219.981,429.447,0.992644,-1,-1,-1
207,-1,288.359,0,224.45,479,0.987709,-1,-1,-1
207,-1,493.226,183.053,38.297,95.974,0.956358,-1,-1,-1
207,-1,533.509,190.47,22.331,67.748,0.721074,-1,-1,-1
208,-1,291.714,0,223.794,479,0.989265,-1,-1,-1
208,-1,128.393,17.0719,130.638,384.025,0.981881,-1,-1,-1
208,-1,491.602,171.954,35.591,108.858,0.964882,-1,-1,-1
208,-1,534.069,195.705,23.092,61.871,0.655883,-1,-1,-1
209,-1,283.273,0,224.603,479,0.985309,-1,-1,-1
209,-1,138.767,23.8163,121.629,372.836,0.972054,-1,-1,-1
209,-1,496.595,182.535,32.953,96.032,0.968041,-1,-1,-1
209,-1,532.541,190.573,23.238,67.685,0.766201,-1,-1,-1
210,-1,166.505,38.757,97.674,357.006,0.993269,-1,-1,-1
210,-1,277.45,0,227.34,479,0.975086,-1,-1,-1
210,-1,22.2746,0,208.101,466.228,0.969889,-1,-1,-1
210,-1,490.898,175.203,31.722,103.273,0.968324,-1,-1,-1
210,-1,532.983,196.64,23.847,64.668,0.753551,-1,-1,-1
210,-1,509.735,188.875,24.48,87.291,0.737995,-1,-1,-1
211,-1,175.95,42.8761,91.595,356.629,0.98886,-1,-1,-1
211,-1,262.005,0,244.367,479,0.979714,-1,-1,-1
211,-1,496.31,181.407,28.324,96.471,0.966216,-1,-1,-1
211,-1,21.2003,0,197.276,469.723,0.960178,-1,-1,-1
211,-1,540.842,190.257,27.495,64.531,0.927128,-1,-1,-1
211,-1,161.73,290.582,34.612,97.802,0.571167,-1,-1,-1
211,-1,514.772,182.121,22.483,89.292,0.538086,-1,-1,-1
212,-1,172.174,35.7832,94.569,367.767,0.994354,-1,-1,-1
212,-1,269.591,0,243.103,479,0.989157,-1,-1,-1
212,-1,489.909,175.354,33.728,102.898,0.97085,-1,-1,-1
212,-1,27.5382,0,180.697,469.559,0.92173,-1,-1,-1
212,-1,539.156,196.533,22.422,62.355,0.846633,-1,-1,-1
213,-1,161.935,53.3595,116.66,356.818,0.99465,-1,-1,-1
213,-1,490.066,179.254,32.614,102.324,0.959033,-1,-1,-1
213,-1,282.688,0,231.471,479,0.954328,-1,-1,-1
213,-1,10.757,6.97166,182.614,434.896,0.903766,-1,-1,-1
213,-1,514.457,184.27,24.247,88.227,0.605348,-1,-1,-1
213,-1,530.434,206.659,19.782,50.835,0.575756,-1,-1,-1
214,-1,153.434,51.326,130.532,359.543,0.998344,-1,-1,-1
214,-1,18.886,0,163.712,469.032,0.969279,-1,-1,-1
214,-1,264.713,0,234.384,479,0.966441,-1,-1,-1
214,-1,488.02,180.114,32.342,94.898,0.960574,-1,-1,-1
214,-1,531.263,196.628,20.736,68.697,0.759702,-1,-1,-1
214,-1,517.271,182.226,23.213,84.868,0.524058,-1,-1,-1
215,-1,156.375,56.4355,130.234,354.269,0.998883,-1,-1,-1
215,-1,272.848,0,233.29,477.685,0.970063,-1,-1,-1
215,-1,492.359,176.925,30.85,100.928,0.962603,-1,-1,-1
215,-1,15.527,0,173.874,440.381,0.946591,-1,-1,-1
215,-1,140.555,280.512,40.88,103.019,0.690957,-1,-1,-1
216,-1,166.963,54.9823,120.925,364.27,0.998754,-1,-1,-1
216,-1,481.357,165.877,36.422,113.648,0.944978,-1,-1,-1
216,-1,251.232,0,243.562,479,0.920557,-1,-1,-1
216,-1,8.99448,13.7861,163.421,412.961,0.884909,-1,-1,-1
216,-1,139.585,293.351,32.289,81.249,0.791506,-1,-1,-1
216,-1,526.606,202.193,20.285,65.779,0.660414,-1,-1,-1
217,-1,173.33,61.9559,118.805,342.783,0.998833,-1,-1,-1
217,-1,489.567,172.058,35.768,109.509,0.957521,-1,-1,-1
217,-1,245.638,0,231.086,479,0.913965,-1,-1,-1
217,-1,9.07556,9.82417,148.699,437.329,0.913848,-1,-1,-1
217,-1,533.014,198.766,22.382,63.345,0.787456,-1,-1,-1
217,-1,148.345,295.383,28.151,74.458,0.539958,-1,-1,-1
218,-1,174.584,68.0247,119.865,322.288,0.997925,-1,-1,-1
218,-1,18.5933,1.56204,150.336,452.615,0.97942,-1,-1,-1
218,-1,481.513,163.892,38.086,120.126,0.946083,-1,-1,-1
218,-1,275.559,0,217.953,479,0.896359,-1,-1,-1
218,-1,144.996,295.165,28.721,55.601,0.567185,-1,-1,-1
219,-1,179.438,77.0873,123.758,323.197,0.995574,-1,-1,-1
219,-1,482.311,172.887,37.029,109.876,0.964509,-1,-1,-1
219,-1,295.203,0,185.869,474.317,0.892987,-1,-1,-1
219,-1,14.4473,0,178.273,443.772,0.864805,-1,-1,-1
219,-1,145.201,295.352,32.4,64.968,0.751255,-1,-1,-1
219,-1,518.113,192.711,25.729,74.557,0.715448,-1,-1,-1
220,-1,187.589,82.0016,118.874,298.15,0.998267,-1,-1,-1
220,-1,480.898,190.092,34.071,88.747,0.967397,-1,-1,-1
220,-1,278.225,0,217.44,478.243,0.953749,-1,-1,-1
220,-1,14.5288,21.6422,178.86,370.413,0.924258,-1,-1,-1
220,-1,152.309,294.592,31.016,71.36,0.649973,-1,-1,-1
221,-1,184.608,96.5987,120.376,294.354,0.997437,-1,-1,-1
221,-1,301.752,24.9794,192.961,451.254,0.983097,-1,-1,-1
221,-1,480.909,177.816,36.749,101.92,0.924251,-1,-1,-1
221,-1,27.3022,18.5321,169.113,403.663,0.885401,-1,-1,-1
221,-1,518.185,193.022,24.788,76.867,0.636218,-1,-1,-1
221,-1,159.522,307.242,31.452,66.601,0.630197,-1,-1,-1
222,-1,198.895,75.608,89.282,305.635,0.998066,-1,-1,-1
222,-1,296.001,27.5462,191.915,441.043,0.989408,-1,-1,-1
222,-1,489.294,172.681,33.954,105.558,0.932306,-1,-1,-1
222,-1,542.335,202.029,22.564,57.696,0.843205,-1,-1,-1
222,-1,18.0389,0,184.765,458.251,0.831921,-1,-1,-1
223,-1,201.144,86.4294,95.615,276.699,0.998454,-1,-1,-1
223,-1,287.089,27.4275,205.91,445.632,0.951473,-1,-1,-1
223,-1,545.927,211.184,21.839,42.946,0.924226,-1,-1,-1
223,-1,488.676,188.481,28.63,92.825,0.856267,-1,-1,-1
223,-1,8.42744,25.1848,250.305,435.811,0.830538,-1,-1,-1
223,-1,170.073,278.634,33.957,116.179,0.542684,-1,-1,-1
224,-1,218.844,86.4521,80.767,284.338,0.998918,-1,-1,-1
224,-1,299.597,15.7181,200.275,457.59,0.97928,-1,-1,-1
224,-1,542.294,201.573,21.203,54.805,0.949139,-1,-1,-1
224,-1,8.55344,25.0279,233.833,420.793,0.908047,-1,-1,-1
224,-1,489.974,168.461,33.25,109.348,0.876773,-1,-1,-1
225,-1,208.682,110.395,88.165,254.791,0.996762,-1,-1,-1
225,-1,305.046,47.3439,173.886,431.656,0.983164,-1,-1,-1
225,-1,480.387,171.182,37.049,112.026,0.950018,-1,-1,-1
225,-1,545.314,200.079,24.048,50.917,0.947126,-1,-1,-1
225,-1,0.820557,26.8965,262.688,436.171,0.889192,-1,-1,-1
225,-1,533.951,209.195,22.42,53.108,0.72019,-1,-1,-1
226,-1,227.446,93.1041,82.703,268.25,0.99856,-1,-1,-1
226,-1,310.7,26.9329,159.496,452.067,0.987933,-1,-1,-1
226,-1,480.677,175.007,35.867,106.91,0.97061,-1,-1,-1
226,-1,13.71,0,201.314,474.752,0.936438,-1,-1,-1
226,-1,537.52,199.799,23.666,52.689,0.814928,-1,-1,-1
227,-1,226.485,107.467,85.236,251.133,0.998681,-1,-1,-1
227,-1,307.655,48.8225,162.556,430.178,0.997182,-1,-1,-1
227,-1,481.521,176.16,38.154,100.756,0.964886,-1,-1,-1
227,-1,14.5783,0,206.243,475.609,0.938017,-1,-1,-1
227,-1,542.414,199.13,26.731,49.236,0.92718,-1,-1,-1
227,-1,614.081,316.046,24.919,107.812,0.618022,-1,-1,-1
228,-1,230.696,117.862,78.166,233.922,0.997527,-1,-1,-1
228,-1,309.98,7.74554,157.794,471.254,0.994797,-1,-1,-1
228,-1,479.257,174.727,38.541,102.082,0.982539,-1,-1,-1
228,-1,18.856,0,199.714,479,0.96474,-1,-1,-1
228,-1,544.473,196.815,20.872,56.436,0.943669,-1,-1,-1
228,-1,187.243,259.889,32.988,94.16,0.519574,-1,-1,-1
229,-1,235.947,114.318,75.902,229.596,0.998329,-1,-1,-1
229,-1,311.119,48.5624,155.644,430.438,0.998145,-1,-1,-1
229,-1,19.8507,0,197.935,477.889,0.981859,-1,-1,-1
229,-1,481.992,183.743,35.561,94.094,0.977957,-1,-1,-1
229,-1,544.041,194.795,24.582,55.63,0.94183,-1,-1,-1
230,-1,238.3,108.587,82.801,239.502,0.997989,-1,-1,-1
230,-1,316.113,50.2596,141.737,425.533,0.997507,-1,-1,-1
230,-1,10.2178,0,228.993,472.927,0.983298,-1,-1,-1
230,-1,492.769,182.448,25.16,93.472,0.967802,-1,-1,-1
230,-1,450.961,169.942,43.023,114.913,0.960461,-1,-1,-1
230,-1,544.891,199.507,25.559,59.208,0.932124,-1,-1,-1
231,-1,320.198,35.0431,134.691,443.957,0.996346,-1,-1,-1
231,-1,247.151,117.284,81.472,231.812,0.995432,-1,-1,-1
231,-1,5.27679,12.9019,238.065,444.754,0.988439,-1,-1,-1
231,-1,485.29,182.347,35.02,100.607,0.979591,-1,-1,-1
231,-1,453.446,160.179,39.696,129.618,0.970029,-1,-1,-1
231,-1,547.902,210.899,20.019,41.162,0.908255,-1,-1,-1
231,-1,598.006,133.337,40.994,143.442,0.713011,-1,-1,-1
232,-1,246.121,114.962,86.689,224.493,0.998531,-1,-1,-1
232,-1,322.048,49.1327,142.347,429.867,0.994918,-1,-1,-1
232,-1,0,33.1977,238.159,390.655,0.993739,-1,-1,-1
232,-1,454.597,165.747,67.367,116.074,0.973808,-1,-1,-1
232,-1,501.097,186.294,26.983,102.027,0.840557,-1,-1,-1
232,-1,549.237,192.008,23.381,73.496,0.666393,-1,-1,-1
232,-1,588.168,141.686,50.832,111.233,0.617073,-1,-1,-1
233,-1,334.113,35.9354,132.322,443.065,0.996138,-1,-1,-1
233,-1,244.887,120.346,94.016,223.11,0.995685,-1,-1,-1
233,-1,8.21156,26.0449,227.029,436.294,0.983751,-1,-1,-1
233,-1,468.208,164.823,49.242,110.443,0.955002,-1,-1,-1
233,-1,501.943,184.735,32.759,93.179,0.941259,-1,-1,-1
233,-1,589.238,162.791,49.762,109.302,0.927841,-1,-1,-1
233,-1,560.005,195.787,21.8,66.159,0.808659,-1,-1,-1
233,-1,216.401,139.684,40.276,112.41,0.691638,-1,-1,-1
233,-1,580.086,191.561,27.482,65.685,0.674881,-1,-1,-1
234,-1,342.47,63.9147,143.84,400.641,0.997923,-1,-1,-1
234,-1,269.334,120.4,71.99,221.497,0.9949,-1,-1,-1
234,-1,9.20544,33.5905,208.938,427.772,0.992984,-1,-1,-1
234,-1,462.108,163.246,52.396,124.716,0.977674,-1,-1,-1
234,-1,0,111.824,37.2451,135.06,0.893066,-1,-1,-1
234,-1,601.594,205.72,35.876,82.322,0.713359,-1,-1,-1
234,-1,495.086,177.939,36.853,101.747,0.710215,-1,-1,-1
234,-1,526.121,186.815,25.497,91.074,0.625041,-1,-1,-1
235,-1,349.082,62.9051,140.894,410.102,0.998347,-1,-1,-1
235,-1,268.74,113.342,78.225,223.748,0.996914,-1,-1,-1
235,-1,11.1125,33.1784,201.287,429.069,0.992327,-1,-1,-1
235,-1,610.59,210.985,28.41,86.954,0.914402,-1,-1,-1
235,-1,473.553,153.614,53.81,159,0.734036,-1,-1,-1
235,-1,573.899,200.068,20.778,55.038,0.727332,-1,-1,-1
235,-1,2.47342,112.934,44.514,111.253,0.618556,-1,-1,-1
235,-1,525.808,191.078,23.669,89.179,0.505591,-1,-1,-1
236,-1,262.919,118.964,93.407,216.06,0.998126,-1,-1,-1
236,-1,356.535,70.0577,145.561,395.501,0.99774,-1,-1,-1
236,-1,12.4799,11.2206,215.781,454.527,0.973533,-1,-1,-1
236,-1,581.183,198.544,16.227,52.682,0.854387,-1,-1,-1
236,-1,7.86599,116.144,44.7919,142.242,0.719355,-1,-1,-1
236,-1,511.521,169.338,34.026,106.052,0.681406,-1,-1,-1
236,-1,609.006,187.591,29.994,95.027,0.671242,-1,-1,-1
236,-1,221.56,133.214,30.375,102.434,0.501761,-1,-1,-1
237,-1,357.115,68.0068,167.763,398.27,0.998338,-1,-1,-1
237,-1,276.812,115.123,90.234,207.914,0.997319,-1,-1,-1
237,-1,10.3036,26.5143,264.907,433.23,0.989444,-1,-1,-1
237,-1,586.763,202.385,22.847,60.434,0.957759,-1,-1,-1
237,-1,538.202,194.531,28.608,84.405,0.800349,-1,-1,-1
237,-1,240.269,157.667,36.214,106.449,0.790825,-1,-1,-1
237,-1,605.2,194.501,32.26,61.894,0.595162,-1,-1,-1
238,-1,378.791,80.9538,138.826,384.99,0.999317,-1,-1,-1
238,-1,283.438,123.338,91.192,198.411,0.996842,-1,-1,-1
238,-1,8.08466,22.471,244.761,439.359,0.993977,-1,-1,-1
238,-1,586.774,202.322,24.76,56.478,0.97843,-1,-1,-1
238,-1,240.486,153.805,37.363,119.857,0.836046,-1,-1,-1
239,-1,400.95,82.961,137.054,366.364,0.998973,-1,-1,-1
239,-1,296.957,116.01,87.631,208.552,0.996624,-1,-1,-1
239,-1,21.0498,17.2345,237.229,426.919,0.995078,-1,-1,-1
239,-1,595.103,199.262,30.753,59.814,0.951171,-1,-1,-1
239,-1,4.98155,155.084,27.9976,104.979,0.802448,-1,-1,-1
239,-1,244.359,139.283,35.708,131.164,0.674311,-1,-1,-1
240,-1,406.046,82.2197,147.977,365.158,0.998823,-1,-1,-1
240,-1,301.396,125.523,76.377,197.923,0.994759,-1,-1,-1
240,-1,43.3792,22.8606,215.235,429.871,0.992582,-1,-1,-1
240,-1,598.114,195.434,31.691,55.408,0.967912,-1,-1,-1
240,-1,250.755,150.923,39.242,121.965,0.827532,-1,-1,-1
241,-1,422.782,81.877,131.961,362.317,0.999021,-1,-1,-1
241,-1,42.0824,30.0506,227.017,430.109,0.992576,-1,-1,-1
241,-1,306.547,125.639,79.796,194.42,0.991717,-1,-1,-1
241,-1,598.433,188.827,34.88,80.098,0.97925,-1,-1,-1
241,-1,55.3221,110.86,65.6129,194.928,0.709042,-1,-1,-1
242,-1,422.708,68.4147,145.718,392.565,0.99844,-1,-1,-1
242,-1,307.609,135.342,64.555,175.954,0.990477,-1,-1,-1
242,-1,36.6378,41.9229,227.853,408.105,0.976717,-1,-1,-1
242,-1,396.941,178.663,20.111,77.636,0.523074,-1,-1,-1
242,-1,597.756,190.87,41.244,184.107,0.513873,-1,-1,-1
243,-1,425.213,76.4214,122.991,376.605,0.999118,-1,-1,-1
243,-1,310.596,115.247,74.457,202.319,0.998262,-1,-1,-1
243,-1,22.9286,151.936,38.7688,101.683,0.988125,-1,-1,-1
243,-1,45.1898,5.05949,219.505,454.349,0.988065,-1,-1,-1
243,-1,383.471,170.022,21.521,82.499,0.874346,-1,-1,-1
243,-1,393.769,159.677,27.848,107.139,0.746961,-1,-1,-1
243,-1,583.764,141.245,55.236,182.748,0.715959,-1,-1,-1
244,-1,425.495,85.409,137.923,369.962,0.999477,-1,-1,-1
244,-1,309.517,119.363,64.982,196.345,0.997673,-1,-1,-1
244,-1,566.417,76.3565,72.583,374.769,0.995641,-1,-1,-1
244,-1,45.6889,40.646,237.273,368.262,0.99008,-1,-1,-1
244,-1,21.4885,170.547,30.8974,73.209,0.985181,-1,-1,-1
244,-1,394.876,177.605,23.162,75.675,0.926588,-1,-1,-1
245,-1,423.924,73.4727,148.038,373.461,0.998637,-1,-1,-1
245,-1,303.03,121.346,80.843,195.714,0.997506,-1,-1,-1
245,-1,538.499,28.0571,100.501,370.057,0.995567,-1,-1,-1
245,-1,59.3939,41.1806,226.262,300.836,0.972292,-1,-1,-1
245,-1,8.90277,167.506,33.4615,86.046,0.96801,-1,-1,-1
245,-1,383.231,174.131,22.738,89.46,0.842404,-1,-1,-1
245,-1,394.563,170.689,28.999,95.662,0.625588,-1,-1,-1
246,-1,437.272,67.783,130.911,376.181,0.999113,-1,-1,-1
246,-1,315.845,121.739,72.653,188.844,0.998428,-1,-1,-1
246,-1,55.1195,44.3,233.375,321.644,0.988122,-1,-1,-1
246,-1,534.171,15.3002,104.829,356.916,0.981837,-1,-1,-1
246,-1,6.1037,177.555,24.8546,69.541,0.949917,-1,-1,-1
246,-1,390.683,170.548,24.038,92.056,0.917353,-1,-1,-1
247,-1,308.642,125.727,75.613,184.169,0.997467,-1,-1,-1
247,-1,445.171,42.9262,126.82,405.131,0.995453,-1,-1,-1
247,-1,63.8902,28.5904,236.009,324.586,0.987855,-1,-1,-1
247,-1,535.25,2.78473,103.75,417.993,0.977035,-1,-1,-1
247,-1,385.28,161.658,26.411,101.784,0.863944,-1,-1,-1
247,-1,30.1571,189.483,22.3295,42.673,0.736808,-1,-1,-1
247,-1,411.983,161.903,25.264,114.398,0.60158,-1,-1,-1
248,-1,311.962,130.055,69.416,180.35,0.996769,-1,-1,-1
248,-1,449.654,49.1517,138.027,408.981,0.995298,-1,-1,-1
248,-1,68.7773,23.9824,231.864,391.913,0.991627,-1,-1,-1
248,-1,545.539,5.26396,93.461,457.174,0.9714,-1,-1,-1
248,-1,409.75,163.636,29.653,115.538,0.893233,-1,-1,-1
248,-1,385.547,162.258,25.515,104.025,0.74124,-1,-1,-1
249,-1,314.467,120.058,67.917,188.876,0.997951,-1,-1,-1
249,-1,453.957,42.9398,138.878,408.898,0.993635,-1,-1,-1
249,-1,535.939,0,103.061,451.282,0.992455,-1,-1,-1
249,-1,79.5006,29.584,219.241,399.192,0.989775,-1,-1,-1
249,-1,409.929,165.038,31.081,113.101,0.905857,-1,-1,-1
249,-1,381.839,172.948,26.001,91.867,0.875792,-1,-1,-1
249,-1,26.9149,188.003,18.6289,44.045,0.626065,-1,-1,-1
250,-1,324.388,129.743,64.961,179.513,0.997204,-1,-1,-1
250,-1,471.921,28.7403,167.079,393.124,0.991485,-1,-1,-1
250,-1,106.51,6.12112,201.244,443.494,0.979578,-1,-1,-1
250,-1,409.934,169.188,32.65,120.268,0.867359,-1,-1,-1
250,-1,31.6016,189.54,17.436,36.042,0.656375,-1,-1,-1
250,-1,390.567,173.189,28.864,88.883,0.631534,-1,-1,-1
251,-1,321.538,121.34,67.503,193.154,0.997643,-1,-1,-1
251,-1,474.322,42.8255,144.647,410.924,0.99213,-1,-1,-1
251,-1,79.6483,176.288,42.5357,84.753,0.988078,-1,-1,-1
251,-1,90.9996,42.0467,229.351,300.732,0.984327,-1,-1,-1
251,-1,408.956,164.099,38.999,125.667,0.849725,-1,-1,-1
252,-1,330.92,137.24,57.68,184.632,0.995492,-1,-1,-1
252,-1,475.348,42.4396,162.808,396.022,0.99029,-1,-1,-1
252,-1,117.525,22.8345,198.434,333.495,0.990033,-1,-1,-1
252,-1,77.6304,183.24,42.3486,88.314,0.985372,-1,-1,-1
252,-1,419.353,175.668,41.888,116.102,0.936642,-1,-1,-1
252,-1,408.823,168.995,28.374,102.887,0.733923,-1,-1,-1
253,-1,516.846,36.5291,122.154,437.858,0.994523,-1,-1,-1
253,-1,332.243,137.715,69.833,174.253,0.994091,-1,-1,-1
253,-1,72.097,184.519,42.903,90.591,0.9937,-1,-1,-1
253,-1,465.377,146.752,55.336,164.352,0.991407,-1,-1,-1
253,-1,116.192,57.1251,213.705,405.833,0.990164,-1,-1,-1
253,-1,400.105,167.359,30.934,113.482,0.742748,-1,-1,-1
253,-1,418.169,168.834,34.823,119.125,0.666105,-1,-1,-1
253,-1,471.305,133.843,43.19,69.838,0.530805,-1,-1,-1
254,-1,527.197,0,111.803,461.078,0.992674,-1,-1,-1
254,-1,337.537,138.882,55.746,181.87,0.990915,-1,-1,-1
254,-1,73.0238,184.379,37.3712,91.428,0.99063,-1,-1,-1
254,-1,464.773,147.37,56.172,179.985,0.988639,-1,-1,-1
254,-1,131.437,60.1735,198.132,408.276,0.982571,-1,-1,-1
254,-1,418.979,172.782,44.347,114.463,0.88423,-1,-1,-1
255,-1,516.358,24.0846,122.642,418.392,0.998589,-1,-1,-1
255,-1,153.486,41.8214,186.758,429.082,0.996284,-1,-1,-1
255,-1,351.609,140.014,53.949,181.885,0.995529,-1,-1,-1
255,-1,114.599,143.807,55.649,171.664,0.990409,-1,-1,-1
255,-1,459.163,148.405,57.461,195.913,0.987866,-1,-1,-1
255,-1,67.8015,186.062,30.3308,87.13,0.920901,-1,-1,-1
256,-1,345.432,139.765,72.766,171.447,0.997062,-1,-1,-1
256,-1,147.064,59.8217,202.628,407.697,0.996844,-1,-1,-1
256,-1,88.0411,131.953,69.6979,165.573,0.990046,-1,-1,-1
256,-1,523.936,29.6272,115.064,371.25,0.98248,-1,-1,-1
256,-1,39.8661,197.224,46.0973,81.363,0.975415,-1,-1,-1
256,-1,445.883,150.151,63.756,189.883,0.964311,-1,-1,-1
256,-1,425.409,179.402,44.418,143.702,0.878665,-1,-1,-1
257,-1,77.2781,132.998,69.0819,161.79,0.996559,-1,-1,-1
257,-1,155.245,52.1878,199.085,411.812,0.994547,-1,-1,-1
257,-1,343.999,140.711,62.313,156.49,0.991763,-1,-1,-1
257,-1,519.366,9.85957,119.634,467.416,0.990911,-1,-1,-1
257,-1,422.497,161.167,73.119,175.289,0.98793,-1,-1,-1
257,-1,27.7744,193.868,52.306,80.967,0.981141,-1,-1,-1
257,-1,497.223,150.925,37.631,184.19,0.760617,-1,-1,-1
257,-1,57.5724,179.862,38.7648,117.679,0.599386,-1,-1,-1
258,-1,57.7267,132.242,71.3243,175.518,0.998522,-1,-1,-1
258,-1,532.9,19.1087,106.1,424.69,0.996011,-1,-1,-1
258,-1,144.827,58.3728,211.424,400.206,0.992518,-1,-1,-1
258,-1,421.079,149.341,57.649,190.26,0.991701,-1,-1,-1
258,-1,345.633,142.675,52.94,151.489,0.990654,-1,-1,-1
258,-1,490.737,150.748,52.359,116.796,0.842675,-1,-1,-1
258,-1,18.2361,179.132,50.4663,86.672,0.782439,-1,-1,-1
259,-1,31.7058,136.447,87.4512,185.266,0.998278,-1,-1,-1
259,-1,343.569,140.212,54.412,166.232,0.992874,-1,-1,-1
259,-1,178.12,57.2524,168.348,401.204,0.989361,-1,-1,-1
259,-1,522.123,22.012,116.877,393.561,0.986077,-1,-1,-1
259,-1,418.601,153.076,50.363,186.472,0.9797,-1,-1,-1
259,-1,483.348,162.154,50.541,148.703,0.972724,-1,-1,-1
260,-1,390.623,130.154,65.799,222.465,0.996286,-1,-1,-1
260,-1,335.86,144.916,50.408,168.697,0.995086,-1,-1,-1
260,-1,142.204,47.3102,204.279,427.348,0.994152,-1,-1,-1
260,-1,7.35072,128.39,92.1106,190.622,0.993345,-1,-1,-1
260,-1,507.665,29.8238,131.335,434.898,0.990335,-1,-1,-1
260,-1,476.303,165.42,45.759,149.991,0.966773,-1,-1,-1
261,-1,472.754,27.7292,162.39,397.545,0.996462,-1,-1,-1
261,-1,363.01,125.063,96.606,245.167,0.995606,-1,-1,-1
261,-1,136.738,58.4732,189.614,419.43,0.995439,-1,-1,-1
261,-1,327.754,152.134,45.662,166.676,0.988574,-1,-1,-1
261,-1,0.35778,123.409,70.6089,192.168,0.818254,-1,-1,-1
261,-1,120.387,227.574,53.989,210.631,0.666663,-1,-1,-1
262,-1,466.449,0,172.551,464.074,0.997898,-1,-1,-1
262,-1,350.367,129.499,84.089,230.873,0.996615,-1,-1,-1
262,-1,129.849,34.1043,174.786,422.451,0.99372,-1,-1,-1
262,-1,317.328,154.305,49.359,167.127,0.981353,-1,-1,-1
263,-1,442.663,15.0175,194.592,428.34,0.998151,-1,-1,-1
263,-1,319.539,121.89,96.396,250.093,0.984236,-1,-1,-1
263,-1,105.103,16.7331,202.272,434.283,0.983063,-1,-1,-1
263,-1,378.26,153.126,56.441,180.883,0.897243,-1,-1,-1
264,-1,452.998,12.0962,176.818,409.952,0.997507,-1,-1,-1
264,-1,88.3024,31.7533,214.938,432.941,0.995948,-1,-1,-1
264,-1,320.72,127.057,77.855,250.509,0.965587,-1,-1,-1
264,-1,379.689,157.703,46.121,142.607,0.893671,-1,-1,-1
264,-1,296.639,175.233,37.971,109.768,0.613873,-1,-1,-1
265,-1,446.542,0,192.458,479,0.998717,-1,-1,-1
265,-1,74.3628,31.0436,240.822,427.468,0.99224,-1,-1,-1
265,-1,303.312,144.042,64.671,242.121,0.987806,-1,-1,-1
265,-1,380.803,156.094,43.155,143.762,0.971019,-1,-1,-1
266,-1,432.934,0,206.066,476.305,0.998601,-1,-1,-1
266,-1,57.0798,40.8768,258.724,422.066,0.996154,-1,-1,-1
266,-1,282.836,107.247,80.865,275.376,0.978642,-1,-1,-1
266,-1,374.457,159.395,37.836,154.464,0.943494,-1,-1,-1
267,-1,429.199,0,207.752,479,0.998955,-1,-1,-1
267,-1,54.3192,53.4789,259.321,398.522,0.990963,-1,-1,-1
267,-1,315.562,146.553,47.561,161.417,0.98445,-1,-1,-1
267,-1,361.099,153.252,51.549,154.541,0.982874,-1,-1,-1
268,-1,434.497,0,201.194,479,0.998623,-1,-1,-1
268,-1,50.4931,33.7865,266.276,425.594,0.994976,-1,-1,-1
268,-1,320.882,132.976,48.874,160.558,0.983293,-1,-1,-1
268,-1,356.526,142.518,55.76,161.064,0.971222,-1,-1,-1
268,-1,215.859,78.1206,111.317,310.309,0.797106,-1,-1,-1
269,-1,403.825,0,231.766,475.187,0.997398,-1,-1,-1
269,-1,37.578,17.6582,279.99,452.598,0.993394,-1,-1,-1
269,-1,319.131,127.592,47.868,178.549,0.950349,-1,-1,-1
269,-1,354.275,137.747,44.625,176.339,0.93487,-1,-1,-1
269,-1,232.501,231.316,84.666,147.372,0.513132,-1,-1,-1
270,-1,404.533,0,226.733,467.158,0.997449,-1,-1,-1
270,-1,52.7111,31.9693,234.606,441.359,0.978088,-1,-1,-1
270,-1,315.715,116.235,39.881,157.599,0.957077,-1,-1,-1
270,-1,343.757,113.575,46.033,143.31,0.90385,-1,-1,-1
271,-1,406.59,0,231.156,455.927,0.994692,-1,-1,-1
271,-1,327.373,95.4876,61.931,162.702,0.979189,-1,-1,-1
271,-1,63.4667,0,213.442,466.499,0.966386,-1,-1,-1
271,-1,340.067,81.4945,43.362,80.1535,0.580631,-1,-1,-1
272,-1,319.564,53.5845,51.998,185.749,0.994514,-1,-1,-1
272,-1,403.965,0,207.911,466.65,0.992692,-1,-1,-1
272,-1,51.9518,11.8178,225.873,443.605,0.962839,-1,-1,-1
272,-1,17.1166,54.8781,49.8473,99.0209,0.889253,-1,-1,-1
272,-1,19.3079,30.1831,88.7051,352.588,0.832086,-1,-1,-1
272,-1,275.373,65.6087,35.495,106.622,0.772165,-1,-1,-1
273,-1,316.755,77.3342,54.437,157.649,0.995,-1,-1,-1
273,-1,402.922,0,196.202,476.543,0.993019,-1,-1,-1
273,-1,0,1.53093,110.968,367.651,0.959386,-1,-1,-1
273,-1,265.499,55.9973,44.017,149.732,0.882687,-1,-1,-1
273,-1,7.08143,21.1853,58.8857,145.333,0.740302,-1,-1,-1
273,-1,41.7769,10.1326,215.708,431.091,0.714893,-1,-1,-1
273,-1,598.18,128.096,40.161,171.628,0.648337,-1,-1,-1
273,-1,320.613,39.5218,41.925,89.1032,0.606187,-1,-1,-1
273,-1,370.44,113.41,31.002,66.196,0.596127,-1,-1,-1
274,-1,370.468,0,245.624,478.362,0.998281,-1,-1,-1
274,-1,315.356,78.7485,48.486,173.472,0.981881,-1,-1,-1
274,-1,261.465,89.8952,51.578,137.228,0.975459,-1,-1,-1
274,-1,315.946,58,40.154,69.334,0.955879,-1,-1,-1
274,-1,41.0776,14.1355,242.153,444.076,0.920245,-1,-1,-1
274,-1,4.05045,25.6914,116.459,371.097,0.899178,-1,-1,-1
275,-1,372.362,0,247.643,474.769,0.998639,-1,-1,-1
275,-1,30.5147,8.03377,231.381,462.137,0.980667,-1,-1,-1
275,-1,269.535,128.556,38.459,113.497,0.954401,-1,-1,-1
275,-1,305.691,70.7659,44.118,82.9531,0.928513,-1,-1,-1
275,-1,308.645,112.456,51.725,169.101,0.926305,-1,-1,-1
276,-1,386.25,0,239.03,479,0.998686,-1,-1,-1
276,-1,309.72,135.184,48.842,171.531,0.989504,-1,-1,-1
276,-1,262.623,133.691,42.525,134.233,0.979552,-1,-1,-1
276,-1,36.8057,32.2391,230.955,422.071,0.968586,-1,-1,-1
276,-1,301.867,98.6313,43.889,91.8847,0.871958,-1,-1,-1
277,-1,391.825,0,233.4,479,0.998385,-1,-1,-1
277,-1,292.131,153.413,59.385,164.362,0.97684,-1,-1,-1
277,-1,35.4731,30.9631,226.047,427.14,0.968308,-1,-1,-1
277,-1,251.17,147.966,36.321,133.807,0.946084,-1,-1,-1
278,-1,387.031,0,235.814,466.259,0.998509,-1,-1,-1
278,-1,35.301,36.8499,184.606,432.995,0.990809,-1,-1,-1
278,-1,276.182,147.173,67.589,183.887,0.989131,-1,-1,-1
278,-1,201.869,210.34,42.882,113.546,0.868895,-1,-1,-1
278,-1,278.05,116.958,48.774,86.912,0.781428,-1,-1,-1
278,-1,191.175,121.712,47.811,134.728,0.696108,-1,-1,-1
278,-1,230.894,138.518,40.747,139.131,0.688082,-1,-1,-1
278,-1,597.209,100.117,36.848,208.017,0.641589,-1,-1,-1
278,-1,313.872,126.461,36.241,139.799,0.538045,-1,-1,-1
279,-1,392.296,0,216.675,479,0.99357,-1,-1,-1
279,-1,16.3673,55.0193,205.833,403.31,0.98875,-1,-1,-1
279,-1,318.284,139.44,35.551,141.368,0.911505,-1,-1,-1
279,-1,262.518,166.931,66.373,185.83,0.90849,-1,-1,-1
279,-1,191.626,138.131,58.494,177.334,0.884844,-1,-1,-1
279,-1,570.869,18.1048,68.131,378.733,0.767562,-1,-1,-1
280,-1,359.601,0,239.237,462.615,0.993738,-1,-1,-1
280,-1,166.237,152.397,64.935,191.773,0.990699,-1,-1,-1
280,-1,14.4298,48.4891,173.533,403.761,0.971859,-1,-1,-1
280,-1,290.314,145.678,50.118,138.338,0.971169,-1,-1,-1
280,-1,249.16,168.683,51.869,177.76,0.954588,-1,-1,-1
280,-1,551.281,26.4702,87.244,335.294,0.930211,-1,-1,-1
280,-1,238.109,119.111,49.755,82.947,0.799265,-1,-1,-1
281,-1,265.981,134.44,46.403,149.878,0.994852,-1,-1,-1
281,-1,333.154,0,221.428,479,0.993781,-1,-1,-1
281,-1,139.415,134.382,65.321,204.721,0.991893,-1,-1,-1
281,-1,519.711,56.8663,109.48,303.429,0.991118,-1,-1,-1
281,-1,7.13933,20.9099,134.586,458.09,0.972762,-1,-1,-1
281,-1,203.145,102.672,47.743,95.112,0.832758,-1,-1,-1
281,-1,329.611,187.492,42.604,133.143,0.695395,-1,-1,-1
282,-1,319.56,0,251.975,479,0.995973,-1,-1,-1
282,-1,126.509,140.722,49.747,174.542,0.96839,-1,-1,-1
282,-1,508.375,0,107.447,399.315,0.950536,-1,-1,-1
282,-1,9.54321,23.5615,87.5009,446.833,0.938284,-1,-1,-1
282,-1,261.36,132.187,41.015,170.216,0.916095,-1,-1,-1
282,-1,157.789,131.297,72.679,220.564,0.899792,-1,-1,-1
282,-1,290.977,73.3008,41.712,155.322,0.709339,-1,-1,-1
283,-1,341.181,11.2429,250.345,465.744,0.988772,-1,-1,-1
283,-1,136.182,120.831,104.505,265.023,0.968526,-1,-1,-1
283,-1,12.0346,24.4463,92.4484,433.692,0.964153,-1,-1,-1
283,-1,104.131,160.783,46.402,153.656,0.955419,-1,-1,-1
283,-1,262.125,146.718,45.619,161.545,0.950314,-1,-1,-1
283,-1,505.744,38.7814,113.756,375.603,0.863807,-1,-1,-1
283,-1,299.477,96.0656,54.501,204.57,0.842364,-1,-1,-1
283,-1,309.198,86.8364,41.917,70.8356,0.653056,-1,-1,-1
283,-1,151.729,109.441,72.869,110.567,0.642014,-1,-1,-1
284,-1,375.759,0,232.463,461.281,0.996711,-1,-1,-1
284,-1,150.993,134.944,95.118,251.15,0.96775,-1,-1,-1
284,-1,6.21716,26.8306,116.603,432.409,0.967275,-1,-1,-1
284,-1,117.711,157.587,49.463,150.859,0.961856,-1,-1,-1
284,-1,277.703,148.38,38.482,163.649,0.953256,-1,-1,-1
284,-1,301.771,78.0624,70.496,245.667,0.918449,-1,-1,-1
284,-1,168.763,108.902,63.939,111.469,0.804713,-1,-1,-1
284,-1,317.493,89.8289,50.4,83.6451,0.603378,-1,-1,-1
285,-1,391.923,7.94612,244.601,465.335,0.9967,-1,-1,-1
285,-1,0,7.53171,125.136,468.978,0.991921,-1,-1,-1
285,-1,153.875,108.682,106.715,273.459,0.979794,-1,-1,-1
285,-1,301.848,79.7163,105.742,245.366,0.972601,-1,-1,-1
285,-1,121.824,161.094,43.993,153.408,0.946883,-1,-1,-1
285,-1,289.098,150.515,46.525,163.45,0.798767,-1,-1,-1
285,-1,167.617,100.922,73.851,122.829,0.790696,-1,-1,-1
286,-1,429.918,0,207.568,479,0.996412,-1,-1,-1
286,-1,5.4586,10.7552,116.466,468.245,0.994769,-1,-1,-1
286,-1,167.175,106.894,88.147,280.761,0.975332,-1,-1,-1
286,-1,320.821,67.2652,105.359,329.158,0.961995,-1,-1,-1
286,-1,176.208,96.0538,49.906,131.218,0.927945,-1,-1,-1
286,-1,131.486,163.636,44.075,141.264,0.905654,-1,-1,-1
286,-1,250.93,177.644,32.076,124.614,0.85571,-1,-1,-1
286,-1,305.05,159.617,38.444,151.484,0.761863,-1,-1,-1
287,-1,467.722,11.0611,171.278,467.939,0.996103,-1,-1,-1
287,-1,172.579,120.043,102.466,283.267,0.98815,-1,-1,-1
287,-1,324.361,66.627,78.533,242.102,0.987521,-1,-1,-1
287,-1,351.513,57.7921,150.571,399.606,0.986096,-1,-1,-1
287,-1,7.94099,2.14137,114.741,475.539,0.976709,-1,-1,-1
287,-1,120.865,167.161,52.617,156.644,0.972908,-1,-1,-1
287,-1,173.024,103.293,75.577,132.235,0.889906,-1,-1,-1
287,-1,257.155,165.684,38.851,151.646,0.748222,-1,-1,-1
288,-1,376.504,57.6266,148.129,415.201,0.995327,-1,-1,-1
288,-1,179.516,114.996,97.726,288.053,0.975017,-1,-1,-1
288,-1,6.93184,24.925,128.994,448.725,0.974474,-1,-1,-1
288,-1,127.16,147.915,52.921,175.763,0.96717,-1,-1,-1
288,-1,324.245,60.2452,119.805,269.553,0.966291,-1,-1,-1
288,-1,503.942,0,129.131,479,0.964116,-1,-1,-1
288,-1,176.814,92.8389,76.307,118.757,0.776909,-1,-1,-1
288,-1,247.583,169.033,53.489,169.513,0.507403,-1,-1,-1
289,-1,401.5,57.8467,161.771,420.628,0.991985,-1,-1,-1
289,-1,11.904,42.5653,161.258,429.529,0.987527,-1,-1,-1
289,-1,186.359,102.384,98.493,331.278,0.985643,-1,-1,-1
289,-1,354.026,57.1162,101.806,324.884,0.977297,-1,-1,-1
289,-1,144.252,161.172,51.687,167.249,0.967756,-1,-1,-1
289,-1,554.879,31.0167,84.121,444.036,0.950662,-1,-1,-1
289,-1,279.905,168.73,43.193,149.613,0.949444,-1,-1,-1
289,-1,192.098,98.4372,70.641,132.428,0.938648,-1,-1,-1
289,-1,525.884,84.9796,49.251,82.2534,0.86777,-1,-1,-1
290,-1,16.9515,36.4719,141.127,424.108,0.994734,-1,-1,-1
290,-1,389.6,41.6813,226.017,431.326,0.99376,-1,-1,-1
290,-1,372.511,59.723,105.756,321.105,0.98194,-1,-1,-1
290,-1,219.366,139.417,87.732,290.95,0.974723,-1,-1,-1
290,-1,557.598,45.8323,75.886,380.679,0.953784,-1,-1,-1
290,-1,294.993,160.283,46.473,144.469,0.943562,-1,-1,-1
290,-1,156.256,162.971,51.888,151.767,0.934887,-1,-1,-1
290,-1,586.148,77.8232,43.418,183.695,0.910763,-1,-1,-1
290,-1,207.044,93.2344,68.354,142.159,0.872538,-1,-1,-1
291,-1,405.834,35.6754,227.784,434.732,0.997965,-1,-1,-1
291,-1,220.362,103.406,94.743,336.705,0.987226,-1,-1,-1
291,-1,301.057,152.759,55.86,191.01,0.986939,-1,-1,-1
291,-1,29.1374,6.04568,130.848,459.859,0.983219,-1,-1,-1
291,-1,163.75,154.586,46.718,171.379,0.916783,-1,-1,-1
291,-1,593.118,65.3781,44.176,72.9119,0.861779,-1,-1,-1
291,-1,335.777,168.394,34.398,137.359,0.775667,-1,-1,-1
291,-1,223.943,90.7987,74.01,139.977,0.752999,-1,-1,-1
291,-1,385.986,27.2672,100.503,374.757,0.625915,-1,-1,-1
291,-1,382.787,184.75,26.852,111.934,0.551412,-1,-1,-1
292,-1,418.453,26.4609,210.68,425.353,0.996412,-1,-1,-1
292,-1,17.6204,9.46484,183.828,441.203,0.994803,-1,-1,-1
292,-1,230.612,90.7909,98.658,364.325,0.988033,-1,-1,-1
292,-1,316.76,176.299,52.961,171.835,0.975819,-1,-1,-1
292,-1,164.556,165.095,43.877,168.129,0.917009,-1,-1,-1
292,-1,188.848,192.122,40.82,153.029,0.696206,-1,-1,-1
292,-1,432.397,246.273,44.609,156.107,0.596545,-1,-1,-1
293,-1,414.46,0,212.502,447.237,0.996301,-1,-1,-1
293,-1,25.8522,30.156,170.163,418.682,0.99493,-1,-1,-1
293,-1,230.336,78.8735,114.631,370.401,0.989254,-1,-1,-1
293,-1,334.844,166.955,51.825,177.089,0.988526,-1,-1,-1
293,-1,187.338,199.717,44.036,141.956,0.692211,-1,-1,-1
294,-1,433.124,14.9676,149.998,423.589,0.997173,-1,-1,-1
294,-1,238.043,66.0088,122.89,392.023,0.99583,-1,-1,-1
294,-1,37.165,50.7321,170.258,405.898,0.992619,-1,-1,-1
294,-1,353.122,167.397,64.959,150.69,0.986182,-1,-1,-1
294,-1,193.708,180.445,47.575,160.179,0.806276,-1,-1,-1
294,-1,427.605,169.313,39.147,133.036,0.67286,-1,-1,-1
295,-1,244.542,82.9426,128.877,384.441,0.997707,-1,-1,-1
295,-1,436.677,9.9447,160.673,430.762,0.997366,-1,-1,-1
295,-1,42.0863,55.0016,165.713,398.258,0.990964,-1,-1,-1
295,-1,374.415,169.547,55.579,156.137,0.97669,-1,-1,-1
295,-1,215.718,186.867,40.152,110.173,0.970801,-1,-1,-1
295,-1,251.116,55.2729,99.387,174.604,0.696315,-1,-1,-1
295,-1,22.4749,126.23,49.6701,130.421,0.671077,-1,-1,-1
296,-1,451.113,3.04042,167.262,448.284,0.997787,-1,-1,-1
296,-1,251.374,62.5155,116.563,393.093,0.995219,-1,-1,-1
296,-1,14.9396,51.6599,203.147,406.912,0.994256,-1,-1,-1
296,-1,384.709,168.405,52.612,161.759,0.991009,-1,-1,-1
296,-1,217.964,193.364,37.994,109.814,0.945973,-1,-1,-1
296,-1,10.1989,109.83,64.5722,204.4,0.787525,-1,-1,-1
296,-1,453.862,159.637,38.575,161.262,0.50491,-1,-1,-1
297,-1,466.61,5.61143,136.28,471.913,0.996593,-1,-1,-1
297,-1,392.361,159.756,60.08,180.079,0.996074,-1,-1,-1
297,-1,242.87,38.0154,132.466,425.961,0.994131,-1,-1,-1
297,-1,55.8065,13.1778,171.198,439.897,0.991459,-1,-1,-1
297,-1,0.881706,103.715,77.916,341.815,0.978645,-1,-1,-1
297,-1,226.532,195.442,34.414,115.29,0.8846,-1,-1,-1
297,-1,510.743,4.21004,51.454,77.8373,0.584099,-1,-1,-1
298,-1,478.429,8.39513,154.66,470.605,0.996813,-1,-1,-1
298,-1,237.279,117.115,142.513,354.601,0.995368,-1,-1,-1
298,-1,400.353,157.091,80.56,184.427,0.994642,-1,-1,-1
298,-1,27.4077,69.2534,212.062,380.8,0.986753,-1,-1,-1
298,-1,0,99.4097,73.2608,320.359,0.980691,-1,-1,-1
298,-1,2.81787,123.07,48.4468,93.216,0.972329,-1,-1,-1
298,-1,237.564,7.99668,121.959,251.5,0.64451,-1,-1,-1
299,-1,479.887,0,152.914,469.867,0.996404,-1,-1,-1
299,-1,247.15,131.228,135.139,332.211,0.991015,-1,-1,-1
299,-1,23.0929,59.8306,252.291,391.255,0.990095,-1,-1,-1
299,-1,401.907,166.156,105.263,169.735,0.972305,-1,-1,-1
299,-1,7.36992,154.109,51.8537,204.684,0.831648,-1,-1,-1
299,-1,0,126.269,44.1642,72.485,0.810623,-1,-1,-1
299,-1,238.567,18.5048,113.242,210.302,0.783514,-1,-1,-1
299,-1,366.356,172.649,29.964,91.163,0.680681,-1,-1,-1
300,-1,233.277,106.452,148.567,360.853,0.988625,-1,-1,-1
300,-1,430.229,167.317,70.091,167.731,0.986531,-1,-1,-1
300,-1,1.03739,160.652,45.9867,190.434,0.985026,-1,-1,-1
300,-1,483.126,0,150.831,468.949,0.983799,-1,-1,-1
300,-1,50.3344,27.4583,283.187,451.542,0.978834,-1,-1,-1
300,-1,372.026,164.914,40.94,139.46,0.959015,-1,-1,-1
300,-1,204.986,0.0371704,149.358,282.851,0.595792,-1,-1,-1
301,-1,495.727,0,139.599,460.351,0.995725,-1,-1,-1
301,-1,2.17678,145.781,46.0675,184.628,0.994871,-1,-1,-1
301,-1,108.018,15.5049,237.169,463.495,0.988801,-1,-1,-1
301,-1,440.324,165.458,62.287,175.326,0.987482,-1,-1,-1
301,-1,377.371,169.597,52.292,131.635,0.960546,-1,-1,-1
301,-1,242.342,151.193,123.177,318.457,0.861794,-1,-1,-1
302,-1,498.753,0,134.546,462.139,0.997395,-1,-1,-1
302,-1,448.885,168.469,62.155,149.373,0.995039,-1,-1,-1
302,-1,111.194,16.1174,242.888,460.374,0.983419,-1,-1,-1
302,-1,370.065,151.91,54.968,156.24,0.980913,-1,-1,-1
302,-1,339.082,190.17,32.729,110.453,0.939368,-1,-1,-1
302,-1,74.6328,108.61,52.0772,159.88,0.822895,-1,-1,-1
302,-1,63.8468,67.902,88.7462,344.618,0.761862,-1,-1,-1
302,-1,9.49308,170.622,52.4028,131.26,0.700529,-1,-1,-1
302,-1,320.784,189.128,32.89,81.415,0.50881,-1,-1,-1
303,-1,459.664,164.294,52.16,161.131,0.993689,-1,-1,-1
303,-1,376.846,164.323,53.492,136.46,0.991306,-1,-1,-1
303,-1,45.6502,112.102,95.4598,262.52,0.985121,-1,-1,-1
303,-1,513.663,16.2433,116.823,394.603,0.970994,-1,-1,-1
303,-1,333.471,192.527,35.153,121.93,0.94094,-1,-1,-1
303,-1,132.944,99.2994,202.752,366.295,0.915178,-1,-1,-1
303,-1,15.7283,148.922,49.7157,157.538,0.872219,-1,-1,-1
303,-1,301.3,170.664,37.821,147.707,0.765639,-1,-1,-1
303,-1,174.258,0,130.343,253.908,0.564981,-1,-1,-1
304,-1,11.9384,92.1775,111.762,291.856,0.997192,-1,-1,-1
304,-1,527.458,30.8418,106.112,377,0.980799,-1,-1,-1
304,-1,384.084,150.058,46.371,147.004,0.980671,-1,-1,-1
304,-1,288.165,159.47,53.858,164.146,0.980211,-1,-1,-1
304,-1,455.91,157.298,61.673,182.892,0.973507,-1,-1,-1
304,-1,114.983,99.6569,174.798,354.262,0.926113,-1,-1,-1
304,-1,340.514,191.159,36.959,121.332,0.902882,-1,-1,-1
305,-1,2.15826,90.5069,97.37,286.398,0.998207,-1,-1,-1
305,-1,388.733,152.224,43.302,155.52,0.986879,-1,-1,-1
305,-1,271.845,150.063,44.838,156.319,0.976712,-1,-1,-1
305,-1,457.99,167.131,68.574,166.282,0.974605,-1,-1,-1
305,-1,516.881,40.7095,108.993,346.957,0.973327,-1,-1,-1
305,-1,343.439,190.542,34.887,121.305,0.972781,-1,-1,-1
305,-1,295.212,172.253,49.289,152.276,0.92407,-1,-1,-1
305,-1,25.577,52.1905,238.274,400.904,0.851749,-1,-1,-1
305,-1,43.4383,88.385,41.4745,68.088,0.548251,-1,-1,-1
306,-1,465.152,165.888,55.676,174.634,0.991425,-1,-1,-1
306,-1,389.715,152.411,48.44,159.56,0.982361,-1,-1,-1
306,-1,513.027,131.001,100.031,254.981,0.976687,-1,-1,-1
306,-1,259.722,159.069,53.051,138.565,0.974765,-1,-1,-1
306,-1,2.089,65.3875,236.56,383.325,0.968257,-1,-1,-1
306,-1,310.399,164.526,44.532,156.381,0.943055,-1,-1,-1
306,-1,349.149,190.863,38.274,127.971,0.929059,-1,-1,-1
306,-1,14.3639,81.7162,55.545,99.3308,0.868513,-1,-1,-1
307,-1,491.829,147.853,131.643,233.621,0.983483,-1,-1,-1
307,-1,390.518,162.864,44.459,140.484,0.981656,-1,-1,-1
307,-1,475.093,161.855,54.547,174.728,0.981083,-1,-1,-1
307,-1,266.74,155.427,41.475,132.563,0.972787,-1,-1,-1
307,-1,302.327,159.136,46.073,155.789,0.965768,-1,-1,-1
307,-1,28.0869,28.3663,253.407,414.654,0.918258,-1,-1,-1
307,-1,351.112,185.898,37.782,131.914,0.888044,-1,-1,-1
307,-1,215.377,126.518,58.357,181.539,0.602418,-1,-1,-1
308,-1,488.682,122.76,132.385,263.227,0.994584,-1,-1,-1
308,-1,146.753,65.9243,131.674,368.662,0.994537,-1,-1,-1
308,-1,309.986,161.37,47.862,156.812,0.988687,-1,-1,-1
308,-1,395.043,160.76,45.218,135.439,0.981819,-1,-1,-1
308,-1,358.282,180.06,33.753,130.426,0.955959,-1,-1,-1
308,-1,252.102,150.917,46.28,143.749,0.719963,-1,-1,-1
309,-1,484.439,120.369,137.899,271.579,0.99757,-1,-1,-1
309,-1,110.13,65.2221,174.015,357.014,0.994985,-1,-1,-1
309,-1,310.19,145.071,52.27,180.984,0.988136,-1,-1,-1
309,-1,405.667,178.223,46.871,125.227,0.973796,-1,-1,-1
309,-1,364.134,181.244,33.649,125.938,0.959113,-1,-1,-1
309,-1,406.394,158.312,39.61,60.061,0.677588,-1,-1,-1
309,-1,469.567,148.251,44.62,145.412,0.572653,-1,-1,-1
310,-1,491.98,123.418,120.494,270.919,0.997684,-1,-1,-1
310,-1,130.314,51.3851,148.981,421.147,0.994046,-1,-1,-1
310,-1,303.986,156.023,63.845,171.079,0.991293,-1,-1,-1
310,-1,397.705,162.832,48.284,149.447,0.98,-1,-1,-1
310,-1,362.173,184.561,42.783,134.925,0.959927,-1,-1,-1
310,-1,27.4855,140.682,60.6548,179.229,0.958151,-1,-1,-1
310,-1,460.557,165.795,40.806,134.541,0.811617,-1,-1,-1
310,-1,79.3887,79.7911,89.0693,343.477,0.690045,-1,-1,-1
311,-1,490.894,121.49,128.23,301.83,0.998187,-1,-1,-1
311,-1,133.166,52.5285,148.94,397.323,0.99525,-1,-1,-1
311,-1,310.506,169.075,55.545,161.173,0.991188,-1,-1,-1
311,-1,37.171,73.2146,111.629,368.873,0.975697,-1,-1,-1
311,-1,363.426,188.33,43.955,135.746,0.972736,-1,-1,-1
311,-1,403.06,172.545,46.268,145.38,0.964453,-1,-1,-1
311,-1,458.035,169.674,45.423,131.408,0.95381,-1,-1,-1
311,-1,6.72414,166.599,33.6083,133.642,0.772219,-1,-1,-1
311,-1,80.9134,17.5637,52.5446,65.9928,0.591056,-1,-1,-1
312,-1,2.54076,68.6139,136.361,361.515,0.99696,-1,-1,-1
312,-1,487.593,106.522,125.843,319.248,0.996076,-1,-1,-1
312,-1,114.893,62.3667,170.3,390.802,0.995513,-1,-1,-1
312,-1,311.131,154.178,60.228,186.625,0.994713,-1,-1,-1
312,-1,367.281,186.925,45.538,137.716,0.955322,-1,-1,-1
312,-1,405.693,161.585,45.961,170.285,0.932175,-1,-1,-1
312,-1,454.808,164.737,41.145,141.045,0.930922,-1,-1,-1
312,-1,85.6476,16.021,36.2234,89.09,0.820516,-1,-1,-1
313,-1,483.158,103.688,136.714,350.131,0.99892,-1,-1,-1
313,-1,112.568,57.7706,172.346,396.399,0.998017,-1,-1,-1
313,-1,2.46211,43.4402,94.169,377.704,0.995746,-1,-1,-1
313,-1,315.551,160.455,52.842,176.37,0.989062,-1,-1,-1
313,-1,403.018,165.184,44.649,148.936,0.976658,-1,-1,-1
313,-1,443.64,164.588,38.966,129.967,0.962387,-1,-1,-1
313,-1,370.649,185.623,42.492,142.61,0.949418,-1,-1,-1
313,-1,71.0045,27.3117,28.8888,55.4524,0.708738,-1,-1,-1
314,-1,479.146,91.8139,139.479,359.039,0.998821,-1,-1,-1
314,-1,311.159,152.984,59.731,184.745,0.995046,-1,-1,-1
314,-1,82.4861,81.6995,201.258,385.128,0.993863,-1,-1,-1
314,-1,403.167,161.419,49.258,151.396,0.984246,-1,-1,-1
314,-1,365.888,182.232,41.259,142.627,0.973579,-1,-1,-1
314,-1,438.94,161.655,41.891,138.258,0.935671,-1,-1,-1
314,-1,16.1427,21.3617,111.79,409.152,0.906161,-1,-1,-1
314,-1,49.8889,14.4077,45.2357,104.415,0.830873,-1,-1,-1
315,-1,481.655,90.6126,140.825,380.817,0.999216,-1,-1,-1
315,-1,409.374,156.725,56.14,163.783,0.991976,-1,-1,-1
315,-1,91.0559,52.7683,213.976,409.251,0.988528,-1,-1,-1
315,-1,319.218,164.217,54.026,171.993,0.980108,-1,-1,-1
315,-1,12.1399,161.367,72.5426,170.956,0.966789,-1,-1,-1
315,-1,370.842,187.537,39.139,143.245,0.959938,-1,-1,-1
315,-1,42.4274,7.51421,49.7835,120.135,0.577598,-1,-1,-1
316,-1,487.935,53.6911,143.559,416.306,0.997654,-1,-1,-1
316,-1,26.4181,146.872,59.411,189.149,0.997432,-1,-1,-1
316,-1,84.205,64.7765,213.931,395.639,0.992401,-1,-1,-1
316,-1,326.054,150.735,58.253,181.486,0.970497,-1,-1,-1
316,-1,376.885,191.84,41.409,142.537,0.957544,-1,-1,-1
316,-1,425.133,160.935,46.634,144.081,0.945172,-1,-1,-1
317,-1,499.825,31.7956,134.449,447.204,0.996862,-1,-1,-1
317,-1,37.1347,144.124,43.7138,172.608,0.993174,-1,-1,-1
317,-1,135.003,38.55,158.766,429.164,0.991563,-1,-1,-1
317,-1,327.347,151.102,65.024,199.593,0.991152,-1,-1,-1
317,-1,418.184,158.148,56.852,172.048,0.967248,-1,-1,-1
317,-1,393.443,183.897,51.688,150.838,0.963518,-1,-1,-1
317,-1,95.8388,192.202,63.7992,244.745,0.611863,-1,-1,-1
317,-1,427.281,155.014,34.873,64.977,0.524113,-1,-1,-1
318,-1,503.736,40.9501,128.79,407.831,0.99651,-1,-1,-1
318,-1,329.767,148.725,69.068,203.03,0.994971,-1,-1,-1
318,-1,105.5,46.8169,203.071,414.505,0.994762,-1,-1,-1
318,-1,36.0256,153.655,50.8457,161.548,0.993574,-1,-1,-1
318,-1,400.928,180.368,48.792,157.355,0.977086,-1,-1,-1
318,-1,428.455,170.157,53.055,160.04,0.824308,-1,-1,-1
318,-1,442.098,162.606,33.416,76.565,0.507659,-1,-1,-1
319,-1,40.4918,151.501,51.1351,173.589,0.995829,-1,-1,-1
319,-1,522.614,0,116.386,475.025,0.994922,-1,-1,-1
319,-1,111.07,53.6738,196.727,413.013,0.993174,-1,-1,-1
319,-1,328.914,152.937,83.79,190.514,0.991802,-1,-1,-1
319,-1,416.98,184.684,44.036,142.415,0.969078,-1,-1,-1
319,-1,454.573,168.735,36.969,148.136,0.522374,-1,-1,-1
320,-1,42.7266,147.274,59.2584,172.227,0.996234,-1,-1,-1
320,-1,114.912,101.135,226.476,354.093,0.995066,-1,-1,-1
320,-1,346.758,134.574,74.429,209.334,0.994398,-1,-1,-1
320,-1,514.981,20.8773,124.019,426.516,0.992205,-1,-1,-1
320,-1,431.518,175.856,54.258,158.316,0.981748,-1,-1,-1
321,-1,56.8431,138.659,50.1139,173.533,0.996731,-1,-1,-1
321,-1,362.017,124.954,71.126,222.543,0.996511,-1,-1,-1
321,-1,144.216,47.9014,194.795,418.237,0.989873,-1,-1,-1
321,-1,459.626,172.731,55.468,157.466,0.97763,-1,-1,-1
321,-1,544.859,57.0257,92.213,271.136,0.86386,-1,-1,-1
321,-1,159.578,120.89,61.086,155.409,0.635172,-1,-1,-1
322,-1,61.6689,127.66,56.2571,174.67,0.995416,-1,-1,-1
322,-1,195.441,17.6742,142.479,459.969,0.989352,-1,-1,-1
322,-1,469.058,169.635,73.94,144.054,0.979053,-1,-1,-1
322,-1,387.733,116.284,62.45,233.385,0.973645,-1,-1,-1
322,-1,152.61,112.108,60.655,218.018,0.966327,-1,-1,-1
322,-1,533.327,152.94,49.781,98.84,0.960279,-1,-1,-1
322,-1,343.3,152.613,41.273,138.957,0.917919,-1,-1,-1
322,-1,523.842,160.269,29.565,122.46,0.631585,-1,-1,-1
323,-1,75.3268,127.883,64.2512,184.181,0.997849,-1,-1,-1
323,-1,190.374,34.5211,182.167,444.479,0.988241,-1,-1,-1
323,-1,162.163,100.321,53.919,229.085,0.979547,-1,-1,-1
323,-1,413.483,110.528,58.457,202.221,0.964073,-1,-1,-1
323,-1,343.39,153.349,57.427,164.093,0.962202,-1,-1,-1
323,-1,542.547,144.104,54.62,74.487,0.950427,-1,-1,-1
323,-1,492,159.447,50.74,165.976,0.916457,-1,-1,-1
323,-1,469.281,141.88,38.112,147.496,0.709239,-1,-1,-1
323,-1,535.713,166.998,36.58,149.327,0.543798,-1,-1,-1
323,-1,164.714,103.806,35.588,73.279,0.511382,-1,-1,-1
324,-1,80.4007,124.563,58.6803,191.322,0.997024,-1,-1,-1
324,-1,205.467,39.0935,173.484,439.906,0.993498,-1,-1,-1
324,-1,416.539,94.7304,70.257,252.085,0.991513,-1,-1,-1
324,-1,509.327,143.023,66.895,182.262,0.989042,-1,-1,-1
324,-1,155.354,100.947,57.002,228.321,0.987844,-1,-1,-1
324,-1,363.046,153.487,53.653,167.159,0.975588,-1,-1,-1
324,-1,543.268,121.408,34.695,60.082,0.636529,-1,-1,-1
324,-1,556.123,146.524,41.127,134.283,0.557231,-1,-1,-1
325,-1,138.139,88.4669,73.025,239.583,0.997059,-1,-1,-1
325,-1,83.6155,127.469,53.2625,161.509,0.993794,-1,-1,-1
325,-1,205.056,27.6703,178.639,420.028,0.988922,-1,-1,-1
325,-1,423.195,112.682,73.414,224.361,0.987515,-1,-1,-1
325,-1,368.901,138.112,60.681,189.465,0.958464,-1,-1,-1
325,-1,514.793,143.873,73.334,194.02,0.943207,-1,-1,-1
325,-1,531.841,118.388,52.985,91.513,0.924667,-1,-1,-1
326,-1,127.683,91.7435,70.829,243.68,0.994495,-1,-1,-1
326,-1,418.927,97.6742,86.354,251.34,0.991662,-1,-1,-1
326,-1,210.021,29.1494,181.638,420.168,0.991381,-1,-1,-1
326,-1,75.1655,134.587,60.2635,161.515,0.985608,-1,-1,-1
326,-1,378.327,144.253,53.628,188.037,0.980286,-1,-1,-1
326,-1,515.937,110.592,93.081,227.393,0.97748,-1,-1,-1
326,-1,538.861,122.007,54.889,70.43,0.511252,-1,-1,-1
327,-1,531.561,120.741,98.97,202.511,0.996156,-1,-1,-1
327,-1,117.033,88.1933,74.787,258.615,0.995314,-1,-1,-1
327,-1,221.832,8.99017,185.047,446.989,0.990008,-1,-1,-1
327,-1,72.4705,121.59,58.9255,177.639,0.98659,-1,-1,-1
327,-1,446.093,98.7535,64.532,250.47,0.974812,-1,-1,-1
327,-1,1.05367,128.567,32.4312,167.608,0.960074,-1,-1,-1
327,-1,387.801,141.046,41.336,167.517,0.910596,-1,-1,-1
327,-1,566.651,108.836,42.082,49.072,0.584791,-1,-1,-1
327,-1,411.13,136.967,51.57,193.398,0.581206,-1,-1,-1
328,-1,77.3703,71.9854,104.197,270.899,0.997457,-1,-1,-1
328,-1,201.261,14.6176,206.469,432.87,0.994517,-1,-1,-1
328,-1,555.686,122.943,80.457,211.542,0.993076,-1,-1,-1
328,-1,438.61,104.864,103.238,234.601,0.987374,-1,-1,-1
328,-1,0,145.313,33.194,147.859,0.985039,-1,-1,-1
328,-1,388.518,135.995,56.644,201.204,0.964311,-1,-1,-1
328,-1,577.222,101.55,42.071,53.38,0.68309,-1,-1,-1
328,-1,524.559,111.911,50.963,199.179,0.53293,-1,-1,-1
329,-1,67.4363,69.1631,95.2337,278.17,0.998016,-1,-1,-1
329,-1,206.74,19.4523,202.148,447.408,0.994449,-1,-1,-1
329,-1,549.575,117.026,89.425,216.089,0.993604,-1,-1,-1
329,-1,517.449,137.964,38.561,169.669,0.963108,-1,-1,-1
329,-1,430.051,107.511,97.358,235.563,0.935264,-1,-1,-1
329,-1,395.693,137.032,58.893,169.074,0.897494,-1,-1,-1
329,-1,576.896,109.991,35.176,50.685,0.541212,-1,-1,-1
330,-1,59.0288,64.4709,86.0022,306.053,0.99808,-1,-1,-1
330,-1,552.846,124.718,86.154,217.423,0.992249,-1,-1,-1
330,-1,218.732,65.565,204.722,399.236,0.983136,-1,-1,-1
330,-1,429.566,116.072,97.87,236.706,0.978343,-1,-1,-1
330,-1,390.645,151.296,65.429,164.361,0.948519,-1,-1,-1
330,-1,512.943,131.582,43.686,168.738,0.945931,-1,-1,-1
330,-1,13.5081,135.806,42.7401,108.838,0.63083,-1,-1,-1
330,-1,69.4395,59.8783,46.6615,79.8867,0.597353,-1,-1,-1
331,-1,41.8429,53.3191,91.7171,321.25,0.996933,-1,-1,-1
331,-1,241.535,22.1852,184.144,456.815,0.996688,-1,-1,-1
331,-1,560,104.32,77.557,240.092,0.995331,-1,-1,-1
331,-1,447.899,110.96,82.955,249.478,0.962959,-1,-1,-1
331,-1,406.389,141.111,48.309,171.855,0.906423,-1,-1,-1
331,-1,5.75831,132.973,40.8419,143.996,0.874062,-1,-1,-1
331,-1,522.135,131.524,35.348,101.534,0.832664,-1,-1,-1
331,-1,111.276,126.6,35.793,139.612,0.642272,-1,-1,-1
332,-1,7.72308,45.1776,110.476,317.366,0.998924,-1,-1,-1
332,-1,558.073,93.7469,77.032,235.488,0.998874,-1,-1,-1
332,-1,244.578,24.6203,193.851,442.127,0.990734,-1,-1,-1
332,-1,462.386,93.1957,72.717,250.98,0.988529,-1,-1,-1
332,-1,422.961,143.123,41.763,84.149,0.922782,-1,-1,-1
333,-1,1.12564,34.6272,105.864,328.396,0.998735,-1,-1,-1
333,-1,574.195,103.911,56.326,226.431,0.997378,-1,-1,-1
333,-1,452.093,92.7866,94.97,263.046,0.995522,-1,-1,-1
333,-1,233.185,47.5559,204.928,407.179,0.928336,-1,-1,-1
333,-1,417.047,137.631,49.374,180.453,0.922774,-1,-1,-1
334,-1,462.918,85.0983,92.479,271.526,0.996988,-1,-1,-1
334,-1,9.75793,47.0836,76.3265,306.465,0.996628,-1,-1,-1
334,-1,577.108,104.236,54.69,227.397,0.995705,-1,-1,-1
334,-1,232.253,8.81525,196.062,444.107,0.932259,-1,-1,-1
334,-1,426.826,138.897,53.965,199.933,0.878085,-1,-1,-1
335,-1,570.155,95.6963,67.912,236.437,0.998329,-1,-1,-1
335,-1,33.0176,115.757,62.7839,175.725,0.994832,-1,-1,-1
335,-1,441.618,96.5854,111.308,266.331,0.994389,-1,-1,-1
335,-1,229.777,30.3684,201.102,448.632,0.982842,-1,-1,-1
335,-1,416.855,145.485,66.001,189.481,0.93894,-1,-1,-1
335,-1,3.57169,55.9024,58.7466,289.604,0.900024,-1,-1,-1
335,-1,433.824,140.144,38.371,73.682,0.861159,-1,-1,-1
336,-1,36.1881,124.951,58.3387,156.448,0.996347,-1,-1,-1
336,-1,567.385,97.1678,71.615,238.956,0.994167,-1,-1,-1
336,-1,449.528,75.7028,110.107,274.003,0.982859,-1,-1,-1
336,-1,240.636,24.2661,185,434.798,0.98012,-1,-1,-1
336,-1,425.451,128.05,58.863,209.686,0.892888,-1,-1,-1
336,-1,2.92516,192.439,33.6881,99.611,0.500063,-1,-1,-1
337,-1,443.96,82.4592,126.86,279.829,0.995593,-1,-1,-1
337,-1,28.8909,116.262,55.1786,167.34,0.993964,-1,-1,-1
337,-1,235.608,7.01518,185.649,462.509,0.992315,-1,-1,-1
337,-1,589.007,94.6103,43.841,217.652,0.987363,-1,-1,-1
337,-1,417.766,132.855,77.06,214.696,0.797059,-1,-1,-1
337,-1,448.049,134.592,33.61,69.862,0.530748,-1,-1,-1
338,-1,226.341,40.2471,198.672,431.104,0.993648,-1,-1,-1
338,-1,17.5613,132.617,64.5187,163.473,0.992966,-1,-1,-1
338,-1,467.843,67.4136,115.003,287.177,0.992061,-1,-1,-1
338,-1,599.22,97.9989,38.799,202.635,0.934339,-1,-1,-1
338,-1,441.295,118.662,56.726,228.623,0.850691,-1,-1,-1
339,-1,233.014,25.8734,193.426,430.937,0.995921,-1,-1,-1
339,-1,23.0186,129.639,58.8659,159.063,0.993078,-1,-1,-1
339,-1,447.6,87.2694,133.304,273.731,0.990179,-1,-1,-1
339,-1,592.658,110.112,46.31,168.966,0.940357,-1,-1,-1
340,-1,469.174,84.3644,128.566,288.677,0.99435,-1,-1,-1
340,-1,235.448,0,199.228,449.536,0.987337,-1,-1,-1
340,-1,11.7705,125.266,73.0271,163.93,0.985616,-1,-1,-1
340,-1,602.179,111.276,36.821,189.011,0.90533,-1,-1,-1
340,-1,432.772,111.666,80.813,226.159,0.766296,-1,-1,-1
341,-1,487.828,70.6614,125.451,300.402,0.993907,-1,-1,-1
341,-1,26.8359,128.1,74.7061,167.938,0.992417,-1,-1,-1
341,-1,224.082,15.4215,217.701,441.288,0.989901,-1,-1,-1
341,-1,431.021,127.664,54.302,196.07,0.910363,-1,-1,-1
341,-1,520.197,68.5293,64.514,164.792,0.807821,-1,-1,-1
341,-1,226.39,163.409,33.485,86.881,0.613368,-1,-1,-1
342,-1,499.468,68.8394,132.519,307.413,0.996798,-1,-1,-1
342,-1,234.898,0,199.807,458.777,0.994301,-1,-1,-1
342,-1,26.315,130.716,72.8443,169.749,0.992411,-1,-1,-1
342,-1,227.615,175.482,32.889,82.126,0.976267,-1,-1,-1
342,-1,444.717,98.2917,41.668,234.362,0.933413,-1,-1,-1
342,-1,2.13161,114.844,45.1952,188.946,0.677497,-1,-1,-1
342,-1,488.816,106.271,43.937,134.825,0.575242,-1,-1,-1
343,-1,46.6779,125.943,58.9621,180.036,0.994905,-1,-1,-1
343,-1,544.737,51.2992,92.138,319.883,0.993092,-1,-1,-1
343,-1,218.743,183.342,34.352,73.526,0.989206,-1,-1,-1
343,-1,260.263,0,187.779,453.296,0.982552,-1,-1,-1
343,-1,0,101.38,47.8301,205.526,0.960648,-1,-1,-1
343,-1,445.853,110.682,52.15,196.516,0.867862,-1,-1,-1
343,-1,506.903,123.225,47.751,120.697,0.829232,-1,-1,-1
344,-1,549.667,55.6344,89.333,325.159,0.998096,-1,-1,-1
344,-1,53.4339,130.419,53.2201,169.366,0.995522,-1,-1,-1
344,-1,0.812761,119.552,52.822,179.695,0.99415,-1,-1,-1
344,-1,218.257,174.592,36.733,93.926,0.989536,-1,-1,-1
344,-1,264.014,7.97624,191.93,439.256,0.986965,-1,-1,-1
344,-1,520.624,123.673,46.607,127.717,0.797892,-1,-1,-1
344,-1,456.944,105.465,51.533,182.018,0.733845,-1,-1,-1
344,-1,501.887,99.7285,81.7,264.202,0.704269,-1,-1,-1
345,-1,521.532,78.9524,113.659,320.884,0.996121,-1,-1,-1
345,-1,2.48714,125.942,59.7112,153.061,0.995168,-1,-1,-1
345,-1,277.199,15.7874,203.325,438.39,0.993616,-1,-1,-1
345,-1,212.448,167.664,38.614,98.329,0.989873,-1,-1,-1
345,-1,55.9164,131.819,57.5176,172.578,0.975517,-1,-1,-1
345,-1,455.868,96.1296,55.35,211.45,0.95488,-1,-1,-1
345,-1,258.63,150.799,68.238,277.224,0.79976,-1,-1,-1
345,-1,529.952,120.794,60.73,142.265,0.590156,-1,-1,-1
346,-1,300.592,10.1782,210.118,450.572,0.995935,-1,-1,-1
346,-1,536.918,106.194,85.252,272.69,0.995381,-1,-1,-1
346,-1,4.59639,135.051,75.9893,168.486,0.994422,-1,-1,-1
346,-1,208.73,174.45,53.02,101.231,0.989846,-1,-1,-1
346,-1,66.454,120.827,60.807,186.436,0.989782,-1,-1,-1
346,-1,554.432,116.593,50.88,119.955,0.666151,-1,-1,-1
346,-1,457.54,94.7843,67.006,201.19,0.646021,-1,-1,-1
346,-1,281.817,142.541,70.026,298.692,0.564041,-1,-1,-1
347,-1,26.6505,137.52,58.5116,167.189,0.996899,-1,-1,-1
347,-1,301.4,22.1664,239.266,388.698,0.993032,-1,-1,-1
347,-1,208.821,178.197,61.109,95.615,0.989296,-1,-1,-1
347,-1,89.8227,133.502,47.3933,165.146,0.983776,-1,-1,-1
347,-1,570.876,124.558,62.229,110.088,0.975205,-1,-1,-1
347,-1,571.428,196.199,63.007,184.876,0.715028,-1,-1,-1
348,-1,212.668,174.651,46.905,96.578,0.992364,-1,-1,-1
348,-1,37.3899,130.544,59.3205,154.65,0.988548,-1,-1,-1
348,-1,93.4687,131.252,55.7123,175.183,0.987935,-1,-1,-1
348,-1,325.984,3.586,211.683,458.559,0.978136,-1,-1,-1
348,-1,588.341,115.965,35.481,116.275,0.857669,-1,-1,-1
348,-1,579.956,109.787,59.044,276.054,0.600887,-1,-1,-1
349,-1,103.207,139.933,56.846,153.553,0.994002,-1,-1,-1
349,-1,45.5695,125.242,57.0675,170.128,0.993139,-1,-1,-1
349,-1,204.695,168.604,47.297,107.693,0.992303,-1,-1,-1
349,-1,320.424,1.47072,225.299,446.266,0.977052,-1,-1,-1
349,-1,531.481,133.867,38.241,109.604,0.899591,-1,-1,-1
349,-1,498.505,79.8741,60.288,212.121,0.878067,-1,-1,-1
350,-1,45.8853,131.374,70.7777,177.399,0.996768,-1,-1,-1
350,-1,115.817,138.814,50.262,163.379,0.992713,-1,-1,-1
350,-1,202.9,174.027,45.001,99.282,0.990106,-1,-1,-1
350,-1,341.866,0,213.246,463.094,0.972215,-1,-1,-1
350,-1,500.221,70.6927,80.043,306.89,0.836318,-1,-1,-1
350,-1,543.161,135.341,38.675,126.944,0.821673,-1,-1,-1
350,-1,311.729,89.026,91.97,370.839,0.565067,-1,-1,-1
351,-1,48.0614,122.459,71.6096,170.074,0.98799,-1,-1,-1
351,-1,198.6,174.937,38.784,103.099,0.987055,-1,-1,-1
351,-1,129.516,130.145,40.442,163.956,0.984086,-1,-1,-1
351,-1,337.016,0,209.956,475.308,0.983594,-1,-1,-1
351,-1,553.454,144.602,52.905,103.546,0.975815,-1,-1,-1
351,-1,512.32,60.3521,87.462,330.103,0.969657,-1,-1,-1
351,-1,514.117,72.8007,55.551,150.685,0.501868,-1,-1,-1
352,-1,506.134,71.6003,106.076,339.659,0.997289,-1,-1,-1
352,-1,200.273,171.891,39.652,106.131,0.989674,-1,-1,-1
352,-1,126.305,125.305,48.901,176.472,0.983198,-1,-1,-1
352,-1,61.9861,131.671,75.5329,159.633,0.980335,-1,-1,-1
352,-1,341.305,6.0401,217.259,460.078,0.930697,-1,-1,-1
352,-1,0,89.143,38.5356,75.105,0.92515,-1,-1,-1
352,-1,312.235,53.8681,96.841,416.478,0.673004,-1,-1,-1
353,-1,515.629,49.2074,115.231,359.569,0.997396,-1,-1,-1
353,-1,350.381,3.93336,213.169,450.465,0.972283,-1,-1,-1
353,-1,76.7876,141.656,72.3724,153.001,0.96836,-1,-1,-1
353,-1,0,87.2506,36.7367,94.2294,0.967052,-1,-1,-1
353,-1,150.609,122.442,45.317,166.629,0.957409,-1,-1,-1
353,-1,201.398,163.852,41.306,104.491,0.910101,-1,-1,-1
353,-1,319.779,76.7901,87.71,383.622,0.521449,-1,-1,-1
354,-1,517.223,42.9382,119.155,382.205,0.997933,-1,-1,-1
354,-1,150.363,123.408,50.593,169.983,0.988423,-1,-1,-1
354,-1,344.977,0.373306,214.072,466.283,0.979554,-1,-1,-1
354,-1,0,83.4927,49.7648,204.654,0.966071,-1,-1,-1
354,-1,86.7175,129.189,56.5285,166.744,0.965432,-1,-1,-1
354,-1,195.675,158.203,41.298,121.259,0.821671,-1,-1,-1
355,-1,160.205,135.495,72.076,169.077,0.995512,-1,-1,-1
355,-1,542.681,21.2141,96.095,419.902,0.994515,-1,-1,-1
355,-1,0,64.9523,69.9007,313.409,0.990603,-1,-1,-1
355,-1,330.988,15.7518,231.596,450.707,0.990202,-1,-1,-1
355,-1,108.856,136.34,59.342,171.563,0.980711,-1,-1,-1
355,-1,548.739,53.2202,40.776,58.2318,0.778227,-1,-1,-1
356,-1,0,48.2569,67.7756,312.997,0.998708,-1,-1,-1
356,-1,169.777,132.759,55.718,161.204,0.995063,-1,-1,-1
356,-1,545.511,27.696,93.489,422.346,0.990395,-1,-1,-1
356,-1,118.191,132.336,55.143,172.073,0.975817,-1,-1,-1
356,-1,358.45,23.0334,231.415,445.706,0.972899,-1,-1,-1
356,-1,545.464,42.9207,50.822,76.6063,0.902452,-1,-1,-1
357,-1,174.346,127.76,57.094,174.905,0.993675,-1,-1,-1
357,-1,120.006,112.353,63.686,189.715,0.993371,-1,-1,-1
357,-1,0,23.5605,92.5468,346.807,0.99265,-1,-1,-1
357,-1,551.225,40.3601,87.775,368.744,0.992034,-1,-1,-1
357,-1,322.574,13.1387,240.782,441.047,0.984915,-1,-1,-1
357,-1,540.781,17.9259,70.223,125.887,0.827961,-1,-1,-1
358,-1,0,43.5747,91.2813,320.164,0.996119,-1,-1,-1
358,-1,121.318,137.116,58.655,162.084,0.993172,-1,-1,-1
358,-1,181.754,131.535,57.747,171.736,0.992854,-1,-1,-1
358,-1,532.479,29.5574,103.539,377.904,0.992548,-1,-1,-1
358,-1,328.2,0,224.515,464.936,0.989001,-1,-1,-1
358,-1,550.251,28.7278,62.095,162.917,0.761358,-1,-1,-1
359,-1,0,71.4574,86.9362,321.174,0.998833,-1,-1,-1
359,-1,181.12,150.47,52.741,171.247,0.994865,-1,-1,-1
359,-1,331.897,6.63864,230.695,455.34,0.993411,-1,-1,-1
359,-1,126.003,158.845,59.82,154.253,0.993357,-1,-1,-1
359,-1,543.744,51.8781,87.938,398.97,0.981825,-1,-1,-1
359,-1,544.21,43.3582,67.923,145.191,0.833127,-1,-1,-1
360,-1,0,78.95,99.5251,321.878,0.999031,-1,-1,-1
360,-1,325.51,27.5465,248.097,443.048,0.996722,-1,-1,-1
360,-1,189.9,158.794,47.548,166.879,0.996138,-1,-1,-1
360,-1,129.32,171.626,57.312,148.476,0.994014,-1,-1,-1
360,-1,528.768,38.7166,104.073,409.217,0.983974,-1,-1,-1
360,-1,552.321,41.9433,72.341,152.011,0.57329,-1,-1,-1
361,-1,0.713326,71.5002,80.5086,315.536,0.998856,-1,-1,-1
361,-1,536.065,18.9033,97.947,422.092,0.997682,-1,-1,-1
361,-1,126.063,165.193,59.444,151.538,0.994119,-1,-1,-1
361,-1,339.281,14.0512,220.177,448.239,0.987793,-1,-1,-1
361,-1,185.422,153.094,48.761,170.486,0.984866,-1,-1,-1
362,-1,0,70.3007,90.2084,313.047,0.999505,-1,-1,-1
362,-1,331.446,22.2757,244.307,439.489,0.994093,-1,-1,-1
362,-1,178.713,146.847,57.009,179.776,0.99278,-1,-1,-1
362,-1,524.191,20.0684,114.809,433.837,0.991425,-1,-1,-1
362,-1,123.684,158.516,55.05,153.845,0.991246,-1,-1,-1
363,-1,0,66.4269,105.318,326.066,0.999094,-1,-1,-1
363,-1,332.851,8.69984,232.794,448.343,0.991958,-1,-1,-1
363,-1,180.26,165.371,56.222,154.715,0.991469,-1,-1,-1
363,-1,96.6734,176.801,43.8496,143.406,0.987229,-1,-1,-1
363,-1,529.943,17.8433,104.112,438.25,0.968454,-1,-1,-1
363,-1,140.558,144.996,44.998,167.987,0.932619,-1,-1,-1
363,-1,337.743,148.888,78.792,298.591,0.509129,-1,-1,-1
364,-1,0,62.8291,112.011,338.894,0.9975,-1,-1,-1
364,-1,383.741,0,196.005,465.878,0.995356,-1,-1,-1
364,-1,188.663,170.12,53.463,150.096,0.995099,-1,-1,-1
364,-1,155.578,159.271,37.682,166.655,0.939961,-1,-1,-1
364,-1,91.2557,167.665,43.0473,144.74,0.93823,-1,-1,-1
364,-1,533.635,21.8551,102.428,332.733,0.788378,-1,-1,-1
364,-1,342.885,143.549,83.816,328.637,0.663765,-1,-1,-1
365,-1,2.19943,76.7883,124.689,302.313,0.998753,-1,-1,-1
365,-1,355.953,12.1374,231.315,459.638,0.995715,-1,-1,-1
365,-1,196.176,160.602,52.812,180.72,0.991875,-1,-1,-1
365,-1,143.814,162.285,53.484,177.949,0.987315,-1,-1,-1
365,-1,538.923,20.6095,99.948,309.988,0.796942,-1,-1,-1
365,-1,342.763,152.727,84.449,326.171,0.66866,-1,-1,-1
366,-1,1.65483,59.0792,105.02,291.171,0.998637,-1,-1,-1
366,-1,132.425,161.859,60.898,150.367,0.989259,-1,-1,-1
366,-1,358.251,18.3155,215.166,441.555,0.988797,-1,-1,-1
366,-1,190.136,152.088,65.347,168.946,0.988199,-1,-1,-1
366,-1,570.592,32.2704,68.408,289.081,0.984311,-1,-1,-1
367,-1,5.78164,65.0423,103.089,261.689,0.997408,-1,-1,-1
367,-1,361.375,6.51489,225.936,463.929,0.996604,-1,-1,-1
367,-1,138.86,150.038,56.161,151.418,0.995057,-1,-1,-1
367,-1,202.949,131.775,48.452,187.748,0.985859,-1,-1,-1
368,-1,1.39349,64.4518,119.172,296.176,0.999264,-1,-1,-1
368,-1,151.367,152.161,60.328,159.899,0.996442,-1,-1,-1
368,-1,218.357,153.099,56.151,150.049,0.988885,-1,-1,-1
368,-1,373.163,11.5936,207.856,446.467,0.981427,-1,-1,-1
369,-1,4.25921,72.1517,122.348,304.321,0.999258,-1,-1,-1
369,-1,175.889,152.37,54.087,167.421,0.992526,-1,-1,-1
369,-1,400.606,21.6029,187.137,454.041,0.986171,-1,-1,-1
369,-1,229.598,156.352,49.379,163.151,0.985745,-1,-1,-1
370,-1,0,82.3801,125.039,313.555,0.998995,-1,-1,-1
370,-1,184.627,160.049,46.621,160.318,0.992431,-1,-1,-1
370,-1,226.272,163.669,63.361,151.594,0.990351,-1,-1,-1
370,-1,394.59,4.51791,206.792,470.032,0.98954,-1,-1,-1
370,-1,370.354,164.866,80.682,292.332,0.500815,-1,-1,-1
371,-1,2.31107,78.4085,136.823,314.779,0.999377,-1,-1,-1
371,-1,185.856,153.229,50.13,171.909,0.992344,-1,-1,-1
371,-1,232.417,148.711,52.946,178.879,0.992129,-1,-1,-1
371,-1,401.681,16.9676,202.675,447.535,0.987733,-1,-1,-1
371,-1,369.596,175.999,79.092,276.094,0.603294,-1,-1,-1
372,-1,6.20405,64.326,138.522,305.255,0.999048,-1,-1,-1
372,-1,197.541,148.577,50.405,172.776,0.996722,-1,-1,-1
372,-1,393.68,30.3961,232.452,417.105,0.995546,-1,-1,-1
372,-1,250.304,159.269,50.443,160.445,0.995429,-1,-1,-1
373,-1,8.85225,72.7054,142.261,315.267,0.998824,-1,-1,-1
373,-1,413.021,27.6574,224.995,419.693,0.996769,-1,-1,-1
373,-1,253.187,157.391,47.772,164.64,0.995376,-1,-1,-1
373,-1,204.477,159.626,49.961,165.889,0.990024,-1,-1,-1
374,-1,19.4447,72.3802,137.629,304.08,0.998952,-1,-1,-1
374,-1,203.968,171.278,62.056,137.755,0.992872,-1,-1,-1
374,-1,265.949,141.475,47.538,190.226,0.987675,-1,-1,-1
374,-1,413.932,29.5464,225.068,432.51,0.979041,-1,-1,-1
374,-1,391.828,155.161,90.715,299.032,0.534466,-1,-1,-1
375,-1,14.1073,87.4593,148.863,303.812,0.998516,-1,-1,-1
375,-1,214.11,166.767,54.486,149.704,0.993173,-1,-1,-1
375,-1,423.575,0,212.056,475.525,0.991745,-1,-1,-1
375,-1,275.464,158.105,45.582,163.467,0.990454,-1,-1,-1
375,-1,402.594,140.083,97.772,329.186,0.552712,-1,-1,-1
375,-1,0.337692,187.83,48.7304,181.084,0.528899,-1,-1,-1
376,-1,40.1022,74.3486,123.804,316.868,0.998575,-1,-1,-1
376,-1,225.293,168.722,52.102,148.378,0.990459,-1,-1,-1
376,-1,273.229,160.985,51.17,158.244,0.988884,-1,-1,-1
376,-1,434.535,20.83,194.671,458.17,0.980429,-1,-1,-1
376,-1,0,97.1408,69.2778,299.633,0.969576,-1,-1,-1
377,-1,32.2365,75.7476,143.635,321.135,0.998817,-1,-1,-1
377,-1,232.693,167.659,41.55,147.972,0.990577,-1,-1,-1
377,-1,284.212,166.433,42.429,142.307,0.983579,-1,-1,-1
377,-1,0,100.727,72.7957,303.724,0.974466,-1,-1,-1
377,-1,447.657,178.403,37.703,105.639,0.909673,-1,-1,-1
377,-1,436.615,46.3389,185.09,432.661,0.840873,-1,-1,-1
378,-1,37.9621,70.5021,137.071,314.382,0.999144,-1,-1,-1
378,-1,283.865,157.971,44.498,160.778,0.993102,-1,-1,-1
378,-1,446.239,186.586,43.53,100.295,0.990867,-1,-1,-1
378,-1,238.885,151.627,47.398,157.074,0.985668,-1,-1,-1
378,-1,462.874,148.846,105.742,330.154,0.815249,-1,-1,-1
378,-1,0,157.915,49.268,202.412,0.727174,-1,-1,-1
378,-1,196.189,219.194,24.878,44.816,0.508493,-1,-1,-1
379,-1,51.9595,62.7848,124.053,318.196,0.999172,-1,-1,-1
379,-1,285.822,157.769,55.485,157.296,0.99516,-1,-1,-1
379,-1,448.401,188.153,40.642,96.903,0.994759,-1,-1,-1
379,-1,232.67,159.867,48.377,156.223,0.990421,-1,-1,-1
379,-1,490.508,110.949,109.66,368.051,0.924328,-1,-1,-1
379,-1,515.564,155.744,39.282,115.764,0.787944,-1,-1,-1
379,-1,0.944983,167.351,45.4931,175.995,0.589459,-1,-1,-1
380,-1,41.0219,64.4584,128.598,326.127,0.999251,-1,-1,-1
380,-1,442.789,196.622,44.511,90.699,0.996586,-1,-1,-1
380,-1,295.286,163.61,49.355,153.031,0.995801,-1,-1,-1
380,-1,228.941,164.257,50.72,145.565,0.984225,-1,-1,-1
380,-1,516.87,165.435,52.098,155.233,0.981992,-1,-1,-1
380,-1,507.476,144.865,121.271,327.208,0.928931,-1,-1,-1
380,-1,192.4,218.714,20.046,46.326,0.626297,-1,-1,-1
381,-1,37.2807,66.6783,134.85,333.991,0.99916,-1,-1,-1
381,-1,292.244,161.619,55.623,164.621,0.995628,-1,-1,-1
381,-1,227.616,168.419,57.469,143.909,0.990209,-1,-1,-1
381,-1,441.364,201.689,42.46,84.354,0.98528,-1,-1,-1
381,-1,516.65,160.593,53.69,179.249,0.975076,-1,-1,-1
381,-1,531.413,137.193,101.978,335.213,0.871968,-1,-1,-1
381,-1,187.74,225.807,23.008,54.585,0.652759,-1,-1,-1
381,-1,4.77381,135.213,41.6542,178.105,0.519201,-1,-1,-1
381,-1,83.0354,75.3125,27.9916,52.2235,0.514242,-1,-1,-1
382,-1,40.3115,81.1139,129.678,322.275,0.998389,-1,-1,-1
382,-1,438.889,197.583,47.638,80.87,0.993793,-1,-1,-1
382,-1,522.191,156.693,53.91,172.334,0.993414,-1,-1,-1
382,-1,293.962,148.573,47.08,174.289,0.993408,-1,-1,-1
382,-1,230.399,167.398,67.255,146.428,0.985308,-1,-1,-1
382,-1,566.054,177.098,72.946,290.382,0.915676,-1,-1,-1
382,-1,590.733,205.305,48.267,127.994,0.790912,-1,-1,-1
382,-1,0.0258026,159.605,40.8831,178.338,0.758361,-1,-1,-1
382,-1,222.302,202.267,34.649,111.833,0.621167,-1,-1,-1
383,-1,21.2976,79.8764,135.219,322.779,0.998779,-1,-1,-1
383,-1,295.136,163.118,46.706,158.934,0.995542,-1,-1,-1
383,-1,522.079,165.459,52.766,172.471,0.990983,-1,-1,-1
383,-1,442.024,201.588,43.829,75.358,0.987567,-1,-1,-1
383,-1,238.595,170.47,51.789,153.472,0.986305,-1,-1,-1
383,-1,593.719,306.165,41.868,147.32,0.957185,-1,-1,-1
384,-1,2.45341,74.3307,129.078,321.571,0.998762,-1,-1,-1
384,-1,516.218,156.925,69.817,175.837,0.994446,-1,-1,-1
384,-1,280.806,163.827,59.279,159.04,0.989335,-1,-1,-1
384,-1,235.201,163.921,54.716,154.475,0.987948,-1,-1,-1
384,-1,437.287,199.498,36.496,78.829,0.98514,-1,-1,-1
385,-1,1.83844,60.3244,127.822,339.348,0.998751,-1,-1,-1
385,-1,521.524,149.926,60.225,176.881,0.996063,-1,-1,-1
385,-1,236.382,169.305,53.437,140.606,0.994099,-1,-1,-1
385,-1,289.033,158.4,53.998,164.457,0.989463,-1,-1,-1
385,-1,435.852,199.209,38.18,78.067,0.968427,-1,-1,-1
386,-1,1.35384,67.2987,121.155,347.283,0.99889,-1,-1,-1
386,-1,526.495,141.076,61.449,197.921,0.997674,-1,-1,-1
386,-1,298.066,141.017,40.648,181.206,0.994692,-1,-1,-1
386,-1,241.727,164.588,46.166,144.863,0.994681,-1,-1,-1
386,-1,428.434,200.372,44.39,78.207,0.945657,-1,-1,-1
387,-1,0,59.3247,102.609,351.459,0.997799,-1,-1,-1
387,-1,231.754,159.71,56.264,153.01,0.996639,-1,-1,-1
387,-1,523.667,142.794,66.973,203.048,0.995647,-1,-1,-1
387,-1,418.096,192.841,49.083,80.951,0.994874,-1,-1,-1
387,-1,289.758,147.736,52.704,174.942,0.992689,-1,-1,-1
387,-1,144.803,224.58,22.872,53.18,0.735639,-1,-1,-1
388,-1,512.582,132.592,86.945,229.184,0.997375,-1,-1,-1
388,-1,0,57.7695,105.042,358.863,0.996684,-1,-1,-1
388,-1,232.045,164.254,51.18,145.122,0.996422,-1,-1,-1
388,-1,423.9,196.239,37.411,80.333,0.990333,-1,-1,-1
388,-1,289.698,160.396,41.028,155.12,0.97068,-1,-1,-1
389,-1,0,61.2141,102.924,346.647,0.998207,-1,-1,-1
389,-1,527.368,133.791,76.406,231.552,0.997867,-1,-1,-1
389,-1,228.147,173.986,52.509,149.025,0.994664,-1,-1,-1
389,-1,289.033,169.601,40.493,163.506,0.975507,-1,-1,-1
389,-1,407.32,201.224,45.579,76.778,0.971912,-1,-1,-1
390,-1,0,71.4346,93.7554,328.669,0.998595,-1,-1,-1
390,-1,519.577,114.67,85.574,269.834,0.99723,-1,-1,-1
390,-1,220.121,172.264,56.238,145.366,0.994266,-1,-1,-1
390,-1,274.987,171.446,51.453,151.708,0.984586,-1,-1,-1
390,-1,401.763,198.395,37.474,79.23,0.961093,-1,-1,-1
391,-1,513.886,104.266,94.168,268.746,0.997899,-1,-1,-1
391,-1,0,67.443,62.7674,353.219,0.995577,-1,-1,-1
391,-1,220.258,164.914,46.112,147.745,0.993588,-1,-1,-1
391,-1,267.413,163.56,49.89,156.923,0.987648,-1,-1,-1
391,-1,391.444,187.151,37.374,86.983,0.799011,-1,-1,-1
392,-1,508.951,97.2008,96.352,281.529,0.997976,-1,-1,-1
392,-1,0,92.1689,61.1657,329.49,0.99553,-1,-1,-1
392,-1,261.287,157.441,47.565,178.676,0.994615,-1,-1,-1
392,-1,215.39,160.475,46.113,161.677,0.987221,-1,-1,-1
392,-1,387.945,196.268,37.337,80.046,0.978735,-1,-1,-1
393,-1,511.029,97.2415,104.27,323.841,0.998769,-1,-1,-1
393,-1,262.586,166.475,50.819,161.972,0.991705,-1,-1,-1
393,-1,208.974,164.563,49.311,154.753,0.990265,-1,-1,-1
393,-1,0,60.8625,56.4264,376.995,0.981557,-1,-1,-1
393,-1,379.636,201.241,37.448,83.102,0.953038,-1,-1,-1
394,-1,504.879,86.6163,114.729,339.888,0.998856,-1,-1,-1
394,-1,261.535,157.562,54.58,167.256,0.992859,-1,-1,-1
394,-1,213.134,171.88,48.169,154.729,0.980783,-1,-1,-1
394,-1,387.562,196.032,34.549,81.18,0.976039,-1,-1,-1
394,-1,0,89.5583,59.0583,194.646,0.788503,-1,-1,-1
395,-1,505.307,79.2294,123.349,348.064,0.998514,-1,-1,-1
395,-1,256.511,157.343,46.047,164.85,0.996253,-1,-1,-1
395,-1,201.924,171.28,49.892,141.875,0.995069,-1,-1,-1
395,-1,379.9,200.811,34.064,76.865,0.993445,-1,-1,-1
395,-1,0,99.2078,46.8487,143.273,0.984451,-1,-1,-1
396,-1,494.503,83.0891,141.242,370.618,0.9972,-1,-1,-1
396,-1,251.975,158.297,55.972,160.237,0.989564,-1,-1,-1
396,-1,373.337,203.321,38.082,76.704,0.98909,-1,-1,-1
396,-1,200.548,171.437,54.084,143.031,0.987998,-1,-1,-1
396,-1,0.967216,108.657,30.1968,115.516,0.694486,-1,-1,-1
397,-1,503.499,65.1008,132.847,408.296,0.99881,-1,-1,-1
397,-1,250.469,167.484,53.175,150.625,0.992913,-1,-1,-1
397,-1,204.692,174.282,54.555,147.177,0.98949,-1,-1,-1
397,-1,368.446,200.51,31.651,79.589,0.988194,-1,-1,-1
398,-1,522.759,58.1635,116.241,418.457,0.9984,-1,-1,-1
398,-1,200.045,182.011,48.626,145.273,0.993498,-1,-1,-1
398,-1,253,166.925,47.456,157.748,0.990757,-1,-1,-1
398,-1,362.769,196.664,36.083,80.331,0.975911,-1,-1,-1
399,-1,538.542,43.6811,100.458,435.319,0.994652,-1,-1,-1
399,-1,251.637,156.667,44.888,172.447,0.989372,-1,-1,-1
399,-1,210.231,172.476,42.312,143.759,0.98871,-1,-1,-1
399,-1,367.838,197.807,37.168,77.03,0.739377,-1,-1,-1
400,-1,246.91,152.54,52.866,167.327,0.993458,-1,-1,-1
400,-1,545.772,44.4601,93.228,434.54,0.990446,-1,-1,-1
400,-1,203.066,161.394,50.942,155.928,0.989548,-1,-1,-1
400,-1,360.973,196.232,40.26,83.483,0.745551,-1,-1,-1
401,-1,198.321,171.83,54.704,143.998,0.994626,-1,-1,-1
401,-1,555.344,52.3432,83.656,349.397,0.994016,-1,-1,-1
401,-1,248.862,150.081,45.332,171.496,0.990435,-1,-1,-1
401,-1,354.93,204.72,35.063,69.239,0.832222,-1,-1,-1
402,-1,196.331,165.997,56.364,152.957,0.984437,-1,-1,-1
402,-1,252.266,159.627,39.183,155.589,0.983237,-1,-1,-1
402,-1,566.797,25.0562,72.203,443.227,0.885803,-1,-1,-1
402,-1,354.506,193.672,32.634,79.434,0.694859,-1,-1,-1
403,-1,245.354,153.9,45.295,170.041,0.985405,-1,-1,-1
403,-1,198.233,165.269,49.837,160.787,0.965239,-1,-1,-1
404,-1,200.053,175.716,48.001,145.28,0.987964,-1,-1,-1
404,-1,245.79,166.551,51.899,151.131,0.982116,-1,-1,-1
404,-1,348.907,196.546,35.405,86.05,0.970657,-1,-1,-1
405,-1,198.342,170.32,50.155,135.132,0.995192,-1,-1,-1
405,-1,249.899,154.898,46.71,170.664,0.983419,-1,-1,-1
405,-1,351.938,198.427,34.827,80.58,0.801159,-1,-1,-1
406,-1,198.589,172.503,46.832,136.553,0.996133,-1,-1,-1
406,-1,253.261,158.929,47.256,160.23,0.982721,-1,-1,-1
406,-1,343.415,201.326,41.686,70.584,0.77197,-1,-1,-1
407,-1,253.689,159.103,43.784,153.985,0.992261,-1,-1,-1
407,-1,193.474,169.899,49.654,132.199,0.987113,-1,-1,-1
407,-1,343.717,194.941,41.174,87.405,0.984899,-1,-1,-1
408,-1,258.977,156.578,40.488,152.48,0.994019,-1,-1,-1
408,-1,198.524,160.285,43.939,143.547,0.992521,-1,-1,-1
408,-1,342.608,193.235,41.891,85.819,0.972192,-1,-1,-1
409,-1,195.743,166.578,43.68,143.547,0.993871,-1,-1,-1
409,-1,254.119,156.698,45.475,149.986,0.98694,-1,-1,-1
409,-1,345.742,191.7,31.12,67.506,0.931919,-1,-1,-1
410,-1,190.055,164.094,46.324,134.531,0.995546,-1,-1,-1
410,-1,336.728,187.421,38.474,77.232,0.988698,-1,-1,-1
410,-1,250.418,154.398,48.017,151.469,0.981561,-1,-1,-1
411,-1,187.375,164.956,51.294,130.034,0.994792,-1,-1,-1
411,-1,239.84,157.645,52.897,152.408,0.98882,-1,-1,-1
411,-1,334.653,190.392,30.218,63.795,0.905251,-1,-1,-1
412,-1,185,161.555,46.428,138.053,0.995606,-1,-1,-1
412,-1,237.89,158.042,47.108,150.239,0.991637,-1,-1,-1
412,-1,326.4,195.148,35.56,70.343,0.806868,-1,-1,-1
413,-1,184.642,157.951,45.747,143.17,0.995688,-1,-1,-1
413,-1,238.018,155.205,47.431,156.57,0.989979,-1,-1,-1
414,-1,180.817,161.747,43.729,148.093,0.994866,-1,-1,-1
414,-1,236.228,161.366,43.363,145.012,0.992566,-1,-1,-1
414,-1,589.795,215.02,49.154,120.172,0.969146,-1,-1,-1
414,-1,319.643,204.544,31.274,54.027,0.80675,-1,-1,-1
415,-1,175.414,160.271,47.853,146.945,0.993602,-1,-1,-1
415,-1,223.041,158.301,54.069,148.169,0.989978,-1,-1,-1
415,-1,575.936,129.987,63.064,262.915,0.979445,-1,-1,-1
415,-1,311.552,190.271,33.004,68.571,0.830604,-1,-1,-1
416,-1,169.078,158.296,47.776,152.974,0.994034,-1,-1,-1
416,-1,555.044,102.599,83.956,302.138,0.993955,-1,-1,-1
416,-1,222.655,149.338,42.3,162.955,0.97198,-1,-1,-1
416,-1,303.546,194.252,34.842,69.767,0.743015,-1,-1,-1
417,-1,552.893,99.8588,86.107,329.798,0.997788,-1,-1,-1
417,-1,217.845,170.24,45.244,146.06,0.994103,-1,-1,-1
417,-1,165.94,170.744,46.268,142.86,0.992475,-1,-1,-1
417,-1,303.79,200.119,31.371,65.37,0.942005,-1,-1,-1
417,-1,592.479,85.968,46.521,175.065,0.691125,-1,-1,-1
418,-1,540.18,41.8195,98.82,390.95,0.99842,-1,-1,-1
418,-1,212.261,165.576,51.32,141.743,0.994857,-1,-1,-1
418,-1,165.465,159.276,50.072,153.784,0.989367,-1,-1,-1
418,-1,301.346,196.733,30.653,74.109,0.873421,-1,-1,-1
419,-1,534.258,24.6776,104.742,407.311,0.99942,-1,-1,-1
419,-1,166.232,171.87,49.184,134.089,0.991847,-1,-1,-1
419,-1,221.513,165.312,37.199,145.14,0.991679,-1,-1,-1
419,-1,293.99,194.826,32.333,68.132,0.986254,-1,-1,-1
420,-1,506.08,24.3417,132.92,415.169,0.999232,-1,-1,-1
420,-1,212.28,162.763,42.851,140.103,0.992911,-1,-1,-1
420,-1,286.858,188.903,37.261,80.892,0.992124,-1,-1,-1
420,-1,162.481,168.228,49.918,136.006,0.989981,-1,-1,-1
421,-1,476.361,27.3191,162.639,369.695,0.999242,-1,-1,-1
421,-1,202.521,164.078,49.032,136.974,0.994995,-1,-1,-1
421,-1,278.326,190.279,35.016,73.664,0.99054,-1,-1,-1
421,-1,155.618,171.108,47.383,130.186,0.987691,-1,-1,-1
422,-1,477.457,35.3218,155.085,372.614,0.99901,-1,-1,-1
422,-1,208.765,160.534,40.63,139.185,0.994342,-1,-1,-1
422,-1,146.288,167.475,48.947,135.639,0.989173,-1,-1,-1
422,-1,282.9,200.424,30.69,63.942,0.988876,-1,-1,-1
423,-1,454.462,32.6666,170.972,390.871,0.998548,-1,-1,-1
423,-1,150.146,152.243,43.812,152.924,0.993567,-1,-1,-1
423,-1,197.546,149.295,44.174,149.599,0.990081,-1,-1,-1
423,-1,270.792,188.757,29.578,67.421,0.968934,-1,-1,-1
424,-1,436.963,32.5534,202.037,412.429,0.998269,-1,-1,-1
424,-1,186.975,154.438,43.912,148.5,0.993556,-1,-1,-1
424,-1,146.763,163.176,39.015,138.445,0.992743,-1,-1,-1
424,-1,266.445,191.202,30.581,61.708,0.991475,-1,-1,-1
424,-1,63.1378,213.553,28.7781,58.215,0.670025,-1,-1,-1
425,-1,440.885,52.1255,147.497,371.18,0.998401,-1,-1,-1
425,-1,259.041,193.404,30.016,62.107,0.988141,-1,-1,-1
425,-1,188.169,158.725,43.091,140.587,0.98114,-1,-1,-1
425,-1,142.85,161.627,37.148,130.336,0.962478,-1,-1,-1
425,-1,41.4269,212.618,31.7906,62.788,0.708448,-1,-1,-1
426,-1,431.31,45.1762,154.67,375.248,0.998244,-1,-1,-1
426,-1,132.065,157.167,47.114,133.99,0.993216,-1,-1,-1
426,-1,185.532,156.398,41.558,136.231,0.990772,-1,-1,-1
426,-1,251.736,187.963,32.261,61.982,0.980367,-1,-1,-1
426,-1,25.5892,207.528,38.3542,67.218,0.572318,-1,-1,-1
427,-1,430.894,57.1776,137.904,355.445,0.997769,-1,-1,-1
427,-1,183.873,151.672,37.275,137.319,0.995936,-1,-1,-1
427,-1,130.224,159.572,45.579,138.018,0.992988,-1,-1,-1
427,-1,246.745,188.727,29.191,64.39,0.963714,-1,-1,-1
427,-1,21.3954,200.695,38.084,60.214,0.888485,-1,-1,-1
427,-1,581.577,110.895,41.867,251.043,0.634308,-1,-1,-1
428,-1,414.88,48.8709,124.917,362.153,0.999081,-1,-1,-1
428,-1,123.631,153.389,48.742,136.664,0.991612,-1,-1,-1
428,-1,175.672,145.63,42.404,141.034,0.990903,-1,-1,-1
428,-1,553.785,42.5863,85.215,435.38,0.984351,-1,-1,-1
428,-1,240.988,184.616,32.597,67.189,0.979915,-1,-1,-1
429,-1,396.997,40.9201,111.953,377.969,0.998587,-1,-1,-1
429,-1,118.902,159.034,46.559,131.772,0.995321,-1,-1,-1
429,-1,174.273,152.855,36.246,130.606,0.989062,-1,-1,-1
429,-1,234.374,191.956,28.774,63.582,0.974678,-1,-1,-1
429,-1,539.783,0,99.217,446.574,0.971712,-1,-1,-1
429,-1,581.945,0,52.161,92.8152,0.546558,-1,-1,-1
430,-1,381.701,52.5874,116.954,352.923,0.998314,-1,-1,-1
430,-1,109.004,158.965,54.584,126.018,0.993787,-1,-1,-1
430,-1,162.609,150.875,47.54,135.83,0.992782,-1,-1,-1
430,-1,490.738,0,148.262,479,0.992633,-1,-1,-1
430,-1,229.628,189.547,32.356,65.761,0.982685,-1,-1,-1
431,-1,376.85,53.9192,119.489,355.697,0.997862,-1,-1,-1
431,-1,473.212,0,162.616,431.51,0.994767,-1,-1,-1
431,-1,111.94,149.484,49.923,130.872,0.993459,-1,-1,-1
431,-1,160.812,149.438,42.693,135.813,0.992097,-1,-1,-1
431,-1,225.909,190.301,28.745,62.332,0.985414,-1,-1,-1
431,-1,3.63927,197.504,45.8325,162.46,0.806013,-1,-1,-1
432,-1,353.696,65.1431,105.497,316.964,0.997746,-1,-1,-1
432,-1,107.421,155.178,48.915,130.094,0.993258,-1,-1,-1
432,-1,419.823,0,219.177,479,0.99258,-1,-1,-1
432,-1,217.172,185.516,33.794,64.857,0.985555,-1,-1,-1
432,-1,164.428,160.315,37.44,123.331,0.9854,-1,-1,-1
433,-1,384.185,7.40833,235.049,471.592,0.994686,-1,-1,-1
433,-1,106.298,149.468,49.402,130.374,0.993008,-1,-1,-1
433,-1,216.559,187.785,34.603,67.979,0.991591,-1,-1,-1
433,-1,353.371,55.4767,112.384,328.246,0.988894,-1,-1,-1
433,-1,161.615,156.944,38.559,129.098,0.98609,-1,-1,-1
433,-1,374.105,63.0055,77.028,135.572,0.615159,-1,-1,-1
434,-1,95.1378,158.605,52.1172,121.812,0.994139,-1,-1,-1
434,-1,153.865,153.78,39.14,136.488,0.993279,-1,-1,-1
434,-1,331.006,15.4664,237.633,448.648,0.991284,-1,-1,-1
434,-1,211.463,183.605,31.169,62.137,0.987726,-1,-1,-1
434,-1,326.246,51.005,99.165,327.896,0.803551,-1,-1,-1
435,-1,314.186,6.4706,218.346,453.505,0.997958,-1,-1,-1
435,-1,151.175,146.624,44.77,138.538,0.991005,-1,-1,-1
435,-1,211.422,184.371,25.416,68.282,0.990519,-1,-1,-1
435,-1,92.2417,155.72,53.0323,130.294,0.987214,-1,-1,-1
435,-1,598.051,201.985,37.773,81.497,0.579041,-1,-1,-1
436,-1,285.022,14.8725,214.551,462.445,0.995824,-1,-1,-1
436,-1,147.742,135.729,46.157,142.172,0.990416,-1,-1,-1
436,-1,84.7593,157.133,49.3657,124.607,0.988027,-1,-1,-1
436,-1,209.303,184.645,26.685,63.795,0.984621,-1,-1,-1
436,-1,587.268,97.238,42.089,89.41,0.685124,-1,-1,-1
436,-1,587.417,179.542,46.193,87.357,0.519854,-1,-1,-1
437,-1,254.794,10.2537,232.268,465.408,0.996194,-1,-1,-1
437,-1,83.7946,154.209,49.4424,124.739,0.992435,-1,-1,-1
437,-1,198.175,179.538,34.986,64.011,0.989732,-1,-1,-1
437,-1,145.731,144.299,44.387,140.563,0.987875,-1,-1,-1
437,-1,596.484,98.4554,37.298,96.9206,0.527094,-1,-1,-1
438,-1,208.867,2.60689,235.854,469.048,0.996478,-1,-1,-1
438,-1,92.8855,150.522,35.8735,127.602,0.986035,-1,-1,-1
438,-1,148.443,141.594,37.078,135.656,0.98506,-1,-1,-1
438,-1,556.099,83.3575,81.137,303.404,0.981592,-1,-1,-1
438,-1,196.86,175.682,27.968,66.969,0.963011,-1,-1,-1
438,-1,586.366,97.3773,52.634,141.654,0.69564,-1,-1,-1
438,-1,0,31.4049,93.0014,428.864,0.582398,-1,-1,-1
439,-1,158.027,0,262.546,475.97,0.998307,-1,-1,-1
439,-1,561.37,71.3266,77.63,334.933,0.988917,-1,-1,-1
439,-1,140.45,141.263,45.382,142.195,0.988086,-1,-1,-1
439,-1,87.6038,152.42,40.5782,121.59,0.980105,-1,-1,-1
440,-1,542.572,67.8267,93.885,334.034,0.996359,-1,-1,-1
440,-1,77.8397,0,314.238,466.674,0.99545,-1,-1,-1
440,-1,85.8623,150.044,40.1707,107.228,0.981974,-1,-1,-1
440,-1,306.559,46.8298,75.909,234.181,0.939448,-1,-1,-1
440,-1,337.149,112.828,87.465,181.031,0.709439,-1,-1,-1
441,-1,272.534,60.621,114.095,308.719,0.997227,-1,-1,-1
441,-1,534.977,59.5434,96.827,343.48,0.996509,-1,-1,-1
441,-1,12.7355,12.8329,327.892,441.206,0.988555,-1,-1,-1
441,-1,345.543,132.292,70.039,179.468,0.680849,-1,-1,-1
442,-1,270.496,78.3228,114.405,251.409,0.997203,-1,-1,-1
442,-1,531.163,90.4485,99.34,315.177,0.995214,-1,-1,-1
442,-1,0,0,268.675,463.29,0.992185,-1,-1,-1
442,-1,330.461,120.092,63.601,142.855,0.676489,-1,-1,-1
443,-1,269.265,78.161,110.7,276.938,0.996165,-1,-1,-1
443,-1,517.685,76.8217,108.612,309.956,0.993554,-1,-1,-1
443,-1,3.15765,0,232.691,464.241,0.991133,-1,-1,-1
443,-1,330.545,120.862,51.187,152.039,0.787681,-1,-1,-1
444,-1,256.473,63.6027,110.145,321.45,0.998082,-1,-1,-1
444,-1,514.965,75.2198,111.129,331.604,0.990148,-1,-1,-1
444,-1,186.999,181.238,37.997,68.981,0.971558,-1,-1,-1
444,-1,1.1549,15.7034,171.452,410.837,0.922156,-1,-1,-1
444,-1,136.939,136.13,41.472,142.194,0.507681,-1,-1,-1
445,-1,257.174,63.9265,107.903,314.851,0.997976,-1,-1,-1
445,-1,491.514,78.5194,147.486,318.504,0.993712,-1,-1,-1
445,-1,141.96,153.87,42.213,125.72,0.989905,-1,-1,-1
445,-1,350.219,135.706,59.24,173.99,0.971657,-1,-1,-1
445,-1,196.036,185.558,25.42,63.534,0.968231,-1,-1,-1
445,-1,0,26.8423,127.398,375.965,0.925613,-1,-1,-1
445,-1,364.115,128.213,34.093,71.575,0.546038,-1,-1,-1
446,-1,254.046,58.8414,103.195,319.52,0.997427,-1,-1,-1
446,-1,481.656,70.5213,153.867,335.942,0.99627,-1,-1,-1
446,-1,92.653,150.185,47.909,121.947,0.98639,-1,-1,-1
446,-1,149.535,152.266,37.459,136.173,0.983115,-1,-1,-1
446,-1,194.518,185.408,26.86,71.1,0.976376,-1,-1,-1
446,-1,353.728,140.536,57.519,180.565,0.974172,-1,-1,-1
446,-1,581.371,87.5742,53.144,268.197,0.643227,-1,-1,-1
446,-1,362.405,135.19,40.717,69.035,0.560066,-1,-1,-1
447,-1,334.454,135.612,78.917,192.995,0.99824,-1,-1,-1
447,-1,252.999,56.7691,100.099,328.016,0.995875,-1,-1,-1
447,-1,490.189,82.5543,137.47,335.523,0.993351,-1,-1,-1
447,-1,102.294,148.843,43.099,128.774,0.990343,-1,-1,-1
447,-1,143.622,161.542,50.397,112.583,0.975878,-1,-1,-1
447,-1,194.071,189.273,27.493,66.232,0.973451,-1,-1,-1
447,-1,577.054,81.983,59.637,283.823,0.945506,-1,-1,-1
447,-1,1.59846,73.9879,112.99,400.134,0.798679,-1,-1,-1
448,-1,237.237,57.6019,117.07,319.485,0.997896,-1,-1,-1
448,-1,338.208,141.864,78.593,192.463,0.997829,-1,-1,-1
448,-1,481.767,86.9793,129.772,319.888,0.994403,-1,-1,-1
448,-1,98.9378,150.769,42.8332,121.033,0.990699,-1,-1,-1
448,-1,0.529415,13.2695,103.319,445.111,0.985786,-1,-1,-1
448,-1,188.422,179.536,31.402,77.782,0.984535,-1,-1,-1
448,-1,146.511,152.984,36.577,121.067,0.967408,-1,-1,-1
448,-1,570.685,97.6569,68.024,271.658,0.641026,-1,-1,-1
449,-1,240.383,64.494,106.661,320.247,0.998634,-1,-1,-1
449,-1,483.397,79.656,112.683,328.31,0.997121,-1,-1,-1
449,-1,0,18.2433,114.661,455.554,0.995293,-1,-1,-1
449,-1,108.72,152.323,40.367,123.236,0.989373,-1,-1,-1
449,-1,572.253,85.5271,62.156,276.884,0.988285,-1,-1,-1
449,-1,344.257,152.588,63.291,172.684,0.982866,-1,-1,-1
449,-1,150.401,152.153,33.795,127.433,0.982481,-1,-1,-1
449,-1,198.302,178.643,24.1,74.172,0.902329,-1,-1,-1
450,-1,239.226,66.339,108.858,325.419,0.998641,-1,-1,-1
450,-1,476.237,78.388,120.602,314.919,0.996099,-1,-1,-1
450,-1,0.710182,8.84261,123.147,465.388,0.990417,-1,-1,-1
450,-1,116.639,158.913,43.032,121.936,0.98996,-1,-1,-1
450,-1,568.14,90.7973,67.809,244.438,0.988507,-1,-1,-1
450,-1,361.649,135.081,49.955,87.751,0.972218,-1,-1,-1
450,-1,161.204,150.925,32.66,130.042,0.957383,-1,-1,-1
450,-1,203.918,182.879,22.917,69.72,0.83648,-1,-1,-1
450,-1,336.804,199.595,55.753,118.263,0.702853,-1,-1,-1
451,-1,244.038,70.8014,102.594,308.193,0.998066,-1,-1,-1
451,-1,468.429,87.9644,124.979,311.213,0.996866,-1,-1,-1
451,-1,166.469,156.345,35.122,124.025,0.987319,-1,-1,-1
451,-1,130.389,161.584,39.411,120.608,0.977697,-1,-1,-1
451,-1,2.6425,0,135.3,470.574,0.975148,-1,-1,-1
451,-1,558.962,72.7868,80.038,317.941,0.966408,-1,-1,-1
451,-1,363.818,136.084,51.21,100.951,0.958019,-1,-1,-1
451,-1,214.217,182.72,23.189,75.882,0.617617,-1,-1,-1
451,-1,587.098,97.0553,43.483,154.4,0.543925,-1,-1,-1
452,-1,247.473,66.5548,102.723,307.687,0.99846,-1,-1,-1
452,-1,471.033,81.5976,136.275,311.065,0.997732,-1,-1,-1
452,-1,1.70677,16.5043,143.93,445.188,0.986206,-1,-1,-1
452,-1,132.669,157.326,40.527,124.088,0.980785,-1,-1,-1
452,-1,172.744,151.985,38.522,130.172,0.979429,-1,-1,-1
452,-1,575.89,94.0308,46.421,190.794,0.880594,-1,-1,-1
452,-1,366.276,139.027,48.449,99.243,0.869874,-1,-1,-1
452,-1,355.721,191.596,45.837,116.011,0.830968,-1,-1,-1
453,-1,253.859,61.9128,100.114,310.895,0.997973,-1,-1,-1
453,-1,480.653,81.2851,131.788,322.867,0.99712,-1,-1,-1
453,-1,362.775,143.749,70.697,164.337,0.993208,-1,-1,-1
453,-1,1.74492,0,142.469,477.004,0.990102,-1,-1,-1
453,-1,136.684,155.867,40.631,114.544,0.988934,-1,-1,-1
453,-1,182.801,157.737,38.148,111.967,0.986879,-1,-1,-1
453,-1,580.887,82.0145,45.09,169.678,0.866781,-1,-1,-1
454,-1,254.913,66.4532,104.961,314.051,0.998522,-1,-1,-1
454,-1,491.704,82.5941,119.861,323.617,0.998064,-1,-1,-1
454,-1,10.3241,12.7257,158.019,466.274,0.992986,-1,-1,-1
454,-1,191.508,162.518,35.181,126.105,0.98857,-1,-1,-1
454,-1,368.444,161.211,69.122,152.679,0.98829,-1,-1,-1
454,-1,151.603,161.632,36.61,113.846,0.978722,-1,-1,-1
454,-1,592.463,94.8805,32.697,158.163,0.674682,-1,-1,-1
454,-1,388.725,141.141,36.529,63.723,0.673225,-1,-1,-1
455,-1,260.679,71.0325,108.092,321.077,0.998236,-1,-1,-1
455,-1,11.5428,0,177.971,472.875,0.996681,-1,-1,-1
455,-1,495.525,84.7507,126.989,312.225,0.994742,-1,-1,-1
455,-1,383.284,150.59,56.331,168.97,0.986936,-1,-1,-1
455,-1,209.495,158.135,30.604,118.945,0.960607,-1,-1,-1
455,-1,162.319,151.423,36.348,120.215,0.959489,-1,-1,-1
455,-1,590.579,88.9901,32.751,195.742,0.922354,-1,-1,-1
455,-1,596.189,82.7312,39.139,86.5258,0.72979,-1,-1,-1
456,-1,264.775,65.4249,120.92,293.136,0.997697,-1,-1,-1
456,-1,14.8105,19.2003,184.776,459.8,0.995916,-1,-1,-1
456,-1,496.489,72.0866,114.47,334.638,0.995021,-1,-1,-1
456,-1,209.625,155.096,38.251,122.108,0.989995,-1,-1,-1
456,-1,387.355,163.243,57.289,150.641,0.985002,-1,-1,-1
456,-1,164.753,158.741,43.306,106.935,0.966777,-1,-1,-1
456,-1,593.089,106.632,45.355,225.71,0.863274,-1,-1,-1
456,-1,601.2,88.1631,37.308,102.496,0.706459,-1,-1,-1
457,-1,15.3283,12.5732,195.082,466.427,0.99867,-1,-1,-1
457,-1,277.257,87.375,108.742,317.627,0.997903,-1,-1,-1
457,-1,496.57,89.574,119.246,317.624,0.99749,-1,-1,-1
457,-1,388.96,140.371,55.106,138.056,0.983174,-1,-1,-1
457,-1,216.581,160.86,31.714,121.814,0.964805,-1,-1,-1
457,-1,603.331,105.749,35.233,232.831,0.943974,-1,-1,-1
457,-1,166.688,146.495,43.211,130.186,0.773009,-1,-1,-1
457,-1,2.11422,138.134,92.8303,340.866,0.641829,-1,-1,-1
457,-1,605.95,95.4652,33.05,79.8728,0.57842,-1,-1,-1
458,-1,492.1,84.8479,131.076,332.738,0.998187,-1,-1,-1
458,-1,286.567,71.2879,111.915,334.55,0.997271,-1,-1,-1
458,-1,28.4896,16.433,178.981,462.567,0.99471,-1,-1,-1
458,-1,221.326,151.649,36.974,120.095,0.977644,-1,-1,-1
458,-1,402.841,140.799,44.012,128.067,0.855489,-1,-1,-1
458,-1,611.528,87.7815,27.472,60.2545,0.850594,-1,-1,-1
458,-1,2.52875,167.127,109.474,306.371,0.779819,-1,-1,-1
458,-1,605.734,131.998,33.266,214.996,0.613176,-1,-1,-1
458,-1,530.928,88.0549,73.23,167.497,0.503762,-1,-1,-1
459,-1,486.986,84.6044,139.499,333.672,0.998007,-1,-1,-1
459,-1,291.441,84.1201,107.952,314.761,0.997195,-1,-1,-1
459,-1,34.3372,20.8631,190.963,458.137,0.986419,-1,-1,-1
459,-1,231.851,159.747,31.683,127.748,0.937918,-1,-1,-1
459,-1,406.65,146.845,48.974,149.692,0.876154,-1,-1,-1
459,-1,7.83543,173.514,31.9173,95.734,0.684643,-1,-1,-1
460,-1,491.048,84.4745,131.641,354.274,0.99763,-1,-1,-1
460,-1,289.666,76.0889,119.71,326.894,0.996334,-1,-1,-1
460,-1,52.9965,0,180.226,479,0.994254,-1,-1,-1
460,-1,232.627,157.351,38.347,125.842,0.962123,-1,-1,-1
460,-1,402.697,139.301,59.22,192.164,0.949606,-1,-1,-1
460,-1,593.361,224.157,45.639,131.189,0.601759,-1,-1,-1
461,-1,503.976,88.8466,108.871,316.184,0.998578,-1,-1,-1
461,-1,280.178,62.9475,120.276,329.668,0.99843,-1,-1,-1
461,-1,60.1873,17.6897,175.035,460.057,0.979814,-1,-1,-1
461,-1,407.348,171.786,66.06,160.649,0.940326,-1,-1,-1
461,-1,242.758,163.4,31.076,111.562,0.928243,-1,-1,-1
461,-1,422.766,133.916,41.408,71.807,0.65983,-1,-1,-1
461,-1,252.339,98.3636,38.666,191.105,0.542752,-1,-1,-1
462,-1,285.95,65.0745,118.352,334.719,0.998515,-1,-1,-1
462,-1,510.581,76.1772,101.103,323.224,0.997898,-1,-1,-1
462,-1,62.3221,16.7478,176.841,449.577,0.976581,-1,-1,-1
462,-1,385.676,188.399,93.491,146.783,0.971123,-1,-1,-1
462,-1,244.648,145.386,34.405,136.334,0.916813,-1,-1,-1
462,-1,409.866,134.439,65.135,130.485,0.613826,-1,-1,-1
462,-1,258.747,38.6992,41.431,150.57,0.539895,-1,-1,-1
463,-1,281.628,59.3558,122.064,349.786,0.9991,-1,-1,-1
463,-1,496.659,82.9558,123.845,337.868,0.998357,-1,-1,-1
463,-1,73.4066,15.3196,179.641,463.68,0.977534,-1,-1,-1
463,-1,404.366,191.977,53.476,152.81,0.785414,-1,-1,-1
463,-1,247.965,125.361,41.389,157.125,0.740298,-1,-1,-1
463,-1,617.064,88.3518,21.936,89.5962,0.729013,-1,-1,-1
464,-1,274.593,64.0444,115.212,320.283,0.998911,-1,-1,-1
464,-1,481.209,85.6586,122.524,335.593,0.998316,-1,-1,-1
464,-1,57.8669,14.9034,174.935,464.097,0.972983,-1,-1,-1
464,-1,244.301,146.844,33.076,131.755,0.928142,-1,-1,-1
464,-1,604.48,86.4165,34.52,81.4765,0.794178,-1,-1,-1
464,-1,414.843,145.924,42.429,141.309,0.595773,-1,-1,-1
465,-1,280.946,62.6927,110.378,328.932,0.998244,-1,-1,-1
465,-1,478.209,96.0412,114.861,331.425,0.996486,-1,-1,-1
465,-1,64.9351,5.57603,167.815,417.898,0.987594,-1,-1,-1
465,-1,247.393,145.771,35.392,132.131,0.970611,-1,-1,-1
465,-1,407.488,144.13,52.542,95.349,0.959614,-1,-1,-1
465,-1,601.597,113.461,33.645,173.795,0.795898,-1,-1,-1
465,-1,571.018,87.1749,67.982,331.442,0.522787,-1,-1,-1
466,-1,273.974,62.1429,112.745,337.904,0.998834,-1,-1,-1
466,-1,475.74,91.4658,116.264,332.029,0.997407,-1,-1,-1
466,-1,52.951,8.68243,180.566,392.126,0.989932,-1,-1,-1
466,-1,241.322,150.526,37.584,127.798,0.968616,-1,-1,-1
466,-1,414.247,137.736,45.392,97.743,0.823265,-1,-1,-1
466,-1,598,110.854,34.695,155.96,0.804704,-1,-1,-1
466,-1,394.426,199.64,41.655,115.029,0.640041,-1,-1,-1
466,-1,587.912,203.444,50.44,150.406,0.548701,-1,-1,-1
467,-1,272.702,69.4469,108.165,323.968,0.998057,-1,-1,-1
467,-1,477.77,75.3587,108.565,345.394,0.99715,-1,-1,-1
467,-1,54.1837,4.96097,183.127,378.437,0.973013,-1,-1,-1
467,-1,240.811,154.97,42.312,129.688,0.935922,-1,-1,-1
467,-1,395.457,201.905,47.167,114.258,0.8164,-1,-1,-1
467,-1,603.14,81.9513,35.86,108.194,0.733537,-1,-1,-1
467,-1,417.469,141.93,42.792,102.575,0.680365,-1,-1,-1
467,-1,602.809,207.207,36.191,118.969,0.636541,-1,-1,-1
468,-1,264.894,59.5652,113.849,332.74,0.998623,-1,-1,-1
468,-1,579.462,74.758,59.538,329.157,0.995846,-1,-1,-1
468,-1,464.938,84.7352,109.339,333.847,0.987777,-1,-1,-1
468,-1,54.5788,0,211.654,479,0.982806,-1,-1,-1
468,-1,398.488,159.843,50.543,149.066,0.820991,-1,-1,-1
468,-1,251.033,136.955,43.72,138.708,0.585666,-1,-1,-1
469,-1,263.786,54.103,116.727,346.236,0.99879,-1,-1,-1
469,-1,567.187,76.9226,71.056,315.14,0.997556,-1,-1,-1
469,-1,467.751,71.1252,105.036,344.656,0.996846,-1,-1,-1
469,-1,68.4824,0,187.377,475.886,0.96902,-1,-1,-1
469,-1,400.959,163.303,45.8,150.219,0.877516,-1,-1,-1
470,-1,260.126,43.8682,113.895,355.211,0.99851,-1,-1,-1
470,-1,458.198,79.3248,115.837,339.343,0.99546,-1,-1,-1
470,-1,53.325,3.6722,202.122,475.328,0.993867,-1,-1,-1
470,-1,558.82,70.8489,80.18,331.971,0.987921,-1,-1,-1
470,-1,14.374,173.276,113.89,298.118,0.592877,-1,-1,-1
470,-1,490.944,87.0221,63.549,174.978,0.529788,-1,-1,-1
470,-1,254.248,105.263,48.99,172.569,0.502767,-1,-1,-1
471,-1,269.302,48.8657,116.237,340.635,0.999226,-1,-1,-1
471,-1,469.735,83.3877,101.12,330.009,0.997269,-1,-1,-1
471,-1,564.139,71.4583,74.861,326.318,0.996709,-1,-1,-1
471,-1,52.6936,12.5712,183.453,466.429,0.98493,-1,-1,-1
472,-1,272.32,46.1372,115.394,336.472,0.998546,-1,-1,-1
472,-1,567.689,65.9975,71.311,325.354,0.993182,-1,-1,-1
472,-1,53.5706,49.4046,203.399,429.595,0.986373,-1,-1,-1
472,-1,451.157,88.3428,111.31,330.815,0.982864,-1,-1,-1
472,-1,427.18,124.398,40.166,63.62,0.846672,-1,-1,-1
472,-1,22.2016,162.489,121.725,302.114,0.551282,-1,-1,-1
473,-1,276.618,47.0366,115.526,355.834,0.998579,-1,-1,-1
473,-1,573.356,61.828,65.644,344.708,0.99585,-1,-1,-1
473,-1,451.501,56.2677,106.934,367.976,0.993878,-1,-1,-1
473,-1,38.3057,36.4079,227.315,442.592,0.985324,-1,-1,-1
473,-1,418.915,135.192,41.251,121.531,0.658132,-1,-1,-1
474,-1,281.794,41.5772,112.31,363.911,0.998634,-1,-1,-1
474,-1,561.671,61.9379,75.756,331.212,0.996251,-1,-1,-1
474,-1,428.948,78.4003,110.024,321.148,0.989347,-1,-1,-1
474,-1,43.7547,42.3738,228.777,436.626,0.988118,-1,-1,-1
474,-1,411.538,131.894,45.735,124.019,0.936511,-1,-1,-1
475,-1,286.602,50.435,114.573,360.714,0.998423,-1,-1,-1
475,-1,451.056,69.067,111.245,315.507,0.995768,-1,-1,-1
475,-1,82.0118,0,210.476,475.83,0.984214,-1,-1,-1
475,-1,559.511,71.8356,79.489,315.807,0.983682,-1,-1,-1
475,-1,413.993,132.324,73.167,210.978,0.592897,-1,-1,-1
476,-1,289.376,50.0058,109.145,371.892,0.998336,-1,-1,-1
476,-1,557.721,62.0286,81.279,325.597,0.994831,-1,-1,-1
476,-1,444.894,81.7016,125.995,292.872,0.992733,-1,-1,-1
476,-1,69.0495,2.27969,222.648,473.201,0.98999,-1,-1,-1
476,-1,416.419,132.335,44.056,147.023,0.578479,-1,-1,-1
477,-1,281.08,51.3381,121.847,368.777,0.99755,-1,-1,-1
477,-1,560.85,72.749,78.15,308.435,0.99471,-1,-1,-1
477,-1,430.65,86.9118,133.735,327.978,0.992649,-1,-1,-1
477,-1,74.6833,8.04881,214.399,455.863,0.980909,-1,-1,-1
478,-1,550.673,79.86,88.327,303.711,0.997544,-1,-1,-1
478,-1,277.358,39.4031,118.303,384.717,0.997003,-1,-1,-1
478,-1,434.979,86.9449,123.174,329.298,0.995162,-1,-1,-1
478,-1,80.5253,0,215.226,469.31,0.982635,-1,-1,-1
478,-1,419.416,132.211,45.662,130.61,0.800333,-1,-1,-1
479,-1,282.463,46.097,114.04,354.701,0.998686,-1,-1,-1
479,-1,538.463,55.3026,100.537,349.562,0.998298,-1,-1,-1
479,-1,429.888,88.3573,122.425,317.907,0.997489,-1,-1,-1
479,-1,70.5477,15.0809,217.302,458.114,0.987019,-1,-1,-1
480,-1,538.86,70.8761,99.423,320.296,0.998602,-1,-1,-1
480,-1,422.55,96.0579,124.071,308.531,0.998212,-1,-1,-1
480,-1,278.296,51.4987,108.849,357.029,0.998095,-1,-1,-1
480,-1,76.3996,0,230.09,470.27,0.985045,-1,-1,-1
481,-1,428.494,75.0876,116.944,335.781,0.998625,-1,-1,-1
481,-1,532.959,68.4965,106.041,330.009,0.998373,-1,-1,-1
481,-1,263.07,39.3253,116.378,384.373,0.995661,-1,-1,-1
481,-1,76.5755,26.4615,229.419,433.981,0.904314,-1,-1,-1
482,-1,521.801,73.1815,117.199,344.777,0.997488,-1,-1,-1
482,-1,265.87,43.6228,108.139,383.284,0.997235,-1,-1,-1
482,-1,416.599,79.6587,112.258,337.812,0.996058,-1,-1,-1
482,-1,53.7882,30.3204,224.423,429.25,0.952136,-1,-1,-1
483,-1,514.713,91.5764,117.228,330.448,0.99791,-1,-1,-1
483,-1,258.24,51.7699,100.649,373.995,0.990628,-1,-1,-1
483,-1,409.365,83.1733,105.882,335.249,0.989286,-1,-1,-1
483,-1,56.6838,50.6216,244.35,428.378,0.978465,-1,-1,-1
484,-1,506.207,51.2766,118.778,371.228,0.997866,-1,-1,-1
484,-1,405.528,101.824,113.355,322.266,0.997131,-1,-1,-1
484,-1,258.616,67.2139,95.12,349.072,0.98539,-1,-1,-1
484,-1,62.4239,14.9471,243.96,458.974,0.946753,-1,-1,-1
485,-1,397.615,80.3524,101.3,338.502,0.994338,-1,-1,-1
485,-1,513.074,86.0011,100.959,328.141,0.993702,-1,-1,-1
485,-1,246.113,61.9228,99.904,386.109,0.989604,-1,-1,-1
485,-1,42.8556,19.4476,237.748,459.552,0.982856,-1,-1,-1
486,-1,386.945,80.9215,107.024,340.417,0.997192,-1,-1,-1
486,-1,503.448,78.1906,99.301,324.514,0.997013,-1,-1,-1
486,-1,15.1169,20.1544,263.324,456.387,0.987476,-1,-1,-1
486,-1,241.49,51.0448,98.113,368.79,0.98608,-1,-1,-1
487,-1,377.937,84.5629,105.5,336.932,0.998017,-1,-1,-1
487,-1,489.91,87.5572,113.142,326.111,0.997944,-1,-1,-1
487,-1,34.7858,9.32324,257.118,468.261,0.991689,-1,-1,-1
487,-1,235.943,27.72,97.207,399.222,0.97048,-1,-1,-1
487,-1,5.92977,137.544,134.802,341.106,0.775254,-1,-1,-1
488,-1,485.758,89.416,109.796,320.43,0.997645,-1,-1,-1
488,-1,376.241,87.2191,109.158,332.267,0.996534,-1,-1,-1
488,-1,19.6035,45.1412,244.652,433.859,0.983273,-1,-1,-1
488,-1,242.018,57.4581,95.747,259.837,0.856165,-1,-1,-1
489,-1,482.894,79.3118,116.845,332.763,0.99705,-1,-1,-1
489,-1,380.255,75.1803,104.576,345.973,0.99425,-1,-1,-1
489,-1,32.9993,32.2128,249.946,446.787,0.951171,-1,-1,-1
489,-1,250.661,43.7617,77.759,224.562,0.642422,-1,-1,-1
490,-1,382.186,100.968,107.527,315.725,0.997556,-1,-1,-1
490,-1,471.107,88.4124,120.361,353.014,0.996558,-1,-1,-1
490,-1,13.4891,18.2591,264.288,459.563,0.949532,-1,-1,-1
490,-1,251.406,39.5209,67.037,230.056,0.835374,-1,-1,-1
491,-1,361.939,102.255,121.724,318.704,0.997463,-1,-1,-1
491,-1,467.523,76.4782,111.184,348.579,0.997191,-1,-1,-1
491,-1,10.6615,13.3998,292.785,465.6,0.97972,-1,-1,-1
491,-1,256.794,51.8632,59.934,208.096,0.920455,-1,-1,-1
491,-1,4.04257,141.316,99.8764,314.718,0.532753,-1,-1,-1
492,-1,368.857,90.9554,113.53,312.61,0.997646,-1,-1,-1
492,-1,466.961,92.2217,91.991,327.357,0.997075,-1,-1,-1
492,-1,7.07062,12.3012,284.03,462.497,0.989103,-1,-1,-1
492,-1,248.665,48.0543,64.222,207.249,0.851874,-1,-1,-1
493,-1,359.724,89.2707,114.535,323.099,0.997772,-1,-1,-1
493,-1,462.97,84.3919,102.74,327.9,0.99243,-1,-1,-1
493,-1,19.851,41.4105,276.015,437.589,0.911262,-1,-1,-1
493,-1,246.307,56.5568,62.687,189.691,0.789373,-1,-1,-1
494,-1,359.033,85.2398,126.048,334.811,0.996988,-1,-1,-1
494,-1,456.292,81.3102,121.238,328.75,0.977441,-1,-1,-1
494,-1,19.7092,22.3789,238.244,454.527,0.953558,-1,-1,-1
494,-1,250.141,37.2229,68.687,278.76,0.927615,-1,-1,-1
495,-1,360.88,90.3552,108.293,315.468,0.997387,-1,-1,-1
495,-1,457.656,83.5286,116.907,339.795,0.99483,-1,-1,-1
495,-1,238.549,35.1985,86.629,281.548,0.936532,-1,-1,-1
495,-1,25.7707,13.9828,247.56,457.305,0.913815,-1,-1,-1
495,-1,7.23682,133.473,119.744,340.905,0.744058,-1,-1,-1
496,-1,457.845,82.4992,109.058,343.912,0.996205,-1,-1,-1
496,-1,361.955,96.4303,116.033,328.077,0.995411,-1,-1,-1
496,-1,235.746,44.9404,87.851,267.174,0.956432,-1,-1,-1
496,-1,5.11066,36.0194,283.327,423.991,0.878401,-1,-1,-1
497,-1,367.621,98.9867,100.936,321.221,0.995288,-1,-1,-1
497,-1,463.939,80.2728,118.347,372.937,0.995252,-1,-1,-1
497,-1,238.26,26.3832,92.815,392.041,0.942538,-1,-1,-1
497,-1,16.0291,17.1743,240.341,453.778,0.942081,-1,-1,-1
497,-1,0.98275,286.226,98.6356,153.1,0.805345,-1,-1,-1
498,-1,463.235,85.4048,109.643,352.297,0.99643,-1,-1,-1
498,-1,365.07,90.9823,101.433,326.027,0.992588,-1,-1,-1
498,-1,17.9465,17.9333,255.317,461.067,0.952952,-1,-1,-1
498,-1,234.074,42.763,88.54,270.181,0.866827,-1,-1,-1
498,-1,2.74171,134.558,106.119,344.275,0.591287,-1,-1,-1
499,-1,462.744,77.8381,110.585,354.805,0.997241,-1,-1,-1
499,-1,365.091,81.3614,105.595,332.912,0.994832,-1,-1,-1
499,-1,21.5524,0,250.668,479,0.949473,-1,-1,-1
499,-1,573.063,227.398,49.191,94.863,0.892612,-1,-1,-1
499,-1,241.28,53.6538,78.767,216.751,0.808218,-1,-1,-1
500,-1,469.572,81.3103,101.75,334.95,0.997349,-1,-1,-1
500,-1,373.006,90.3461,100.526,324.672,0.994418,-1,-1,-1
500,-1,6.68782,0,270.151,473.593,0.97125,-1,-1,-1
500,-1,594.012,230.724,38.369,76.026,0.920742,-1,-1,-1
500,-1,231.452,29.6069,76.95,229.083,0.665059,-1,-1,-1
500,-1,347.037,150.798,53.02,203.849,0.620133,-1,-1,-1
501,-1,475.385,79.6567,100.563,338.879,0.997009,-1,-1,-1
501,-1,379.673,91.2999,114.124,317.752,0.996649,-1,-1,-1
501,-1,11.8517,23.4762,297.299,449.772,0.986276,-1,-1,-1
501,-1,221.455,271.451,86.822,189.039,0.898225,-1,-1,-1
501,-1,594.308,222.87,40.038,76.717,0.8355,-1,-1,-1
501,-1,240.813,30.6228,70.536,220.142,0.790252,-1,-1,-1
501,-1,364.905,134.8,44.256,143.695,0.770618,-1,-1,-1
502,-1,476.811,88.127,110.635,333.464,0.997731,-1,-1,-1
502,-1,367.986,95.3796,125.825,308.526,0.992467,-1,-1,-1
502,-1,2.70087,2.48766,276.492,476.512,0.979004,-1,-1,-1
502,-1,236.733,267.791,70.986,201.94,0.763559,-1,-1,-1
503,-1,477.734,81.1132,115.125,335.169,0.998407,-1,-1,-1
503,-1,370.477,91.0741,138.428,316.046,0.994117,-1,-1,-1
503,-1,53.0487,18.7966,257.821,460.203,0.930403,-1,-1,-1
503,-1,364.466,128.05,43.302,130.195,0.832097,-1,-1,-1
503,-1,223.889,159.329,95.652,314.614,0.631308,-1,-1,-1
504,-1,479.12,80.7064,117.414,336.366,0.997941,-1,-1,-1
504,-1,367.931,83.3892,131.994,338.731,0.994288,-1,-1,-1
504,-1,52.8299,5.37953,269.819,473.62,0.958425,-1,-1,-1
504,-1,0,92.2088,169.808,350.747,0.875429,-1,-1,-1
504,-1,359.263,137.451,38.998,145.266,0.839666,-1,-1,-1
504,-1,378.188,125.118,41.347,133.249,0.503761,-1,-1,-1
505,-1,482.542,79.6592,105.178,343.771,0.997593,-1,-1,-1
505,-1,367.103,93.5294,118.745,305.758,0.988712,-1,-1,-1
505,-1,39.7778,19.2585,286.96,455.744,0.972155,-1,-1,-1
505,-1,1.20388,130.413,138.186,324.229,0.790048,-1,-1,-1
505,-1,356.344,127.791,59.963,184.036,0.567765,-1,-1,-1
506,-1,479.625,66.0155,107.887,328.769,0.99739,-1,-1,-1
506,-1,381.573,86.6044,113.914,316.025,0.995731,-1,-1,-1
506,-1,17.8575,27.761,297.282,446.072,0.97156,-1,-1,-1
506,-1,357.009,128.982,45.368,137.759,0.81752,-1,-1,-1
507,-1,480.348,70.8476,108.782,340.702,0.998308,-1,-1,-1
507,-1,373.827,88.6372,111.692,310.272,0.994165,-1,-1,-1
507,-1,20.7399,35.6662,287.146,434.958,0.981741,-1,-1,-1
507,-1,346.638,135.905,49.706,153.317,0.845357,-1,-1,-1
508,-1,485.123,68.3238,110.958,336.35,0.998523,-1,-1,-1
508,-1,366.267,86.0011,130.093,327.255,0.993656,-1,-1,-1
508,-1,14.1214,11.64,307.252,449.13,0.96508,-1,-1,-1
508,-1,352.189,138.302,50.084,155.737,0.869969,-1,-1,-1
509,-1,489.045,80.4622,111.327,335.166,0.997761,-1,-1,-1
509,-1,367.506,90.7196,125.377,309.556,0.99258,-1,-1,-1
509,-1,22.6099,0,279.161,451.105,0.958527,-1,-1,-1
509,-1,339.334,128.829,84.371,156.337,0.917489,-1,-1,-1
510,-1,489.989,85.7635,110.642,328.09,0.997589,-1,-1,-1
510,-1,379.372,88.6135,117.641,326.954,0.994854,-1,-1,-1
510,-1,62.9825,26.3822,287.341,441.884,0.926783,-1,-1,-1
510,-1,15.9115,78.0647,94.3865,283.311,0.886483,-1,-1,-1
510,-1,367.421,131.498,43.812,185.528,0.815908,-1,-1,-1
511,-1,481.031,76.2765,121.013,345.606,0.996534,-1,-1,-1
511,-1,376.733,71.673,109.361,362.638,0.994822,-1,-1,-1
511,-1,4.40189,67.8006,142.32,320.996,0.974372,-1,-1,-1
511,-1,42.6045,49.4666,308.391,429.533,0.895451,-1,-1,-1
512,-1,492.305,69.397,102.928,336.279,0.997519,-1,-1,-1
512,-1,76.5629,37.9174,314.512,441.083,0.989875,-1,-1,-1
512,-1,389.948,91.9229,93.692,338.72,0.985678,-1,-1,-1
512,-1,32.4814,74.1941,122.634,311.365,0.955572,-1,-1,-1
513,-1,500.697,83.484,98.16,328.299,0.996739,-1,-1,-1
513,-1,112.329,13.6534,351.768,456.543,0.989582,-1,-1,-1
513,-1,401.497,88.2637,96.907,343.567,0.986453,-1,-1,-1
513,-1,9.47916,99.5235,82.7474,241.498,0.949782,-1,-1,-1
513,-1,80.1926,76.2941,103.091,340.575,0.924556,-1,-1,-1
514,-1,505.384,78.6822,109.604,343.923,0.998211,-1,-1,-1
514,-1,86.4538,72.082,88.0402,338.099,0.994545,-1,-1,-1
514,-1,8.1972,112.182,74.6106,243.004,0.98488,-1,-1,-1
514,-1,418.26,91.663,80.53,246.251,0.982347,-1,-1,-1
514,-1,133.883,19.5477,321.786,456.494,0.96793,-1,-1,-1
515,-1,5.32835,98.8943,84.1744,260.927,0.998529,-1,-1,-1
515,-1,503.156,82.2731,116.681,325.605,0.99789,-1,-1,-1
515,-1,98.9081,93.2489,105.537,361.426,0.995958,-1,-1,-1
515,-1,430.593,97.6181,62.638,189.54,0.984074,-1,-1,-1
515,-1,142.453,38.6878,297.229,439.024,0.951404,-1,-1,-1
516,-1,100.064,91.086,112.42,319.198,0.998156,-1,-1,-1
516,-1,499.537,68.2694,129.846,361.377,0.997794,-1,-1,-1
516,-1,3.38734,90.4357,66.6609,262.758,0.993334,-1,-1,-1
516,-1,189.578,5.65213,282.436,473.348,0.971025,-1,-1,-1
517,-1,110.481,96.7877,107.967,300.745,0.998552,-1,-1,-1
517,-1,508.571,100.039,120.127,340.336,0.997738,-1,-1,-1
517,-1,0.894705,56.629,62.915,313.073,0.986728,-1,-1,-1
517,-1,201.662,0,261.022,466.046,0.962541,-1,-1,-1
518,-1,123.351,92.9104,105.197,292.098,0.979203,-1,-1,-1
518,-1,191.069,47.3923,123.088,353.515,0.972056,-1,-1,-1
518,-1,165.947,11.8569,343.481,438.838,0.970608,-1,-1,-1
518,-1,511.147,80.9778,113.399,365.124,0.959465,-1,-1,-1
518,-1,3.7528,114.475,32.8229,109.407,0.792763,-1,-1,-1
518,-1,517.373,95.4345,44.947,62.3245,0.738246,-1,-1,-1
519,-1,197.946,33.6671,122.959,394.641,0.994088,-1,-1,-1
519,-1,125.746,81.7466,91.362,313.522,0.993696,-1,-1,-1
519,-1,214.616,26.527,342.25,441.359,0.966721,-1,-1,-1
520,-1,179.465,44.7189,147.833,392.099,0.996211,-1,-1,-1
520,-1,118.194,77.1394,96.1,293.615,0.987967,-1,-1,-1
520,-1,245.787,9.6218,326.9,469.378,0.986083,-1,-1,-1
521,-1,198.848,23.616,127.752,448.248,0.994755,-1,-1,-1
521,-1,312.468,0,290.046,464.362,0.97059,-1,-1,-1
521,-1,123.434,65.8895,100.948,332.13,0.969376,-1,-1,-1
522,-1,195.61,22.6134,143.261,444.99,0.997154,-1,-1,-1
522,-1,334.283,2.42639,262.309,459.494,0.984498,-1,-1,-1
522,-1,114.951,82.5172,122.048,318.542,0.842515,-1,-1,-1
523,-1,192.806,13.3802,144.698,445.003,0.991221,-1,-1,-1
523,-1,339.368,0,256.663,479,0.969498,-1,-1,-1
523,-1,127.843,114.337,78.961,200.766,0.793388,-1,-1,-1
523,-1,335.995,35.9528,35.087,99.7772,0.626262,-1,-1,-1
524,-1,182.247,18.7735,171.796,407.602,0.997046,-1,-1,-1
524,-1,344.793,23.5499,269.76,447.092,0.985206,-1,-1,-1
524,-1,132.26,101.297,84.017,278.95,0.931097,-1,-1,-1
525,-1,194.827,25.6842,155.935,408.98,0.996628,-1,-1,-1
525,-1,368.863,2.14105,253.875,476.859,0.995919,-1,-1,-1
525,-1,128.787,96.3878,104.614,270.334,0.988832,-1,-1,-1
526,-1,216.731,31.5603,135.394,403.89,0.997082,-1,-1,-1
526,-1,378.979,0,257.614,479,0.994117,-1,-1,-1
526,-1,147.17,92.7635,94.649,255.203,0.971665,-1,-1,-1
527,-1,213.979,27.7274,137.308,406.623,0.99514,-1,-1,-1
527,-1,385.93,0,224.363,479,0.982571,-1,-1,-1
527,-1,160.129,80.4629,78.108,326.925,0.982324,-1,-1,-1
527,-1,535.216,97.9581,103.784,375.903,0.936499,-1,-1,-1
527,-1,144.581,173.102,29.478,115.275,0.746287,-1,-1,-1
528,-1,407.668,0,227.061,479,0.994948,-1,-1,-1
528,-1,225.759,27.325,149.929,431.242,0.994122,-1,-1,-1
528,-1,126.587,156.378,41.791,150.354,0.979336,-1,-1,-1
528,-1,387.972,106.846,87.096,146.408,0.931212,-1,-1,-1
528,-1,169.12,95.3749,71.653,340.145,0.888839,-1,-1,-1
529,-1,435.204,24.4219,203.796,454.578,0.996901,-1,-1,-1
529,-1,195.495,43.1658,189.997,433.127,0.994109,-1,-1,-1
529,-1,169.61,100.979,85.106,339.985,0.978757,-1,-1,-1
529,-1,128.292,161.709,43.343,141.147,0.974548,-1,-1,-1
529,-1,387.477,117.065,90.831,198.123,0.891366,-1,-1,-1
530,-1,224.421,40.3109,155.162,423.553,0.998921,-1,-1,-1
530,-1,465.83,33.3649,173.17,428.009,0.994605,-1,-1,-1
530,-1,388.046,99.9013,96.852,332.016,0.994405,-1,-1,-1
530,-1,174.525,109.178,73.699,291.998,0.990929,-1,-1,-1
530,-1,124.051,157.172,39.347,157.505,0.928032,-1,-1,-1
531,-1,220.512,29.1322,168.428,443.225,0.996161,-1,-1,-1
531,-1,379.226,87.945,105.222,360.424,0.995608,-1,-1,-1
531,-1,468.647,0,170.353,479,0.985974,-1,-1,-1
531,-1,109.88,168.652,42.841,152.699,0.968212,-1,-1,-1
531,-1,165.214,107.847,89.856,302.389,0.960041,-1,-1,-1
532,-1,217.558,29.2303,157.295,407.617,0.996152,-1,-1,-1
532,-1,383.937,104.007,90.81,321.325,0.996081,-1,-1,-1
532,-1,480.612,8.96497,156.43,470.035,0.992916,-1,-1,-1
532,-1,95.4435,153.774,51.1905,162.098,0.985416,-1,-1,-1
532,-1,163.544,105.929,92.77,277.929,0.974184,-1,-1,-1
533,-1,224.213,23.4465,140.608,440.037,0.998384,-1,-1,-1
533,-1,79.2987,157.247,61.9693,163.63,0.996577,-1,-1,-1
533,-1,458.72,2.53835,176.495,476.462,0.995759,-1,-1,-1
533,-1,363.33,86.2364,104.885,340.284,0.985571,-1,-1,-1
533,-1,169.174,113.853,65.862,236.953,0.984772,-1,-1,-1
533,-1,149.529,145.338,37.277,147.069,0.702131,-1,-1,-1
533,-1,462.491,95.2516,49.674,80.6234,0.584079,-1,-1,-1
534,-1,210.841,33.7288,151.862,422.689,0.995971,-1,-1,-1
534,-1,54.815,145.216,61.206,172.77,0.992006,-1,-1,-1
534,-1,474.677,14.8667,163.19,453.745,0.987387,-1,-1,-1
534,-1,356.314,85.6064,99.77,321.39,0.980553,-1,-1,-1
534,-1,157.136,127.724,62.514,194.845,0.967787,-1,-1,-1
534,-1,449.275,88.7338,59.583,264.862,0.917824,-1,-1,-1
534,-1,181.862,208.943,47.977,159.663,0.765606,-1,-1,-1
535,-1,212.966,42.0427,134.009,419.749,0.997596,-1,-1,-1
535,-1,39.989,168.311,59.2942,150.808,0.994557,-1,-1,-1
535,-1,469.349,22.5357,164.791,453.669,0.994456,-1,-1,-1
535,-1,353.045,91.4598,85.501,327.92,0.978483,-1,-1,-1
535,-1,445.047,79.3611,73.826,343.831,0.945665,-1,-1,-1
535,-1,139.263,91.0251,105.191,291.576,0.942393,-1,-1,-1
535,-1,46.6697,135.842,47.9319,92.352,0.746447,-1,-1,-1
535,-1,130.566,171.099,36.694,120.664,0.512016,-1,-1,-1
536,-1,199.703,20.2128,151.397,433.836,0.997053,-1,-1,-1
536,-1,487.475,0,151.525,479,0.986255,-1,-1,-1
536,-1,13.0175,129.91,93.2455,181.63,0.984902,-1,-1,-1
536,-1,341.376,82.8427,99.594,335.021,0.983594,-1,-1,-1
536,-1,441.447,88.4639,86.04,329.783,0.958259,-1,-1,-1
536,-1,130.004,170.939,40.167,119.556,0.930398,-1,-1,-1
536,-1,172.704,180.852,52.4,197.911,0.906336,-1,-1,-1
537,-1,170.52,21.0873,183.023,392.737,0.997293,-1,-1,-1
537,-1,439.06,85.4609,88.337,330.413,0.990296,-1,-1,-1
537,-1,488.25,5.9729,150.176,471.221,0.986218,-1,-1,-1
537,-1,345.278,102.853,95.417,315.141,0.96876,-1,-1,-1
537,-1,16.215,103.974,76.8794,237.938,0.964252,-1,-1,-1
537,-1,125.734,125.828,53.613,165.468,0.835489,-1,-1,-1
537,-1,262.558,13.4612,49.092,63.668,0.557754,-1,-1,-1
538,-1,178.343,21.0594,163.405,398.646,0.996878,-1,-1,-1
538,-1,434.83,86.1227,95.459,338.941,0.995933,-1,-1,-1
538,-1,348.173,87.8974,90.675,335.666,0.992088,-1,-1,-1
538,-1,8.49084,101.366,80.1153,239.189,0.989524,-1,-1,-1
538,-1,503.613,2.72273,135.387,462.464,0.969378,-1,-1,-1
538,-1,125.324,129.859,66.989,154.5,0.570257,-1,-1,-1
539,-1,434.14,83.7354,105.234,342.687,0.996825,-1,-1,-1
539,-1,160.288,21.9656,210.79,420.94,0.996181,-1,-1,-1
539,-1,5.2332,88.6252,69.1541,258.939,0.994417,-1,-1,-1
539,-1,341.283,82.8364,99.189,334.692,0.98983,-1,-1,-1
539,-1,528.99,12.3186,110.01,443.707,0.983946,-1,-1,-1
539,-1,124.506,130.663,41.459,161.534,0.934274,-1,-1,-1
540,-1,191.281,13.3107,175.726,433.13,0.995671,-1,-1,-1
540,-1,439.174,84.4745,105.385,335.816,0.99454,-1,-1,-1
540,-1,344.196,89.8771,103.404,312.292,0.981806,-1,-1,-1
540,-1,119.48,138.165,50.248,156.307,0.97495,-1,-1,-1
540,-1,0.0244141,96.3974,96.1677,241.53,0.972943,-1,-1,-1
540,-1,532.525,0,104.277,451.636,0.898142,-1,-1,-1
540,-1,157.723,23.0496,89.064,350.724,0.504075,-1,-1,-1
541,-1,200.339,17.7138,176.923,383.157,0.998136,-1,-1,-1
541,-1,451.236,73.1283,105.806,356.224,0.996899,-1,-1,-1
541,-1,4.04703,103.75,69.6857,270.159,0.996187,-1,-1,-1
541,-1,122.153,136.221,52.788,157.035,0.995147,-1,-1,-1
541,-1,358.988,85.6611,83.918,284.344,0.909687,-1,-1,-1
541,-1,561.85,189.94,63.481,235.983,0.849503,-1,-1,-1
541,-1,423.891,121.453,39.842,79.442,0.564302,-1,-1,-1
542,-1,215.115,20.4898,163.162,390.374,0.99784,-1,-1,-1
542,-1,444.123,82.1491,117.413,341.434,0.997792,-1,-1,-1
542,-1,119.812,136.006,61.677,158.984,0.994289,-1,-1,-1
542,-1,366.274,69.0385,79.392,340.769,0.944694,-1,-1,-1
542,-1,4.00331,157.081,60.2268,222.553,0.887504,-1,-1,-1
542,-1,6.05872,95.4482,54.2509,134.649,0.85786,-1,-1,-1
542,-1,436.137,126.941,34.163,91.983,0.635179,-1,-1,-1
542,-1,409.221,231.334,42.34,115.596,0.527813,-1,-1,-1
543,-1,220.116,18.3089,171.342,400.291,0.998404,-1,-1,-1
543,-1,452.677,87.5562,123.543,328.137,0.997105,-1,-1,-1
543,-1,117.012,144.353,64.655,163.743,0.993641,-1,-1,-1
543,-1,0.862946,80.7212,64.5049,320.927,0.965757,-1,-1,-1
543,-1,367.849,92.3138,91.753,256.963,0.948485,-1,-1,-1
544,-1,239.599,23.2879,179.64,421.234,0.997623,-1,-1,-1
544,-1,462.428,87.2304,115.231,350.211,0.99692,-1,-1,-1
544,-1,101.786,140.271,86.171,170.394,0.988787,-1,-1,-1
544,-1,193.374,164.22,36.083,145.407,0.879698,-1,-1,-1
544,-1,394.001,91.1687,57.236,200.739,0.878663,-1,-1,-1
544,-1,3.07234,52.0002,56.5713,342.543,0.8325,-1,-1,-1
544,-1,417.392,240.654,45.225,118.929,0.52361,-1,-1,-1
545,-1,466.878,73.5625,119.708,364.596,0.995279,-1,-1,-1
545,-1,233.731,18.8456,202.344,446.385,0.994878,-1,-1,-1
545,-1,116.696,127.182,67.457,182.472,0.987759,-1,-1,-1
545,-1,401.868,95.8022,54.728,180.724,0.959187,-1,-1,-1
545,-1,192.388,149.06,44.727,152.299,0.898524,-1,-1,-1
545,-1,2.01223,78.5303,53.0393,315.958,0.86054,-1,-1,-1
545,-1,372.271,77.4027,107.898,347.505,0.707931,-1,-1,-1
546,-1,478.878,85.634,114.959,369.401,0.997205,-1,-1,-1
546,-1,236.915,23.4753,222.573,438.604,0.994997,-1,-1,-1
546,-1,119.088,134.182,59.983,180.927,0.988617,-1,-1,-1
546,-1,203.444,148.305,41.494,160.038,0.950377,-1,-1,-1
546,-1,418.957,86.4294,45.766,173.286,0.948424,-1,-1,-1
546,-1,387.1,82.869,90.332,307.878,0.767144,-1,-1,-1
546,-1,441.773,214.478,39.406,139.262,0.744897,-1,-1,-1
547,-1,255.974,12.4719,189.717,459.57,0.998151,-1,-1,-1
547,-1,486.873,80.9104,105.181,367.644,0.994585,-1,-1,-1
547,-1,119.133,112.665,53.616,192.024,0.982495,-1,-1,-1
547,-1,203.257,137.364,50.761,167.257,0.964572,-1,-1,-1
547,-1,393.708,63.3775,84.33,361.849,0.698413,-1,-1,-1
547,-1,425.813,73.2138,49.557,152.201,0.65512,-1,-1,-1
548,-1,504.826,72.8321,111.271,372.342,0.996891,-1,-1,-1
548,-1,119.071,121.077,55.027,186.393,0.996126,-1,-1,-1
548,-1,252.054,15.2392,218.529,458.162,0.995139,-1,-1,-1
548,-1,199.493,140.096,52.61,157.462,0.943074,-1,-1,-1
548,-1,433.068,78.959,50.096,148.406,0.912119,-1,-1,-1
548,-1,461.004,182.914,45.882,179.453,0.538893,-1,-1,-1
549,-1,507.269,77.7296,121.723,360.293,0.996838,-1,-1,-1
549,-1,254.725,15.9602,217.11,459.979,0.996451,-1,-1,-1
549,-1,118.059,114.055,55.626,196.102,0.996022,-1,-1,-1
549,-1,207.865,134.694,51.376,166.592,0.983302,-1,-1,-1
549,-1,470.33,179.912,53.41,187.215,0.703767,-1,-1,-1
549,-1,436.507,88.3068,43.125,145.63,0.689007,-1,-1,-1
550,-1,272.017,5.84131,216.71,438.216,0.99692,-1,-1,-1
550,-1,105.151,94.0485,67.477,203.161,0.996547,-1,-1,-1
550,-1,519.621,47.2061,117.95,401.242,0.996322,-1,-1,-1
550,-1,201.314,113.132,49.64,177.12,0.988949,-1,-1,-1
550,-1,480.084,185.882,55.065,168.711,0.738816,-1,-1,-1
551,-1,102.2,87.6031,69.494,211.519,0.996042,-1,-1,-1
551,-1,527.328,28.1994,111.672,424.848,0.994998,-1,-1,-1
551,-1,279.469,0,217.74,459.551,0.993499,-1,-1,-1
551,-1,193.413,112.793,55.749,192.241,0.990164,-1,-1,-1
551,-1,501.518,100.794,41.564,57.876,0.756141,-1,-1,-1
552,-1,261.638,0,222.613,471.573,0.997389,-1,-1,-1
552,-1,528.137,44.2411,110.863,412.208,0.995339,-1,-1,-1
552,-1,87.1729,101.529,78.3051,200.194,0.993949,-1,-1,-1
552,-1,190.267,118.732,56.934,190.646,0.98666,-1,-1,-1
552,-1,491.386,157.642,57.438,191.671,0.819542,-1,-1,-1
552,-1,500.446,120.417,42.457,70.216,0.703863,-1,-1,-1
553,-1,67.5559,90.0985,92.7631,240.851,0.995144,-1,-1,-1
553,-1,180.644,121.433,72.358,197.252,0.99201,-1,-1,-1
553,-1,256.263,17.433,206.993,449.75,0.990933,-1,-1,-1
553,-1,542.121,50.2756,96.879,405.048,0.990478,-1,-1,-1
553,-1,504.479,113.887,48.364,68.638,0.687629,-1,-1,-1
553,-1,501.171,159.266,52.721,210.145,0.658903,-1,-1,-1
554,-1,175.473,125.099,74.693,188.724,0.994678,-1,-1,-1
554,-1,536.465,41.0127,102.535,409.56,0.994488,-1,-1,-1
554,-1,253.927,16.2703,218.741,454.583,0.99385,-1,-1,-1
554,-1,68.0875,92.8766,81.4505,208.435,0.985283,-1,-1,-1
554,-1,498.808,96.4829,79.54,297.356,0.757311,-1,-1,-1
554,-1,512.959,117.866,43.175,65.379,0.748628,-1,-1,-1
554,-1,455.718,201.945,33.527,96.408,0.594393,-1,-1,-1
555,-1,257.165,15.9079,212.543,424.124,0.995812,-1,-1,-1
555,-1,177.587,125.182,71.432,191.685,0.99372,-1,-1,-1
555,-1,55.9654,85.5935,84.1666,243.909,0.992813,-1,-1,-1
555,-1,544.243,52.979,94.757,400.474,0.991997,-1,-1,-1
555,-1,491.002,120.551,95.954,272.166,0.636732,-1,-1,-1
556,-1,39.8042,75.8898,97.3628,268.266,0.998431,-1,-1,-1
556,-1,258.098,0,214.596,475.124,0.994539,-1,-1,-1
556,-1,168.349,107.51,71.124,233.661,0.987535,-1,-1,-1
556,-1,542.51,62.4095,94.888,393.154,0.985364,-1,-1,-1
556,-1,494.669,110.473,96.847,291.134,0.675499,-1,-1,-1
556,-1,527.392,114.098,47.943,98.824,0.533806,-1,-1,-1
557,-1,23.8385,82.0467,102.701,271.163,0.998372,-1,-1,-1
557,-1,520.98,89.3209,116.491,339.58,0.996921,-1,-1,-1
557,-1,262.483,0,214.258,474.718,0.992264,-1,-1,-1
557,-1,160.232,122.232,68.371,208.598,0.964862,-1,-1,-1
557,-1,390.486,99.7669,117.115,334.662,0.886856,-1,-1,-1
557,-1,426.25,120.406,63.235,175.286,0.796873,-1,-1,-1
557,-1,575.934,65.0715,60.507,214.312,0.73151,-1,-1,-1
557,-1,530.489,124.732,48.153,95.575,0.51786,-1,-1,-1
558,-1,18.2349,70.8922,84.6021,289.111,0.997106,-1,-1,-1
558,-1,262.436,0,191.15,473.34,0.993214,-1,-1,-1
558,-1,521.675,99.7509,110.538,325.763,0.987613,-1,-1,-1
558,-1,156.928,96.0921,70.268,241.03,0.981805,-1,-1,-1
558,-1,397.353,103.12,123.148,327.462,0.93026,-1,-1,-1
558,-1,437.039,112.291,53.462,139.106,0.857655,-1,-1,-1
558,-1,535.448,123.033,45.435,62.155,0.812886,-1,-1,-1
558,-1,577.799,67.2476,57.953,160.7,0.569544,-1,-1,-1
559,-1,5.41757,66.812,101.719,298.841,0.998709,-1,-1,-1
559,-1,153.026,106.087,91.635,211.189,0.992568,-1,-1,-1
559,-1,546.697,77.2296,90.611,347.115,0.990518,-1,-1,-1
559,-1,267.156,0,180.448,470.541,0.990195,-1,-1,-1
559,-1,427.066,88.6511,120.537,332.47,0.958671,-1,-1,-1
559,-1,455.728,96.0327,75.343,154.69,0.723774,-1,-1,-1
559,-1,545.828,126.736,49.603,163.054,0.638115,-1,-1,-1
560,-1,0,81.3869,89.0147,294.412,0.997122,-1,-1,-1
560,-1,539.046,72.8159,97.582,362.442,0.995559,-1,-1,-1
560,-1,150.258,98.3394,91.699,205.041,0.99269,-1,-1,-1
560,-1,273.108,10.4477,206.469,446.914,0.978841,-1,-1,-1
560,-1,439.683,88.8926,109.69,341.463,0.976736,-1,-1,-1
560,-1,474.782,89.2093,55.484,162.619,0.766341,-1,-1,-1
561,-1,119.354,72.6296,96.275,284.085,0.993404,-1,-1,-1
561,-1,565.96,66.142,73.04,367.707,0.992003,-1,-1,-1
561,-1,244.982,0,217.906,463.207,0.990103,-1,-1,-1
561,-1,433.869,60.0176,123.1,350.219,0.982971,-1,-1,-1
561,-1,0,43.3028,66.3999,329.613,0.970697,-1,-1,-1
561,-1,546.268,108.407,35.172,116.523,0.742146,-1,-1,-1
561,-1,427.086,85.9025,43.315,114.297,0.731976,-1,-1,-1
562,-1,110.298,64.0536,98.11,285.279,0.99652,-1,-1,-1
562,-1,243.543,8.8102,218.254,439.586,0.993111,-1,-1,-1
562,-1,441.087,47.9645,126.161,383.208,0.987849,-1,-1,-1
562,-1,565.215,41.327,73.785,429.518,0.979761,-1,-1,-1
562,-1,419.128,74.6624,46.212,92.6016,0.622975,-1,-1,-1
562,-1,0,54.2203,63.6154,314.854,0.526675,-1,-1,-1
563,-1,233.473,1.05708,229.541,462.287,0.996803,-1,-1,-1
563,-1,92.1574,55.3046,105.872,304.946,0.996079,-1,-1,-1
563,-1,465.68,35.4237,159.786,434.202,0.994671,-1,-1,-1
563,-1,397.881,35.02,91.855,349.156,0.83763,-1,-1,-1
563,-1,485.441,43.0613,99.93,187.972,0.648185,-1,-1,-1
563,-1,412.804,190.596,47.279,152.601,0.630898,-1,-1,-1
563,-1,421.598,76.606,53.243,97.689,0.501722,-1,-1,-1
564,-1,83.6979,46.1317,113.558,322.444,0.997378,-1,-1,-1
564,-1,233.602,0,216.925,469.437,0.996195,-1,-1,-1
564,-1,466.768,22.2091,165.009,449.133,0.995112,-1,-1,-1
564,-1,405.665,37.8118,75.723,341.193,0.781031,-1,-1,-1
565,-1,63.666,32.8389,130.036,372.331,0.997325,-1,-1,-1
565,-1,231.005,0,222.459,467.602,0.997,-1,-1,-1
565,-1,504.245,46.3993,125.649,432.601,0.991804,-1,-1,-1
565,-1,410.535,36.4076,83.706,346.07,0.642423,-1,-1,-1
565,-1,430.276,67.4431,50.672,145.979,0.626067,-1,-1,-1
565,-1,533.702,18.0591,95.289,178.402,0.521231,-1,-1,-1
566,-1,52.5901,25.3636,135.602,379.347,0.998357,-1,-1,-1
566,-1,224.123,0,220.906,471.284,0.997628,-1,-1,-1
566,-1,495.656,37.5332,139.953,439.673,0.994448,-1,-1,-1
566,-1,434.608,68.6665,53.528,146.159,0.841603,-1,-1,-1
566,-1,410.209,35.6163,85.895,372.029,0.741387,-1,-1,-1
567,-1,222.862,0,223.738,474.403,0.998638,-1,-1,-1
567,-1,526.312,39.4749,109.206,431.352,0.997448,-1,-1,-1
567,-1,41.0378,17.5395,127.16,385.553,0.996849,-1,-1,-1
567,-1,419.691,31.809,84.659,365.1,0.987558,-1,-1,-1
568,-1,222.23,0,213.805,458.813,0.998011,-1,-1,-1
568,-1,30.5068,12.2287,127.242,406.285,0.996673,-1,-1,-1
568,-1,542.757,35.3655,96.243,414.433,0.9938,-1,-1,-1
568,-1,423.847,26.1203,98.423,402.148,0.992262,-1,-1,-1
568,-1,567.439,61.6585,69.271,113.083,0.972404,-1,-1,-1
569,-1,208.886,0,220.274,461.181,0.998461,-1,-1,-1
569,-1,9.91849,0,143.695,459.722,0.997665,-1,-1,-1
569,-1,429.747,10.5806,105.239,426.154,0.997361,-1,-1,-1
569,-1,556.633,43.6425,82.367,354.7,0.99691,-1,-1,-1
569,-1,584.085,47.8331,51.464,106.513,0.672161,-1,-1,-1
570,-1,215.931,0,203.799,469.046,0.998653,-1,-1,-1
570,-1,11.2197,0,128.418,442.852,0.996816,-1,-1,-1
570,-1,430.888,7.80338,117.775,412.957,0.995826,-1,-1,-1
570,-1,556.717,39.9162,82.283,384.888,0.993228,-1,-1,-1
570,-1,203.792,107.66,55.682,160.484,0.608231,-1,-1,-1
571,-1,197.254,5.19923,237.756,454.938,0.99837,-1,-1,-1
571,-1,2.54775,0,131.344,449.824,0.997821,-1,-1,-1
571,-1,443.192,15.6389,114.405,423.723,0.994484,-1,-1,-1
571,-1,565.672,89.3028,71.758,329.307,0.983988,-1,-1,-1
572,-1,189.951,0,246.509,479,0.996574,-1,-1,-1
572,-1,432.325,12.4757,138.676,422.486,0.992082,-1,-1,-1
572,-1,539.091,56.0113,94.507,343.387,0.966806,-1,-1,-1
572,-1,0,0,90.0159,430.184,0.816404,-1,-1,-1
573,-1,190.963,0,236.544,463.398,0.997871,-1,-1,-1
573,-1,441.313,0,177.459,451.99,0.967975,-1,-1,-1
573,-1,543.122,37.2336,92.358,337.134,0.794496,-1,-1,-1
573,-1,2.53216,7.98007,112.576,420.783,0.544217,-1,-1,-1
573,-1,550.925,221.512,52.201,126.058,0.508582,-1,-1,-1
574,-1,199.06,0,240.718,479,0.997543,-1,-1,-1
574,-1,463.458,0,170.297,460.62,0.984914,-1,-1,-1
574,-1,446.691,206.733,46.44,80.338,0.618338,-1,-1,-1
574,-1,587.456,222.248,46.026,96.215,0.583682,-1,-1,-1
574,-1,177.047,136.077,37.766,144.178,0.550572,-1,-1,-1
575,-1,192.458,0,257.254,476.543,0.996721,-1,-1,-1
575,-1,472.425,0,157.181,472.555,0.987291,-1,-1,-1
576,-1,205.501,0,248.314,479,0.998026,-1,-1,-1
576,-1,492.174,0,146.826,460.2,0.996325,-1,-1,-1
576,-1,188.421,129.455,46.461,143.299,0.768015,-1,-1,-1
577,-1,498.244,0,140.756,472.07,0.995232,-1,-1,-1
577,-1,200.267,0,271.909,470.161,0.994536,-1,-1,-1
578,-1,214.65,0,246.657,475.088,0.99734,-1,-1,-1
578,-1,519.239,0,119.761,467.566,0.99312,-1,-1,-1
579,-1,215.529,0,254.035,479,0.998765,-1,-1,-1
579,-1,505.593,44.0378,123.538,369.339,0.931183,-1,-1,-1
579,-1,525.719,67.4664,40.515,141.383,0.715962,-1,-1,-1
579,-1,216.135,109.662,39.87,172.337,0.553478,-1,-1,-1
580,-1,508.113,75.4491,115.079,320.424,0.998383,-1,-1,-1
580,-1,217.231,0,262.935,479,0.99827,-1,-1,-1
580,-1,215.992,147.098,33.859,135.102,0.969528,-1,-1,-1
580,-1,521.999,62.2654,52.556,85.8356,0.714402,-1,-1,-1
581,-1,502.436,66.1528,127.578,337.438,0.998461,-1,-1,-1
581,-1,246.744,0,248.932,474.128,0.994296,-1,-1,-1
581,-1,220.169,141.631,38.352,141.019,0.954837,-1,-1,-1
581,-1,95.3964,157.699,46.7456,99.013,0.766603,-1,-1,-1
581,-1,509.589,67.7283,77.824,110.268,0.677438,-1,-1,-1
582,-1,496.876,76.2272,133.831,324.348,0.998683,-1,-1,-1
582,-1,247.885,0,259.866,467.643,0.989665,-1,-1,-1
582,-1,212.367,147.89,36.914,135.316,0.979695,-1,-1,-1
582,-1,516.357,70.719,31.014,46.85,0.765433,-1,-1,-1
582,-1,504.251,68.5273,74.982,97.5167,0.615332,-1,-1,-1
583,-1,251.506,0,284.673,468.486,0.997534,-1,-1,-1
583,-1,485.769,85.1325,130.705,317.113,0.996931,-1,-1,-1
583,-1,210.436,150.799,48.329,140.348,0.984973,-1,-1,-1
583,-1,488.988,243.925,50.179,133.868,0.77841,-1,-1,-1
583,-1,507.332,75.0804,45.623,62.5676,0.695467,-1,-1,-1
584,-1,257.094,0,292.071,478.783,0.997797,-1,-1,-1
584,-1,207.791,151.133,42.741,143.476,0.985296,-1,-1,-1
584,-1,474.133,91.746,135.13,300.69,0.977935,-1,-1,-1
585,-1,264.039,0,320.723,445.961,0.9961,-1,-1,-1
585,-1,203.629,145.145,42.923,155.637,0.979241,-1,-1,-1
585,-1,467.815,74.6416,140.335,322.5,0.965948,-1,-1,-1
585,-1,553.549,116.088,47.652,129.754,0.781255,-1,-1,-1
585,-1,0.840172,16.204,77.6761,462.796,0.52553,-1,-1,-1
586,-1,281.79,0,279.542,463.342,0.998351,-1,-1,-1
586,-1,195.196,143.448,52.863,174.456,0.990363,-1,-1,-1
586,-1,480.202,96.7057,113.581,305.921,0.980644,-1,-1,-1
586,-1,546.589,111.104,44.496,60.387,0.839606,-1,-1,-1
586,-1,0,2.35545,93.869,476.645,0.73183,-1,-1,-1
587,-1,272.49,0,286.509,468.638,0.996421,-1,-1,-1
587,-1,190.044,151.855,49.869,160.38,0.992642,-1,-1,-1
587,-1,0.839886,19.5338,111.226,452.986,0.975132,-1,-1,-1
587,-1,473.235,111.528,101.795,275.711,0.960749,-1,-1,-1
587,-1,532.74,115.57,46.999,74.329,0.933587,-1,-1,-1
588,-1,282.57,0,262.822,462.604,0.997789,-1,-1,-1
588,-1,176.715,148.459,63.341,160.203,0.993961,-1,-1,-1
588,-1,0,41.5762,110.822,424.419,0.919345,-1,-1,-1
588,-1,479.732,98.133,103.236,286.567,0.870748,-1,-1,-1
588,-1,522.75,120.451,46.37,74.32,0.850245,-1,-1,-1
589,-1,236.593,7.81596,268.481,390.082,0.99512,-1,-1,-1
589,-1,156.51,141.568,53.338,179.269,0.987128,-1,-1,-1
589,-1,470.777,127.758,98.6,245.864,0.978743,-1,-1,-1
589,-1,0,0,97.0436,479,0.922107,-1,-1,-1
589,-1,493.495,128.929,48.04,75.128,0.536201,-1,-1,-1
590,-1,242.258,0,262.695,476.919,0.998132,-1,-1,-1
590,-1,143.287,150.062,53.533,172.02,0.991809,-1,-1,-1
590,-1,1.25494,109.242,90.2399,358.927,0.954585,-1,-1,-1
590,-1,465.897,121.6,91.931,252.993,0.943124,-1,-1,-1
590,-1,479.788,121.384,51.392,62.941,0.883043,-1,-1,-1
590,-1,224.865,17.2278,105.334,287.038,0.69749,-1,-1,-1
591,-1,217.19,0,264.612,458.812,0.998071,-1,-1,-1
591,-1,122.975,147.747,54.199,166.948,0.992175,-1,-1,-1
591,-1,466.239,121.086,39.497,69.329,0.871221,-1,-1,-1
591,-1,451.555,157.585,60.371,183.086,0.781023,-1,-1,-1
591,-1,192.212,125.025,81.617,161.455,0.645535,-1,-1,-1
591,-1,156.605,139.005,37.453,111.586,0.598144,-1,-1,-1
592,-1,104.255,139.071,65.275,183.192,0.995955,-1,-1,-1
592,-1,201.12,0,283.785,431.496,0.995934,-1,-1,-1
592,-1,414.612,125.854,99.013,247.283,0.914445,-1,-1,-1
592,-1,3.23247,125.961,82.717,336.932,0.688685,-1,-1,-1
592,-1,188.635,126.761,80.435,170.269,0.539715,-1,-1,-1
592,-1,442.422,119.227,49.111,131.594,0.50519,-1,-1,-1
593,-1,202.8,0,264.962,458.764,0.997135,-1,-1,-1
593,-1,89.5739,132.107,60.0511,171.723,0.992067,-1,-1,-1
593,-1,358.28,73.2163,123.1,312.655,0.907826,-1,-1,-1
593,-1,421.13,122.919,58.706,100.543,0.603202,-1,-1,-1
594,-1,188.554,0,268.852,453.109,0.99799,-1,-1,-1
594,-1,76.3429,113.036,67.8231,213.018,0.997919,-1,-1,-1
594,-1,395.072,147.407,68.368,215.012,0.86401,-1,-1,-1
594,-1,188.966,133.523,46.286,166.433,0.65622,-1,-1,-1
594,-1,3.30964,160.261,55.7035,149.442,0.630872,-1,-1,-1
595,-1,55.4541,114.231,73.9599,225.047,0.998336,-1,-1,-1
595,-1,193.266,0,268.229,469.629,0.99771,-1,-1,-1
595,-1,392.256,163.642,66.878,205.987,0.923196,-1,-1,-1
595,-1,3.07883,245.996,62.2362,223.26,0.662151,-1,-1,-1
595,-1,602.45,174.167,35.824,126.955,0.651592,-1,-1,-1
596,-1,178.119,0,274.227,467.398,0.997746,-1,-1,-1
596,-1,26.9589,105.799,85.7581,230.264,0.99773,-1,-1,-1
596,-1,326.675,70.1155,147.034,318.668,0.75641,-1,-1,-1
597,-1,18.8791,104.649,84.2079,241.898,0.997756,-1,-1,-1
597,-1,207.438,0,241.794,465.272,0.996458,-1,-1,-1
597,-1,185.053,139.967,31.095,105.374,0.524441,-1,-1,-1
598,-1,5.78579,90.8973,92.1228,266.238,0.997036,-1,-1,-1
598,-1,196.066,0,244.965,473.092,0.996634,-1,-1,-1
598,-1,163.492,179.8,38.018,123.776,0.979718,-1,-1,-1
598,-1,174.12,155.376,40.186,86.508,0.941909,-1,-1,-1
598,-1,372.071,151.068,59.442,181.248,0.727312,-1,-1,-1
599,-1,196.541,0,239.631,464.39,0.99673,-1,-1,-1
599,-1,0,85.6523,85.6399,271.9,0.996328,-1,-1,-1
599,-1,163.733,147.776,38.573,135.255,0.964725,-1,-1,-1
599,-1,602.061,259.151,36.113,84.486,0.807374,-1,-1,-1
599,-1,377.228,143.989,52.601,180.828,0.559644,-1,-1,-1
600,-1,180.89,0,252.089,475.556,0.998832,-1,-1,-1
600,-1,12.2933,132.095,74.9633,202.352,0.981847,-1,-1,-1
600,-1,155.719,156.715,45.212,146.107,0.933045,-1,-1,-1
600,-1,597.592,229.837,41.408,120.496,0.801279,-1,-1,-1
600,-1,375.792,167.705,52.523,189.627,0.5638,-1,-1,-1
601,-1,178.105,8.26448,271.298,446.857,0.997987,-1,-1,-1
601,-1,3.16407,300.951,42.7255,70.461,0.950847,-1,-1,-1
601,-1,146.206,151.853,41.984,125.874,0.95066,-1,-1,-1
601,-1,602.081,256.506,35.538,96.699,0.819129,-1,-1,-1
601,-1,4.4992,138.497,50.2835,123.73,0.77036,-1,-1,-1
601,-1,373.991,118.67,55.374,240.017,0.597892,-1,-1,-1
602,-1,172.789,0,263.148,467.169,0.998956,-1,-1,-1
602,-1,148.788,148.879,49.431,168.033,0.962326,-1,-1,-1
602,-1,588.095,203.205,50.905,161.836,0.775799,-1,-1,-1
603,-1,164.467,0,265.984,471.157,0.998791,-1,-1,-1
603,-1,136.001,154.552,63.212,99.91,0.910231,-1,-1,-1
603,-1,582.828,210.308,50.183,145.015,0.878894,-1,-1,-1
604,-1,177.308,0,256.095,477.342,0.999265,-1,-1,-1
604,-1,135.376,143.965,54.291,179.244,0.994847,-1,-1,-1
604,-1,575.356,183.805,58.04,174.433,0.834981,-1,-1,-1
605,-1,192.645,0,222.317,464.487,0.997091,-1,-1,-1
605,-1,131.379,145.148,60.126,150.914,0.992369,-1,-1,-1
605,-1,587.007,188.11,50.949,160.083,0.813245,-1,-1,-1
606,-1,186.024,1.78008,212.354,399.25,0.998159,-1,-1,-1
606,-1,138.274,135.332,52.069,157.107,0.973831,-1,-1,-1
607,-1,199.003,2.07433,201.377,444.149,0.996981,-1,-1,-1
607,-1,110.804,128.492,87.663,146.237,0.953826,-1,-1,-1
608,-1,199.523,6.91783,198.711,460.354,0.997803,-1,-1,-1
608,-1,95.1207,88.5148,90.6793,259.104,0.838636,-1,-1,-1
608,-1,191.283,162.125,61.682,218.209,0.584486,-1,-1,-1
609,-1,189.521,15.0661,242.5,425.956,0.997666,-1,-1,-1
609,-1,121.925,119.962,60.13,190.702,0.944295,-1,-1,-1
609,-1,1.25181,156.423,78.8137,306.966,0.819957,-1,-1,-1
610,-1,183.074,14.8537,261.625,364.068,0.998559,-1,-1,-1
610,-1,1.12115,107.525,79.0161,360.599,0.94574,-1,-1,-1
610,-1,115.918,115.715,54.622,168.517,0.935445,-1,-1,-1
611,-1,194.682,10.5006,245.653,423.968,0.998649,-1,-1,-1
611,-1,99.6216,122.531,66.9654,214.529,0.983678,-1,-1,-1
611,-1,2.07616,72.5603,65.5768,394.618,0.975639,-1,-1,-1
612,-1,216.727,0,221.266,473.382,0.996547,-1,-1,-1
612,-1,80.7312,106.744,101.304,199.389,0.995694,-1,-1,-1
612,-1,0,53.3855,76.6674,403.608,0.984119,-1,-1,-1
612,-1,400.586,143.064,55.786,173.914,0.511738,-1,-1,-1
613,-1,208.4,0,239.901,469.245,0.996624,-1,-1,-1
613,-1,66.3586,101.553,103.014,207.791,0.990393,-1,-1,-1
613,-1,137.897,150.839,59.117,128.928,0.986691,-1,-1,-1
613,-1,190.461,101.708,77.273,284.342,0.918326,-1,-1,-1
613,-1,2.10147,42.8467,75.9315,414.005,0.776377,-1,-1,-1
613,-1,89.2053,225.231,57.7887,119.268,0.584485,-1,-1,-1
614,-1,239.68,11.6509,236.815,432.765,0.996083,-1,-1,-1
614,-1,174.736,101.397,91.828,280.473,0.983114,-1,-1,-1
614,-1,135.329,153.92,57.629,137.599,0.981516,-1,-1,-1
614,-1,65.7609,103.392,67.5871,213.529,0.940409,-1,-1,-1
614,-1,6.05045,77.7953,101.384,351.541,0.861084,-1,-1,-1
615,-1,248.216,10.61,229.649,382.055,0.997686,-1,-1,-1
615,-1,181.996,106.977,80.959,251.236,0.996496,-1,-1,-1
615,-1,139.021,161.086,57.361,131.828,0.983572,-1,-1,-1
615,-1,7.56306,65.9427,90.5732,392.792,0.855579,-1,-1,-1
616,-1,132.453,151.788,57.22,145.596,0.993276,-1,-1,-1
616,-1,267.705,0,222.062,474.305,0.992916,-1,-1,-1
616,-1,186.023,99.0401,84.662,257.393,0.988653,-1,-1,-1
616,-1,7.6972,67.832,100.278,374.538,0.983338,-1,-1,-1
616,-1,62.6516,89.7844,57.9564,198.106,0.777318,-1,-1,-1
617,-1,273.719,0,212.671,475.353,0.993916,-1,-1,-1
617,-1,125.987,147.88,54.005,148.116,0.99315,-1,-1,-1
617,-1,183.464,102.63,81.876,250.831,0.992958,-1,-1,-1
617,-1,3.55145,31.8149,112.445,445.662,0.974912,-1,-1,-1
617,-1,269.906,111.34,37.546,158.379,0.861006,-1,-1,-1
618,-1,255.123,0,240.552,479,0.99775,-1,-1,-1
618,-1,120.198,141.958,55.908,143.648,0.997239,-1,-1,-1
618,-1,182.277,98.5998,65.569,265.035,0.985276,-1,-1,-1
618,-1,252.424,103.901,60.915,213.609,0.978483,-1,-1,-1
618,-1,0,6.10536,91.1903,472.895,0.974734,-1,-1,-1
619,-1,250.992,1.69632,245.11,477.304,0.996805,-1,-1,-1
619,-1,0,0,97.8966,476.12,0.991987,-1,-1,-1
619,-1,111.709,140.448,47.694,151.758,0.990546,-1,-1,-1
619,-1,246.23,102.843,64.762,233.324,0.974485,-1,-1,-1
619,-1,179.881,89.805,55.716,270.13,0.927629,-1,-1,-1
620,-1,243.691,0,260.2,473.821,0.997844,-1,-1,-1
620,-1,95.1603,134.146,53.3727,160.794,0.994241,-1,-1,-1
620,-1,171.759,94.0804,57.865,270.394,0.975897,-1,-1,-1
620,-1,245.702,92.7615,80.091,299.941,0.947337,-1,-1,-1
620,-1,0,0,103.446,454.448,0.943194,-1,-1,-1
621,-1,261.629,0,230.804,470.681,0.996197,-1,-1,-1
621,-1,237.874,98.9106,94.342,266.604,0.9938,-1,-1,-1
621,-1,99.2779,138.166,53.8191,164.144,0.992136,-1,-1,-1
621,-1,0,40.192,99.4053,422.905,0.980902,-1,-1,-1
621,-1,172.45,105.758,60.777,250.732,0.788395,-1,-1,-1
622,-1,269.336,0,222.955,467.324,0.99698,-1,-1,-1
622,-1,246.203,96.8519,86.656,278.139,0.988678,-1,-1,-1
622,-1,97.4379,139.805,59.1281,170.061,0.979062,-1,-1,-1
622,-1,0,34.6109,102.825,443.91,0.972871,-1,-1,-1
622,-1,177.296,111.112,61.761,264.003,0.909117,-1,-1,-1
623,-1,246.399,126.463,85.046,234.267,0.995727,-1,-1,-1
623,-1,296.174,0,196.259,468.832,0.990384,-1,-1,-1
623,-1,0,20.8552,102.604,452.238,0.981181,-1,-1,-1
623,-1,97.4543,139.975,50.0237,160.713,0.980565,-1,-1,-1
623,-1,174.933,116.331,62.826,254.255,0.731928,-1,-1,-1
623,-1,84.3118,241.719,57.6942,169.639,0.661069,-1,-1,-1
624,-1,294.472,0,189.507,472.478,0.996229,-1,-1,-1
624,-1,240.847,115.964,77.321,260.808,0.982191,-1,-1,-1
624,-1,0,0,127.352,479,0.929197,-1,-1,-1
624,-1,154.567,113.144,93.672,272.616,0.924129,-1,-1,-1
624,-1,80.0759,224.624,56.7981,201.534,0.825476,-1,-1,-1
625,-1,286.875,1.45938,218.969,477.541,0.996712,-1,-1,-1
625,-1,256.203,117.676,66.504,251.046,0.984917,-1,-1,-1
625,-1,1.3438,0,141.961,457.275,0.958458,-1,-1,-1
625,-1,157.464,106.92,94.504,290.654,0.949827,-1,-1,-1
626,-1,165.685,107.006,88.827,268.135,0.990594,-1,-1,-1
626,-1,295,0,202.937,434.944,0.990118,-1,-1,-1
626,-1,0,7.85019,132.868,456.098,0.988455,-1,-1,-1
626,-1,256.579,143.879,65.5,224.061,0.917818,-1,-1,-1
627,-1,305.617,0,228.977,457.313,0.995857,-1,-1,-1
627,-1,167.374,110.049,90.687,244.972,0.983628,-1,-1,-1
627,-1,0.565567,0,144.814,458.812,0.97967,-1,-1,-1
627,-1,254.03,104.601,62.635,234.631,0.973347,-1,-1,-1
628,-1,6.07888,38.4511,137.941,440.549,0.995226,-1,-1,-1
628,-1,301.814,3.11838,250.303,428.613,0.994193,-1,-1,-1
628,-1,165.473,95.47,93.943,268.114,0.973929,-1,-1,-1
628,-1,262.815,112.977,54.416,222.196,0.964038,-1,-1,-1
629,-1,314.431,0,255.971,466.756,0.995832,-1,-1,-1
629,-1,0,34.7534,153.068,441.672,0.993619,-1,-1,-1
629,-1,176.333,115.646,96.628,240.44,0.987177,-1,-1,-1
629,-1,259.352,99.1357,83.195,287.086,0.949553,-1,-1,-1
630,-1,326.419,0,249.823,459.78,0.997559,-1,-1,-1
630,-1,0,37.6575,179.414,431.207,0.993029,-1,-1,-1
630,-1,201.761,114.931,77.472,248.162,0.99063,-1,-1,-1
630,-1,273.882,122.086,71.93,254.723,0.946423,-1,-1,-1
631,-1,350.978,0,245.989,467.944,0.995265,-1,-1,-1
631,-1,1.55315,28.849,185.898,440.796,0.991084,-1,-1,-1
631,-1,213.921,117.278,66.932,251.631,0.983166,-1,-1,-1
631,-1,286.774,123.298,63.872,208.776,0.924072,-1,-1,-1
631,-1,176.894,132.832,43.225,121.861,0.891268,-1,-1,-1
632,-1,362.331,0,261.064,425.198,0.996216,-1,-1,-1
632,-1,0.613823,17.2762,198.615,457.876,0.99392,-1,-1,-1
632,-1,224.636,113.753,59.529,246.902,0.923086,-1,-1,-1
632,-1,175.914,132.728,43.89,128.016,0.90462,-1,-1,-1
632,-1,292.749,122.141,60.06,233.275,0.885272,-1,-1,-1
633,-1,382.592,0,249.67,468.652,0.996808,-1,-1,-1
633,-1,0,10.509,212.586,464.034,0.993917,-1,-1,-1
633,-1,295.41,136.115,60.361,224.702,0.955687,-1,-1,-1
633,-1,235.416,128.583,55.908,224.431,0.925729,-1,-1,-1
634,-1,384.11,0,245.509,468.423,0.998642,-1,-1,-1
634,-1,14.0662,0,208.738,478.078,0.994224,-1,-1,-1
634,-1,300.604,112.417,75.095,245.441,0.983038,-1,-1,-1
634,-1,237.218,122.086,52.619,235.326,0.961193,-1,-1,-1
634,-1,1.84316,72.3095,30.0666,87.2845,0.692368,-1,-1,-1
634,-1,174.105,109.512,157.403,273.865,0.580801,-1,-1,-1
634,-1,8.13913,277.074,49.4589,144.675,0.521026,-1,-1,-1
635,-1,409.854,0,217.719,477.645,0.999122,-1,-1,-1
635,-1,46.3489,12.9615,177.811,454.325,0.991689,-1,-1,-1
635,-1,315.901,121.23,69.567,222.256,0.98801,-1,-1,-1
635,-1,246.76,116.604,56.914,218.961,0.971756,-1,-1,-1
635,-1,208.828,202.717,52.193,172.232,0.646578,-1,-1,-1
636,-1,392.23,0,237.361,469.438,0.998902,-1,-1,-1
636,-1,309.515,133.432,69.183,203.673,0.990028,-1,-1,-1
636,-1,66.4157,22.2289,162.463,448.214,0.989373,-1,-1,-1
636,-1,244.381,136.565,52.936,197.387,0.942745,-1,-1,-1
637,-1,396.582,0,241.708,479,0.998254,-1,-1,-1
637,-1,72.5056,13.5529,175.535,465.447,0.995621,-1,-1,-1
637,-1,307.409,125.008,70.913,207.306,0.986828,-1,-1,-1
637,-1,250.781,132.045,49.536,208.011,0.920209,-1,-1,-1
638,-1,409.043,0,229.957,479,0.998866,-1,-1,-1
638,-1,306.448,130.578,75.252,216.103,0.995197,-1,-1,-1
638,-1,86.5155,17.6525,155.083,461.348,0.992304,-1,-1,-1
638,-1,249.609,118.871,52.826,228.545,0.968782,-1,-1,-1
639,-1,388.354,0,247.259,472.135,0.998287,-1,-1,-1
639,-1,79.3847,13.5654,166.357,465.435,0.993127,-1,-1,-1
639,-1,294.483,128.011,76.908,223.453,0.978446,-1,-1,-1
639,-1,249.29,106.948,51.854,244.781,0.928721,-1,-1,-1
639,-1,183.798,94.5901,106.495,356.611,0.533443,-1,-1,-1
640,-1,384.959,0,252.241,466.932,0.999004,-1,-1,-1
640,-1,304.739,128.205,71.02,211.953,0.988413,-1,-1,-1
640,-1,33.2749,23.3778,206.799,415.32,0.980412,-1,-1,-1
640,-1,237.589,111.079,58.67,235.996,0.979581,-1,-1,-1
640,-1,152.466,81.9905,138.203,383.822,0.573425,-1,-1,-1
641,-1,379.386,0,251.454,479,0.999352,-1,-1,-1
641,-1,28.7317,20.9849,230.793,433.037,0.991715,-1,-1,-1
641,-1,220.568,108.45,72.903,260.778,0.989425,-1,-1,-1
641,-1,296.451,124.629,69.069,209.038,0.987307,-1,-1,-1
641,-1,10.0073,61.4825,96.6187,341.669,0.74656,-1,-1,-1
642,-1,394.884,0,242.35,479,0.99877,-1,-1,-1
642,-1,222.675,124.711,68.467,238.804,0.987668,-1,-1,-1
642,-1,58.0068,26.0082,190.464,401.493,0.985943,-1,-1,-1
642,-1,289.719,121.875,67.863,246.892,0.979196,-1,-1,-1
642,-1,7.49951,32.6983,101.617,355.951,0.812366,-1,-1,-1
642,-1,16.1227,49.1957,60.1862,139.452,0.533047,-1,-1,-1
643,-1,379.479,0,241.931,479,0.998912,-1,-1,-1
643,-1,63.0159,21.3878,182.049,423.299,0.996253,-1,-1,-1
643,-1,289.388,129.756,82.192,189.384,0.978866,-1,-1,-1
643,-1,1.59467,48.2503,99.7713,368.639,0.951605,-1,-1,-1
643,-1,216.867,118.144,62.509,243.831,0.950738,-1,-1,-1
644,-1,398.954,0,224.024,479,0.998408,-1,-1,-1
644,-1,65.7155,23.7263,168.286,400.945,0.997217,-1,-1,-1
644,-1,293.667,132.979,62.24,206.904,0.99218,-1,-1,-1
644,-1,219.727,131.205,70.319,232.123,0.944824,-1,-1,-1
645,-1,385.87,0.894455,253.13,460.574,0.998107,-1,-1,-1
645,-1,44.4709,20.5135,193.397,446.164,0.997378,-1,-1,-1
645,-1,282.492,132.086,68.699,190.982,0.984564,-1,-1,-1
645,-1,210.178,127.103,68.355,225.731,0.977981,-1,-1,-1
646,-1,368.343,5.00276,270.657,437.669,0.998631,-1,-1,-1
646,-1,49.66,30.1335,192.667,444.549,0.991305,-1,-1,-1
646,-1,279.38,134.005,66.12,210.004,0.990096,-1,-1,-1
646,-1,210.736,125.104,63.486,193.07,0.98008,-1,-1,-1
647,-1,274.302,130.687,63.796,217.428,0.995441,-1,-1,-1
647,-1,380.877,0,258.123,458.685,0.993017,-1,-1,-1
647,-1,69.2711,0,152.34,479,0.992274,-1,-1,-1
647,-1,211.901,136.342,55.292,161.372,0.973561,-1,-1,-1
647,-1,151.615,88.1019,112.94,378.529,0.51633,-1,-1,-1
648,-1,64.3019,15.838,163.122,452.582,0.996473,-1,-1,-1
648,-1,263.126,137.376,75.756,214.823,0.990992,-1,-1,-1
648,-1,379.285,5.3847,255.615,472.523,0.986614,-1,-1,-1
648,-1,207.503,139.864,65.686,175.032,0.978778,-1,-1,-1
649,-1,54.1914,0,173.425,473.127,0.997217,-1,-1,-1
649,-1,389.154,0,246.884,445.683,0.997195,-1,-1,-1
649,-1,275.786,146.834,60.767,197.31,0.984886,-1,-1,-1
649,-1,213.596,146.794,57.205,189.28,0.98464,-1,-1,-1
649,-1,252.863,143.74,47.395,184.113,0.592469,-1,-1,-1
650,-1,48.2133,24.667,180.605,440.427,0.997482,-1,-1,-1
650,-1,386.661,0,247.517,465.953,0.99649,-1,-1,-1
650,-1,275.082,142.672,60.474,201.311,0.982852,-1,-1,-1
650,-1,202.114,146.725,60.138,209.607,0.973412,-1,-1,-1
651,-1,379.168,0,259.832,454.355,0.99829,-1,-1,-1
651,-1,54.2914,12.297,159.165,435.502,0.997325,-1,-1,-1
651,-1,263.065,121.373,59.542,223.609,0.981354,-1,-1,-1
651,-1,203.229,127.543,57.672,205.418,0.962239,-1,-1,-1
652,-1,370.333,0,263.571,472.571,0.998867,-1,-1,-1
652,-1,59.8631,6.36449,150.792,469.418,0.997089,-1,-1,-1
652,-1,262.529,136.107,61.352,208.238,0.981525,-1,-1,-1
652,-1,208.785,137.296,51.796,213.049,0.973088,-1,-1,-1
653,-1,375.574,0,255.822,479,0.999211,-1,-1,-1
653,-1,50.8135,31.3486,173.279,432.05,0.993915,-1,-1,-1
653,-1,254.935,146.563,68.827,193.544,0.991115,-1,-1,-1
653,-1,200.369,141.421,55.546,216.397,0.980001,-1,-1,-1
654,-1,359.973,0,268.03,479,0.99899,-1,-1,-1
654,-1,247.816,129.853,79.217,208.335,0.994786,-1,-1,-1
654,-1,36.5212,0,187.774,476.636,0.988657,-1,-1,-1
654,-1,202.659,131.654,52.562,214.391,0.965331,-1,-1,-1
655,-1,371.943,0,258.762,474.972,0.998953,-1,-1,-1
655,-1,257.158,136.921,63.819,206.471,0.992284,-1,-1,-1
655,-1,45.0065,10.1263,177.776,415.291,0.990053,-1,-1,-1
655,-1,198.868,128.916,56.266,224.535,0.982149,-1,-1,-1
656,-1,371.983,0,257.42,478.574,0.999,-1,-1,-1
656,-1,271.131,132.634,57.917,213.305,0.996822,-1,-1,-1
656,-1,39.0053,27.4633,200.293,395.076,0.992834,-1,-1,-1
656,-1,200.548,121.636,54.653,246.266,0.951515,-1,-1,-1
657,-1,342.076,0,294.195,475.436,0.998692,-1,-1,-1
657,-1,274.432,125.136,57.345,211.202,0.996983,-1,-1,-1
657,-1,58.1178,22.7466,178.535,403.137,0.992672,-1,-1,-1
657,-1,213.503,130.553,48.714,196.331,0.942423,-1,-1,-1
658,-1,367.179,0,263.514,469.194,0.998863,-1,-1,-1
658,-1,280.274,119.588,55.078,220.477,0.997218,-1,-1,-1
658,-1,48.2963,21.2151,191.769,403.221,0.995564,-1,-1,-1
658,-1,209.79,121.288,52.993,208.398,0.953505,-1,-1,-1
659,-1,371.019,0,256.124,479,0.99869,-1,-1,-1
659,-1,60.1535,22.5097,179.346,417.127,0.997355,-1,-1,-1
659,-1,285.631,129.134,56.077,200.335,0.995102,-1,-1,-1
659,-1,221.057,122.744,49.335,181.531,0.955581,-1,-1,-1
660,-1,358.239,0,257.745,479,0.998288,-1,-1,-1
660,-1,68.1781,16.0416,158.242,409.258,0.99789,-1,-1,-1
660,-1,280.75,131.911,56.907,206.958,0.995583,-1,-1,-1
660,-1,72.5364,248.701,38.4556,70.048,0.956338,-1,-1,-1
660,-1,219.788,115.732,48.696,214.686,0.924126,-1,-1,-1
661,-1,373.683,0,239.367,479,0.999017,-1,-1,-1
661,-1,274.019,139.075,63.869,194.932,0.995042,-1,-1,-1
661,-1,76.7133,26.0314,148.148,438.701,0.994645,-1,-1,-1
661,-1,213.078,129.149,56.727,159.009,0.872135,-1,-1,-1
661,-1,54.0621,100.323,55.6759,234.941,0.51798,-1,-1,-1
662,-1,384.125,0,243.893,451.571,0.998818,-1,-1,-1
662,-1,82.696,12.847,147.163,463.727,0.996049,-1,-1,-1
662,-1,273.4,138.453,62.953,207.469,0.992762,-1,-1,-1
662,-1,41.2491,122.816,61.4379,213.714,0.910842,-1,-1,-1
662,-1,218.103,132.644,48.206,165.511,0.879258,-1,-1,-1
663,-1,370.643,0,266.63,417.177,0.998121,-1,-1,-1
663,-1,281.437,135.543,54.52,209.331,0.996201,-1,-1,-1
663,-1,36.1733,120.502,62.771,220.01,0.992529,-1,-1,-1
663,-1,85.5524,6.35214,135.168,448.311,0.992406,-1,-1,-1
663,-1,210.578,134.876,42.841,185.221,0.887054,-1,-1,-1
664,-1,356.048,18.5853,282.952,371.666,0.997378,-1,-1,-1
664,-1,279.721,141.342,57.743,203.482,0.994576,-1,-1,-1
664,-1,82.3509,17.7524,143.749,426.148,0.993199,-1,-1,-1
664,-1,13.0216,117.856,89.4734,230.648,0.982994,-1,-1,-1
664,-1,222.047,131.209,51.288,165.386,0.943968,-1,-1,-1
664,-1,212.645,209.14,47.488,128.67,0.650371,-1,-1,-1
665,-1,17.2032,106.824,85.0088,232.68,0.997753,-1,-1,-1
665,-1,373.442,21.1584,264.888,395.363,0.997397,-1,-1,-1
665,-1,278.441,126.175,58.699,203.152,0.997214,-1,-1,-1
665,-1,93.4836,21.7543,130.784,427.733,0.995851,-1,-1,-1
665,-1,226.597,130.426,49.713,171.878,0.964945,-1,-1,-1
665,-1,405.246,198.424,41.603,161.804,0.670949,-1,-1,-1
665,-1,214.533,217.425,47.015,122.431,0.606787,-1,-1,-1
666,-1,396.184,16.6104,234.755,388.645,0.99632,-1,-1,-1
666,-1,2.13653,108.902,91.5734,231.999,0.995869,-1,-1,-1
666,-1,281.689,136.27,53.823,189.905,0.995824,-1,-1,-1
666,-1,77.967,26.8872,150.551,444.042,0.99532,-1,-1,-1
666,-1,219.656,135.005,51.914,166.64,0.977623,-1,-1,-1
667,-1,393.965,14.4775,238.738,392.495,0.997544,-1,-1,-1
667,-1,279.729,125.494,59.641,212.058,0.997541,-1,-1,-1
667,-1,91.3392,29.2375,148.61,432.405,0.996019,-1,-1,-1
667,-1,0,88.5243,84.6747,272.073,0.993105,-1,-1,-1
667,-1,221.876,132.158,48.311,207.499,0.972698,-1,-1,-1
667,-1,75.2679,93.0036,34.9221,92.3764,0.717963,-1,-1,-1
667,-1,394.779,126.921,63.232,192.206,0.603807,-1,-1,-1
668,-1,425.14,1.32362,213.86,458.458,0.998342,-1,-1,-1
668,-1,99.1097,33.4572,149.022,429.943,0.995941,-1,-1,-1
668,-1,290.984,129.386,53.362,203.272,0.993835,-1,-1,-1
668,-1,0.700161,85.0815,78.3478,275.599,0.983201,-1,-1,-1
668,-1,77.498,98.871,47.33,116.235,0.958442,-1,-1,-1
668,-1,236.458,141.207,41.204,143.738,0.940953,-1,-1,-1
668,-1,392.569,235.83,59.37,92.656,0.686032,-1,-1,-1
668,-1,399.115,124.021,62.675,155.986,0.66692,-1,-1,-1
668,-1,5.51304,97.3943,52.2141,112.524,0.520726,-1,-1,-1
669,-1,428.987,0,210.013,474.117,0.997614,-1,-1,-1
669,-1,295.53,123.05,50.232,206.673,0.992893,-1,-1,-1
669,-1,100.748,29.2769,154.455,436.284,0.992527,-1,-1,-1
669,-1,4.75237,98.5346,54.1097,163.601,0.976556,-1,-1,-1
669,-1,240.717,134.065,41.381,168.894,0.960569,-1,-1,-1
669,-1,64.0197,95.6314,53.4753,197.235,0.939014,-1,-1,-1
669,-1,399.491,133.7,66.479,180.247,0.884072,-1,-1,-1
669,-1,12.9662,84.4389,91.1628,288.167,0.569526,-1,-1,-1
669,-1,69.5123,90.8587,43.6487,75.2113,0.565686,-1,-1,-1
670,-1,428.525,9.11807,210.475,469.882,0.995303,-1,-1,-1
670,-1,289.552,125.145,61.213,200.163,0.994807,-1,-1,-1
670,-1,114.095,13.3331,148.335,389.016,0.990727,-1,-1,-1
670,-1,1.10663,68.1888,62.3735,305.267,0.978381,-1,-1,-1
670,-1,384.867,103.634,102.655,287.046,0.968487,-1,-1,-1
670,-1,232.744,131.101,49.178,168.22,0.967806,-1,-1,-1
670,-1,32.0997,77.1411,108.302,299.317,0.914302,-1,-1,-1
670,-1,426.299,104.036,49.995,61.303,0.770044,-1,-1,-1
671,-1,412.11,9.16794,226.89,469.832,0.998352,-1,-1,-1
671,-1,296.033,134.914,52.115,195.151,0.992205,-1,-1,-1
671,-1,19.3772,74.0377,110.592,322.39,0.990739,-1,-1,-1
671,-1,387.383,120.181,104.72,279.278,0.987715,-1,-1,-1
671,-1,122.295,22.585,139.415,380.068,0.977247,-1,-1,-1
671,-1,244.488,132.14,42.699,176.253,0.942994,-1,-1,-1
672,-1,293.023,149.096,56.301,182.293,0.994091,-1,-1,-1
672,-1,446.194,0,192.754,478.321,0.993683,-1,-1,-1
672,-1,101.08,51.1594,171.307,423.343,0.992669,-1,-1,-1
672,-1,19.9216,74.934,99.8424,335.105,0.991288,-1,-1,-1
672,-1,381.947,131.961,107.339,271.014,0.967667,-1,-1,-1
672,-1,229.906,148.48,49.964,184.409,0.961346,-1,-1,-1
673,-1,11.7453,61.5379,102.923,333.815,0.998033,-1,-1,-1
673,-1,435.286,11.3471,201.973,450.646,0.993277,-1,-1,-1
673,-1,298.392,143.913,51.863,185.408,0.992102,-1,-1,-1
673,-1,107.104,33.7457,153.075,399.573,0.984945,-1,-1,-1
673,-1,391.167,130.914,97.876,269.322,0.981517,-1,-1,-1
673,-1,247.377,144.453,47.977,176.484,0.929814,-1,-1,-1
674,-1,2.69907,34.7823,109.306,355.001,0.998716,-1,-1,-1
674,-1,457.328,0,181.672,464.415,0.99679,-1,-1,-1
674,-1,289.838,134.089,61.694,193.861,0.996274,-1,-1,-1
674,-1,114.307,14.153,135.055,464.847,0.992184,-1,-1,-1
674,-1,391.391,121.333,100.298,253.683,0.981802,-1,-1,-1
674,-1,231.485,131.552,53.764,199.846,0.960001,-1,-1,-1
675,-1,462.848,0,176.152,477.863,0.997776,-1,-1,-1
675,-1,2.29429,32.4705,71.7808,408.387,0.992153,-1,-1,-1
675,-1,104.493,11.0679,134.367,427.699,0.986085,-1,-1,-1
675,-1,286.67,144.84,50.967,173.834,0.981553,-1,-1,-1
675,-1,378.689,126.105,87.014,235.554,0.980399,-1,-1,-1
675,-1,229.422,146.735,52.91,177.615,0.918242,-1,-1,-1
675,-1,413.192,105.18,43.119,55.142,0.731299,-1,-1,-1
676,-1,101.024,25.0744,136.263,447.594,0.996745,-1,-1,-1
676,-1,456.742,0,182.258,479,0.996573,-1,-1,-1
676,-1,1.78392,49.9051,58.8765,315.245,0.992573,-1,-1,-1
676,-1,289.971,154.009,43.074,162.372,0.980398,-1,-1,-1
676,-1,235.966,137.309,46.712,186.367,0.962829,-1,-1,-1
676,-1,379.232,116.421,98.773,258.47,0.951734,-1,-1,-1
677,-1,460.527,0.0621185,178.473,478.938,0.997566,-1,-1,-1
677,-1,290.277,149.638,47.57,179.497,0.994669,-1,-1,-1
677,-1,100.353,12.6628,135.014,452.28,0.994545,-1,-1,-1
677,-1,371.317,125.948,98.611,254.308,0.992914,-1,-1,-1
677,-1,246.518,141.59,45.171,175.228,0.980216,-1,-1,-1
677,-1,0.576866,74.9695,49.7373,114.187,0.908031,-1,-1,-1
677,-1,407.478,110.164,37.277,53.66,0.885975,-1,-1,-1
678,-1,458.467,0,180.533,465.346,0.995925,-1,-1,-1
678,-1,372.922,119.51,86.482,242.915,0.995223,-1,-1,-1
678,-1,102.943,30.982,136.101,419.613,0.994225,-1,-1,-1
678,-1,278.967,147.459,56.382,186.652,0.991456,-1,-1,-1
678,-1,240.387,144.206,49.509,176.511,0.975659,-1,-1,-1
678,-1,409.13,113.663,40.596,50.54,0.880934,-1,-1,-1
679,-1,369.189,126.936,102.989,240.378,0.996141,-1,-1,-1
679,-1,459.422,12.1238,171.309,451.921,0.994808,-1,-1,-1
679,-1,91.1348,26.1311,138.916,427.503,0.99302,-1,-1,-1
679,-1,276.542,146.517,57.549,193.622,0.99051,-1,-1,-1
679,-1,238.285,151.924,43.024,148.086,0.910026,-1,-1,-1
679,-1,408.865,117.452,37.2,55.011,0.744683,-1,-1,-1
680,-1,370.654,122.574,95.812,261.655,0.997469,-1,-1,-1
680,-1,82.5453,15.3099,146.843,451.005,0.994939,-1,-1,-1
680,-1,476.503,0,162.497,475.492,0.993086,-1,-1,-1
680,-1,286.094,155.157,48.901,175.011,0.989901,-1,-1,-1
680,-1,235.995,158.39,42.82,166.167,0.938258,-1,-1,-1
680,-1,410.22,121.345,40.36,54.209,0.699188,-1,-1,-1
681,-1,363.254,122.217,94.883,264.501,0.997695,-1,-1,-1
681,-1,478.016,0.456497,160.984,478.544,0.99557,-1,-1,-1
681,-1,276.419,149.449,56.146,176.566,0.98729,-1,-1,-1
681,-1,78.5974,51.1865,142.612,420.942,0.978461,-1,-1,-1
681,-1,236.171,146.298,39.719,148.483,0.939178,-1,-1,-1
681,-1,62.3985,107.701,65.7075,239.058,0.926615,-1,-1,-1
682,-1,78.0822,76.355,151.907,388.43,0.995802,-1,-1,-1
682,-1,51.8255,140.818,63.6835,193.742,0.99426,-1,-1,-1
682,-1,487.484,2.3215,151.516,472.142,0.991739,-1,-1,-1
682,-1,280.776,150.433,54.128,174.178,0.973282,-1,-1,-1
682,-1,222.996,144.473,41.448,203.227,0.971381,-1,-1,-1
682,-1,364.881,121.511,96.46,264.036,0.962095,-1,-1,-1
682,-1,401.809,117.159,34.039,55.156,0.662283,-1,-1,-1
683,-1,103.861,47.5217,127.806,419.064,0.993991,-1,-1,-1
683,-1,360.191,126.882,101.022,242.407,0.99096,-1,-1,-1
683,-1,483.094,0,154.802,446.887,0.990344,-1,-1,-1
683,-1,279.384,149.584,47.299,170.147,0.987486,-1,-1,-1
683,-1,53.7599,124.808,57.3231,218.051,0.987185,-1,-1,-1
683,-1,221.092,136.864,42.451,199.336,0.967459,-1,-1,-1
683,-1,402.848,119.22,34.712,54.361,0.683303,-1,-1,-1
683,-1,236.947,148.452,38.076,98.224,0.542329,-1,-1,-1
684,-1,353.911,123.625,101.403,266.526,0.99621,-1,-1,-1
684,-1,102.929,53.8445,142.025,404.639,0.996064,-1,-1,-1
684,-1,29.04,105.879,84.127,239.769,0.986387,-1,-1,-1
684,-1,482.996,2.00534,156.004,435.265,0.985655,-1,-1,-1
684,-1,274.995,152.489,56.693,171.72,0.982592,-1,-1,-1
684,-1,231.021,138.436,44.47,173.526,0.956534,-1,-1,-1
684,-1,396.862,112.076,42.216,58.34,0.676696,-1,-1,-1
685,-1,352.183,121.214,104.872,274.173,0.996904,-1,-1,-1
685,-1,495.293,0,143.707,479,0.994408,-1,-1,-1
685,-1,274.08,146.601,60.758,169.04,0.991767,-1,-1,-1
685,-1,98.7482,24.938,140.329,433.273,0.991523,-1,-1,-1
685,-1,35.818,111.688,68.911,213.897,0.987591,-1,-1,-1
685,-1,225.856,143.092,44.855,154.445,0.948948,-1,-1,-1
685,-1,398.04,111.079,38.216,54.331,0.528532,-1,-1,-1
686,-1,349.303,118.37,107.32,285.97,0.998318,-1,-1,-1
686,-1,17.4714,94.1373,78.8068,255.363,0.996856,-1,-1,-1
686,-1,84.4894,43.196,157.257,356.825,0.986384,-1,-1,-1
686,-1,275.673,148.088,52.506,173.624,0.985874,-1,-1,-1
686,-1,480.108,0,158.892,479,0.98041,-1,-1,-1
686,-1,218.235,121.833,44.427,204.899,0.91305,-1,-1,-1
687,-1,350.365,115.068,104.578,279.043,0.997578,-1,-1,-1
687,-1,0.813316,69.9881,101.702,309.718,0.99745,-1,-1,-1
687,-1,482.319,11.2377,156.681,467.762,0.992272,-1,-1,-1
687,-1,84.9066,40.1876,161.7,371.859,0.991642,-1,-1,-1
687,-1,277.732,151.383,54.073,153.861,0.978202,-1,-1,-1
687,-1,230.61,135.901,34.083,133.122,0.845563,-1,-1,-1
687,-1,392.69,113.275,38.184,59.576,0.721964,-1,-1,-1
688,-1,474.157,5.93587,164.843,473.064,0.997655,-1,-1,-1
688,-1,345.039,122.073,104.34,277.438,0.993923,-1,-1,-1
688,-1,0,68.9072,80.2541,301.996,0.992816,-1,-1,-1
688,-1,265.658,124.248,51.938,198.899,0.969192,-1,-1,-1
688,-1,86.9402,47.2213,142.206,354.545,0.966221,-1,-1,-1
688,-1,225.88,137.768,44.108,153.512,0.927084,-1,-1,-1
688,-1,309.026,145.852,36.342,123.374,0.640743,-1,-1,-1
689,-1,347.082,107.289,104.36,294.327,0.995363,-1,-1,-1
689,-1,89.2633,50.8664,145.771,419.777,0.990449,-1,-1,-1
689,-1,472.286,0,166.714,478.403,0.989155,-1,-1,-1
689,-1,270.036,129.211,48.438,180.565,0.945728,-1,-1,-1
689,-1,5.19004,70.8865,65.0882,180.233,0.933212,-1,-1,-1
689,-1,308.656,145.347,38.557,125.541,0.912553,-1,-1,-1
689,-1,226.273,140.087,34.886,132.485,0.893205,-1,-1,-1
690,-1,337.632,104.693,110.354,276.121,0.994398,-1,-1,-1
690,-1,92.0563,15.2009,136.053,463.799,0.985805,-1,-1,-1
690,-1,444.623,9.47719,193.42,451.089,0.967717,-1,-1,-1
690,-1,6.84129,103.609,53.2019,151.003,0.950402,-1,-1,-1
690,-1,307.644,152.003,44.867,126.881,0.933721,-1,-1,-1
690,-1,264.482,152.324,48.332,161.383,0.923011,-1,-1,-1
690,-1,0,231.622,79.3242,161.895,0.878209,-1,-1,-1
690,-1,225.773,134.908,37.855,130.606,0.832692,-1,-1,-1
690,-1,382.227,104.173,47.918,57.358,0.778977,-1,-1,-1
691,-1,452.331,0,186.669,479,0.996546,-1,-1,-1
691,-1,355.114,111.277,110.967,276.045,0.993797,-1,-1,-1
691,-1,100.815,59.1137,144.94,407.815,0.992507,-1,-1,-1
691,-1,259.223,151.075,54.565,165.478,0.990172,-1,-1,-1
691,-1,54.6277,127.3,49.7033,184.974,0.960963,-1,-1,-1
691,-1,216.077,138.398,41.057,170.979,0.892786,-1,-1,-1
691,-1,316.127,140.812,44.57,154.436,0.876515,-1,-1,-1
691,-1,465.804,99.2999,49.788,162.844,0.874706,-1,-1,-1
691,-1,379.803,102.168,47.387,53.483,0.851496,-1,-1,-1
691,-1,0.464411,99.7639,46.1611,188.215,0.775724,-1,-1,-1
692,-1,254.667,143.777,59.96,188.836,0.992983,-1,-1,-1
692,-1,120.585,43.2076,125.056,425.795,0.992775,-1,-1,-1
692,-1,352.857,116.536,106.847,281.634,0.989795,-1,-1,-1
692,-1,482.709,0,153.806,474.867,0.984767,-1,-1,-1
692,-1,52.8266,123.698,53.6644,166.72,0.960717,-1,-1,-1
692,-1,316.005,154.024,46.508,140.363,0.936073,-1,-1,-1
692,-1,385.6,101.594,42.292,60.448,0.742541,-1,-1,-1
692,-1,223.59,128.757,37.422,201.834,0.687966,-1,-1,-1
693,-1,107.185,29.7984,148.624,415.666,0.998488,-1,-1,-1
693,-1,462.956,0,176.044,467.014,0.995005,-1,-1,-1
693,-1,261.526,139.39,54.266,176.491,0.990578,-1,-1,-1
693,-1,335.945,114.927,118.747,253.777,0.985677,-1,-1,-1
693,-1,43.8292,126.911,63.7158,190.935,0.962415,-1,-1,-1
693,-1,382.629,97.6249,43.897,58.8021,0.84129,-1,-1,-1
693,-1,313.746,129.65,44.964,160.981,0.782376,-1,-1,-1
693,-1,225.768,122.802,38.204,198.973,0.739214,-1,-1,-1
693,-1,456.777,90.7667,51.677,164.204,0.642376,-1,-1,-1
694,-1,103.354,50.5256,147.123,376.55,0.99812,-1,-1,-1
694,-1,25.123,144.705,70.2082,173.948,0.995412,-1,-1,-1
694,-1,477.538,0,161.142,479,0.99182,-1,-1,-1
694,-1,268.174,130.244,51.745,161.526,0.990155,-1,-1,-1
694,-1,323.713,108.963,109.613,245.641,0.975748,-1,-1,-1
694,-1,377.336,97.52,43.672,48.128,0.634926,-1,-1,-1
695,-1,15.4357,123.29,81.6764,204.348,0.994763,-1,-1,-1
695,-1,113.237,36.3992,139.26,404.046,0.993495,-1,-1,-1
695,-1,437.898,0,201.102,479,0.991951,-1,-1,-1
695,-1,334.164,102.983,110.135,257.555,0.984873,-1,-1,-1
695,-1,260.675,131.68,51.508,169.908,0.983306,-1,-1,-1
695,-1,87.7355,135.331,43.2165,161.575,0.970025,-1,-1,-1
695,-1,371.206,95.7469,44.463,56.9391,0.762244,-1,-1,-1
696,-1,115.019,54.5414,145.165,392.642,0.994352,-1,-1,-1
696,-1,1.9181,104.751,87.9592,228.069,0.989092,-1,-1,-1
696,-1,330.451,105.045,102.837,264.607,0.987685,-1,-1,-1
696,-1,262.199,129.508,56.091,186.46,0.983782,-1,-1,-1
696,-1,443.478,0,195.522,459.59,0.963266,-1,-1,-1
696,-1,99.9091,136.121,41.2929,158.608,0.777317,-1,-1,-1
696,-1,367.917,96.7621,45.77,72.5499,0.570644,-1,-1,-1
697,-1,264.556,141.369,56.608,168.679,0.995288,-1,-1,-1
697,-1,128.747,73.5882,146.635,394.339,0.994409,-1,-1,-1
697,-1,337.114,111.301,100.411,259.713,0.991777,-1,-1,-1
697,-1,5.38227,94.7984,72.3065,255.253,0.987898,-1,-1,-1
697,-1,469.634,8.87244,167.671,462.994,0.843814,-1,-1,-1
697,-1,98.034,139.928,35.493,152.991,0.757378,-1,-1,-1
697,-1,371.951,99.0682,41.072,53.1668,0.583275,-1,-1,-1
698,-1,328.023,105.856,96.796,267.707,0.996354,-1,-1,-1
698,-1,3.4142,94.6855,66.2897,269.014,0.993819,-1,-1,-1
698,-1,132.88,21.4107,142.12,438.154,0.992403,-1,-1,-1
698,-1,459.666,0,179.334,465.096,0.986589,-1,-1,-1
698,-1,269.954,143.433,56.068,166.642,0.982293,-1,-1,-1
698,-1,100.675,158.673,54.194,169.594,0.914656,-1,-1,-1
698,-1,89.5342,141.187,40.6068,61.496,0.894037,-1,-1,-1
699,-1,329.691,106.979,105.74,277.629,0.996299,-1,-1,-1
699,-1,142.328,25.8741,132.295,450.275,0.988052,-1,-1,-1
699,-1,95.9287,165.235,60.2113,171.326,0.983694,-1,-1,-1
699,-1,269.903,143.583,56.582,185.458,0.983112,-1,-1,-1
699,-1,471.184,0,167.564,465.708,0.965885,-1,-1,-1
699,-1,0.221773,110.027,62.5897,159.841,0.902546,-1,-1,-1
699,-1,108.708,155.186,39.269,89.005,0.600014,-1,-1,-1
700,-1,324.918,115.104,111.358,284.816,0.998301,-1,-1,-1
700,-1,133.937,30.9974,152.661,423.081,0.995465,-1,-1,-1
700,-1,458.643,0,180.357,478.453,0.993437,-1,-1,-1
700,-1,98.6899,177.198,49.0601,138.66,0.964653,-1,-1,-1
700,-1,275.691,149.314,40.464,149.558,0.816653,-1,-1,-1
700,-1,359.928,102.949,45.262,64.229,0.676871,-1,-1,-1
700,-1,97.7147,154.238,40.9713,60.474,0.510024,-1,-1,-1
701,-1,323.655,114.691,107.287,282.376,0.998692,-1,-1,-1
701,-1,126.686,33.4989,152.976,375.38,0.99655,-1,-1,-1
701,-1,453.078,0,185.922,478.634,0.989713,-1,-1,-1
701,-1,18.6159,152.182,54.3628,157.075,0.971084,-1,-1,-1
701,-1,86.6542,165.33,44.7668,137.234,0.835718,-1,-1,-1
701,-1,272.191,141.9,43.977,172.848,0.809431,-1,-1,-1
701,-1,122.873,125.654,59.905,202.648,0.73583,-1,-1,-1
701,-1,356.504,103.972,46.175,61.641,0.609333,-1,-1,-1
702,-1,119.734,45.8005,173.038,346.216,0.996762,-1,-1,-1
702,-1,315.12,105.796,107.74,288.788,0.995962,-1,-1,-1
702,-1,456.337,0,182.006,464.018,0.978329,-1,-1,-1
702,-1,65.1569,160.326,59.0971,181.081,0.959452,-1,-1,-1
702,-1,8.93913,153.513,57.2658,128.321,0.955833,-1,-1,-1
702,-1,267.974,137.28,40.724,148.938,0.92833,-1,-1,-1
702,-1,66.7816,141.315,44.5904,90.293,0.631157,-1,-1,-1
702,-1,359.186,102.479,51.664,67.287,0.582558,-1,-1,-1
703,-1,122.485,54.4494,161.454,353.353,0.99564,-1,-1,-1
703,-1,422.399,0,216.601,460.121,0.985558,-1,-1,-1
703,-1,326.576,115.193,90.636,261.87,0.969765,-1,-1,-1
703,-1,59.5738,172.391,60.0822,180.251,0.962856,-1,-1,-1
703,-1,15.4146,157.178,44.7835,113.548,0.957078,-1,-1,-1
703,-1,269.412,138.425,35.958,137.859,0.886195,-1,-1,-1
703,-1,361.037,97.86,38.687,57.313,0.788255,-1,-1,-1
703,-1,387.637,116.571,34.572,72.12,0.69207,-1,-1,-1
703,-1,67.7016,142.691,50.3474,101.459,0.618473,-1,-1,-1
703,-1,113.268,122.07,40.922,109.448,0.618356,-1,-1,-1
704,-1,414.753,3.88142,215.987,474.506,0.996187,-1,-1,-1
704,-1,144.9,48.7467,130.119,420.895,0.991936,-1,-1,-1
704,-1,24.5831,138.582,80.8879,254.698,0.986402,-1,-1,-1
704,-1,306.11,112.105,101.921,272.74,0.984494,-1,-1,-1
704,-1,6.20771,147.261,46.9872,163.534,0.884052,-1,-1,-1
704,-1,108.758,129.361,42.343,131.432,0.879343,-1,-1,-1
704,-1,382.315,108.714,46.918,61.309,0.87455,-1,-1,-1
704,-1,268.4,137.431,37.425,140.036,0.86478,-1,-1,-1
704,-1,346.432,90.6018,45.578,60.7972,0.561866,-1,-1,-1
705,-1,393.161,0,242.744,471.368,0.997338,-1,-1,-1
705,-1,7.06044,123.872,97.0956,268.339,0.99684,-1,-1,-1
705,-1,145.341,56.1315,139.364,408.541,0.993509,-1,-1,-1
705,-1,303.456,103.154,102.352,264.198,0.967572,-1,-1,-1
705,-1,261.531,140.025,38.613,145.563,0.94146,-1,-1,-1
705,-1,383.21,108.202,48.446,71.001,0.919319,-1,-1,-1
705,-1,95.7998,113.75,44.4022,234.156,0.791312,-1,-1,-1
705,-1,349.372,95.3796,36.237,50.4784,0.719121,-1,-1,-1
706,-1,2.61983,131.367,79.9245,287.582,0.998317,-1,-1,-1
706,-1,382.134,0,254.692,479,0.99769,-1,-1,-1
706,-1,132.216,45.0077,146.41,407.019,0.996126,-1,-1,-1
706,-1,79.315,111.808,53.791,237.086,0.985538,-1,-1,-1
706,-1,297.18,102.031,87.713,279.467,0.984221,-1,-1,-1
706,-1,386.439,98.3515,55.071,122.517,0.663055,-1,-1,-1
706,-1,257.732,140.418,33.79,129.301,0.629204,-1,-1,-1
707,-1,136.01,21.4003,130.337,432.421,0.997551,-1,-1,-1
707,-1,362.831,0,276.169,460.821,0.996095,-1,-1,-1
707,-1,285.451,106.629,100.253,293.112,0.995629,-1,-1,-1
707,-1,59.1346,79.549,65.7514,296.868,0.976549,-1,-1,-1
707,-1,0,121.961,70.4308,295.904,0.973795,-1,-1,-1
708,-1,134.736,0,117.539,450.98,0.997557,-1,-1,-1
708,-1,18.2206,95.1586,101.67,310.333,0.99614,-1,-1,-1
708,-1,338.506,0,300.494,472.68,0.989331,-1,-1,-1
708,-1,284.939,103.07,98.058,267.537,0.989265,-1,-1,-1
708,-1,237.136,127.225,40.956,194.502,0.898952,-1,-1,-1
709,-1,298.812,0,339.973,460.751,0.998584,-1,-1,-1
709,-1,6.65318,80.9428,99.3878,323.262,0.998326,-1,-1,-1
709,-1,136.485,3.44891,116.261,447.188,0.997477,-1,-1,-1
709,-1,265.927,115.766,109.125,265.823,0.962811,-1,-1,-1
709,-1,244.363,139.462,37.207,115.019,0.864668,-1,-1,-1
710,-1,5.41777,63.5314,90.2557,328.19,0.998724,-1,-1,-1
710,-1,132.563,0,121.405,446.536,0.997952,-1,-1,-1
710,-1,326.283,0,295.843,479,0.99767,-1,-1,-1
710,-1,282.391,104.842,108.012,288.945,0.954444,-1,-1,-1
710,-1,248.369,131.449,34.009,116.636,0.837149,-1,-1,-1
711,-1,0,52.2038,94.7198,350.486,0.998037,-1,-1,-1
711,-1,122.634,52.9344,130.675,365.265,0.994749,-1,-1,-1
711,-1,273.609,2.86748,331.66,447.883,0.993691,-1,-1,-1
711,-1,245.544,137.234,38.558,123.216,0.664247,-1,-1,-1
711,-1,287.839,56.3419,109.143,343.396,0.656063,-1,-1,-1
712,-1,294.623,0,304.863,469.053,0.997341,-1,-1,-1
712,-1,2.16965,51.6463,82.3451,305.54,0.990489,-1,-1,-1
712,-1,124.747,7.1819,124.944,459.779,0.990022,-1,-1,-1
712,-1,563.728,40.3574,63.201,256.459,0.830052,-1,-1,-1
712,-1,261.677,52.8694,116.3,355.369,0.821207,-1,-1,-1
713,-1,114.871,42.9432,142.596,403.428,0.998415,-1,-1,-1
713,-1,281.524,22.6115,313.972,437.135,0.994944,-1,-1,-1
713,-1,1.15633,75.8478,79.3389,291.15,0.994212,-1,-1,-1
713,-1,578.44,142.46,57.88,138.704,0.980915,-1,-1,-1
713,-1,272.403,62.9402,104.405,318.244,0.792552,-1,-1,-1
714,-1,120.177,44.1039,123.411,381.389,0.996674,-1,-1,-1
714,-1,4.27843,76.0208,82.1274,270.797,0.990359,-1,-1,-1
714,-1,282.901,0,339.649,439.929,0.987461,-1,-1,-1
714,-1,245.131,135.368,35.485,109.846,0.80898,-1,-1,-1
714,-1,268.463,116.604,117.411,275.588,0.664611,-1,-1,-1
715,-1,114.53,20.5793,151.746,412.408,0.99316,-1,-1,-1
715,-1,301.325,7.57048,319.237,471.43,0.991324,-1,-1,-1
715,-1,7.32113,89.1174,84.8885,260.519,0.986531,-1,-1,-1
715,-1,272.623,119.346,104.328,286.699,0.974321,-1,-1,-1
715,-1,250.853,134.08,37.809,106.44,0.829998,-1,-1,-1
716,-1,124.925,27.0659,142.065,414.819,0.994694,-1,-1,-1
716,-1,297.399,0,341.601,458.616,0.988875,-1,-1,-1
716,-1,12.2943,57.3336,80.1627,283.291,0.988829,-1,-1,-1
716,-1,274.53,86.0452,113.047,311.082,0.867263,-1,-1,-1
716,-1,253.58,131.835,40.972,115.699,0.825844,-1,-1,-1
717,-1,17.7329,75.6703,83.8711,262.922,0.997913,-1,-1,-1
717,-1,289.873,13.9888,345.905,420.548,0.994396,-1,-1,-1
717,-1,124.784,27.102,141.812,405.991,0.991143,-1,-1,-1
717,-1,281.758,89.921,120.66,308.952,0.879297,-1,-1,-1
717,-1,258.417,138.38,41.549,115.589,0.795683,-1,-1,-1
718,-1,126.941,46.3436,133.615,398.164,0.997216,-1,-1,-1
718,-1,346.016,0,287.112,458.85,0.996957,-1,-1,-1
718,-1,9.04459,67.515,99.3724,300.575,0.993049,-1,-1,-1
718,-1,275.213,129.709,107.693,280.636,0.93459,-1,-1,-1
718,-1,266.087,148.855,40.62,110.72,0.877225,-1,-1,-1
718,-1,145.654,56.593,99.437,154.755,0.553121,-1,-1,-1
719,-1,127.312,42.1908,128.535,402.921,0.996992,-1,-1,-1
719,-1,356.246,0,282.754,475.641,0.996977,-1,-1,-1
719,-1,10.1057,50.3196,91.4143,315.703,0.993741,-1,-1,-1
719,-1,264.208,142.585,41.115,133.962,0.888027,-1,-1,-1
719,-1,284.954,130.768,115.906,287.517,0.870278,-1,-1,-1
720,-1,374.368,0,247.167,479,0.997175,-1,-1,-1
720,-1,131.491,42.5271,134.447,405.369,0.995992,-1,-1,-1
720,-1,7.31711,57.5303,99.5029,327.118,0.99563,-1,-1,-1
720,-1,288.526,123.313,120.345,305.047,0.955581,-1,-1,-1
720,-1,270.716,152.966,51.623,152.939,0.902351,-1,-1,-1
720,-1,597.65,118.49,40.77,160.339,0.52361,-1,-1,-1
721,-1,346.528,0.341202,285.073,478.072,0.997302,-1,-1,-1
721,-1,4.43396,33.1716,87.2611,370.328,0.996899,-1,-1,-1
721,-1,137.68,30.5564,127.303,414.863,0.99672,-1,-1,-1
721,-1,295.292,125.631,113.359,276.546,0.985547,-1,-1,-1
721,-1,334.741,95.1386,47.765,53.9904,0.719528,-1,-1,-1
721,-1,235.303,143.958,39.262,170.767,0.669426,-1,-1,-1
721,-1,286.33,141.269,39.228,122.419,0.6617,-1,-1,-1
722,-1,140.139,29.9656,119.573,390.065,0.998547,-1,-1,-1
722,-1,4.22272,0,101.253,404.757,0.997357,-1,-1,-1
722,-1,362.45,0,262.897,479,0.996998,-1,-1,-1
722,-1,301.145,119.562,105.455,265.252,0.988956,-1,-1,-1
722,-1,243.016,154.975,40.498,164.565,0.942244,-1,-1,-1
722,-1,345.796,92.3394,38.888,58.1676,0.85928,-1,-1,-1
722,-1,287.432,151.402,35.171,65.825,0.60715,-1,-1,-1
723,-1,136.593,39.9412,117.97,389.311,0.998898,-1,-1,-1
723,-1,3.04316,17.1936,108.787,396.876,0.997841,-1,-1,-1
723,-1,361.768,0,274.46,479,0.997713,-1,-1,-1
723,-1,300.883,126.433,103.679,244.893,0.983133,-1,-1,-1
723,-1,257.845,152.013,41.784,148.783,0.970959,-1,-1,-1
723,-1,348.012,99.0519,41.778,54.9581,0.823259,-1,-1,-1
723,-1,290.973,147.942,36.838,147.85,0.624771,-1,-1,-1
724,-1,146.949,26.2953,113.439,406.596,0.998861,-1,-1,-1
724,-1,354.345,0,284.655,479,0.998324,-1,-1,-1
724,-1,3.09782,8.47101,104.634,406.454,0.998008,-1,-1,-1
724,-1,298.464,123.676,99.523,241.086,0.954429,-1,-1,-1
724,-1,256.966,161.364,40.39,146.827,0.938962,-1,-1,-1
724,-1,346.67,104.597,43.57,56.184,0.821666,-1,-1,-1
724,-1,93.2254,189.798,23.1836,74.305,0.770528,-1,-1,-1
724,-1,303.548,146.994,44.622,149.398,0.611058,-1,-1,-1
725,-1,151.549,49.0379,119.401,367.556,0.998186,-1,-1,-1
725,-1,370.227,0,260.725,464.403,0.996362,-1,-1,-1
725,-1,2.20438,0,93.3557,413.659,0.991054,-1,-1,-1
725,-1,310.388,133.509,111.085,275.201,0.973984,-1,-1,-1
725,-1,260.665,156.623,42.816,153.313,0.964548,-1,-1,-1
725,-1,90.6712,179.758,30.2278,91.786,0.906056,-1,-1,-1
725,-1,304.436,150.136,46.275,140.468,0.65726,-1,-1,-1
726,-1,376.649,0,262.351,474.943,0.997916,-1,-1,-1
726,-1,160.877,42.4454,96.669,389.954,0.993026,-1,-1,-1
726,-1,317.901,117.374,99.661,281.221,0.985635,-1,-1,-1
726,-1,262.568,153.927,40.749,152.813,0.980237,-1,-1,-1
726,-1,0,12.9011,94.013,355.991,0.979294,-1,-1,-1
726,-1,90.0899,189.518,30.1411,72.306,0.977438,-1,-1,-1
726,-1,304.227,148.669,41.741,163.968,0.613773,-1,-1,-1
727,-1,361.555,0,277.445,465.152,0.998393,-1,-1,-1
727,-1,158.455,44.1278,107.22,380.613,0.995684,-1,-1,-1
727,-1,0,8.68326,83.9727,385.945,0.994464,-1,-1,-1
727,-1,92.5456,191.016,29.5284,72.276,0.989324,-1,-1,-1
727,-1,263.317,151.884,38.307,147.754,0.96777,-1,-1,-1
727,-1,311.858,102.879,98.356,286.73,0.926312,-1,-1,-1
727,-1,350.94,97.0873,38.375,50.7227,0.778765,-1,-1,-1
727,-1,304.852,146.346,42.723,142.526,0.691096,-1,-1,-1
728,-1,154.788,44.8197,104.883,373.962,0.99855,-1,-1,-1
728,-1,370.705,0,266.413,460.279,0.99821,-1,-1,-1
728,-1,93.8593,192.449,25.9167,61.192,0.989283,-1,-1,-1
728,-1,265.055,153.201,39.596,143.55,0.963473,-1,-1,-1
728,-1,339.873,95.8598,48.876,57.3772,0.87525,-1,-1,-1
728,-1,301.652,137.473,48.409,176.113,0.832964,-1,-1,-1
728,-1,311.433,110.132,102.989,287.243,0.800942,-1,-1,-1
728,-1,0,0,72.454,451.966,0.780985,-1,-1,-1
729,-1,151.425,50.0825,114.991,362.67,0.998354,-1,-1,-1
729,-1,381.175,0,250.436,479,0.99558,-1,-1,-1
729,-1,81.9453,191.825,31.1317,65.82,0.985922,-1,-1,-1
729,-1,268.818,150.398,32.36,131.596,0.945664,-1,-1,-1
729,-1,314.178,112.913,96.049,279.349,0.908974,-1,-1,-1
729,-1,300.969,143.457,46.748,157.209,0.779839,-1,-1,-1
729,-1,0,29.164,70.5596,286.178,0.697402,-1,-1,-1
729,-1,348.097,91.9256,40.041,55.3504,0.635371,-1,-1,-1
730,-1,151.128,52.8943,115.486,362.971,0.999132,-1,-1,-1
730,-1,361.127,0,270.56,478.907,0.99459,-1,-1,-1
730,-1,80.599,193.691,28.336,68.547,0.985359,-1,-1,-1
730,-1,306.685,111.463,118.099,285.994,0.979595,-1,-1,-1
730,-1,268.35,156.559,43.313,149.334,0.966413,-1,-1,-1
730,-1,306.965,148.94,35.021,106.821,0.714562,-1,-1,-1
731,-1,148.495,68.1061,127.78,348.471,0.998555,-1,-1,-1
731,-1,330.885,0,269.418,473.312,0.996229,-1,-1,-1
731,-1,310.571,112.35,124.046,306.548,0.990875,-1,-1,-1
731,-1,266.018,165.054,41.442,139.79,0.980558,-1,-1,-1
731,-1,76.851,188.624,31.92,83.431,0.9796,-1,-1,-1
732,-1,157.799,49.9991,115.148,348.632,0.996718,-1,-1,-1
732,-1,73.6342,200.626,33.5418,77.398,0.992369,-1,-1,-1
732,-1,315.266,2.10811,282.989,462.231,0.980451,-1,-1,-1
732,-1,312.154,81.5192,108.043,346.636,0.969826,-1,-1,-1
732,-1,268.292,160.812,37.838,129.299,0.953998,-1,-1,-1
733,-1,142.475,83.0854,125.999,339.188,0.996698,-1,-1,-1
733,-1,332.259,9.19667,282.722,459.635,0.990007,-1,-1,-1
733,-1,70.1341,208.241,28.7125,73.668,0.988775,-1,-1,-1
733,-1,257.017,166.021,44.34,146.093,0.97475,-1,-1,-1
733,-1,306.431,95.4571,121.631,334.477,0.9077,-1,-1,-1
734,-1,142.396,93.8909,122.454,341.731,0.996204,-1,-1,-1
734,-1,354.043,0,284.957,471.443,0.994154,-1,-1,-1
734,-1,62.4087,205.28,34.3366,79.747,0.993055,-1,-1,-1
734,-1,271.477,169.824,41.746,120.471,0.97198,-1,-1,-1
734,-1,303.418,104.916,127.785,327.944,0.848105,-1,-1,-1
735,-1,359.938,0,279.062,477.908,0.995803,-1,-1,-1
735,-1,140.316,99.367,133.132,331.316,0.992625,-1,-1,-1
735,-1,63.8327,209.257,31.1438,72.878,0.991904,-1,-1,-1
735,-1,311.182,110.418,112.603,305.183,0.979711,-1,-1,-1
735,-1,266.588,164.378,40.038,133.75,0.934113,-1,-1,-1
735,-1,125.974,173.923,36.589,152.372,0.706809,-1,-1,-1
736,-1,349.849,0,289.151,465.825,0.997378,-1,-1,-1
736,-1,138.726,90.9135,128.592,341.594,0.989306,-1,-1,-1
736,-1,308.746,106.788,100.709,289.803,0.987024,-1,-1,-1
736,-1,52.1164,203.506,30.4559,73.177,0.983077,-1,-1,-1
736,-1,260.501,164.143,42.892,147.507,0.960904,-1,-1,-1
737,-1,142.475,79.0426,118.517,363.732,0.995647,-1,-1,-1
737,-1,352.123,0,271.546,475.807,0.994896,-1,-1,-1
737,-1,314.177,103.083,92.57,298.927,0.985692,-1,-1,-1
737,-1,262.014,167.629,47.286,139.855,0.97974,-1,-1,-1
737,-1,42.1169,198.138,30.1715,85.153,0.976161,-1,-1,-1
737,-1,111.362,143.194,49.748,188.688,0.930834,-1,-1,-1
738,-1,358.751,0,272.235,479,0.997441,-1,-1,-1
738,-1,145.534,83.306,103.919,336.859,0.991895,-1,-1,-1
738,-1,44.4144,186.026,33.0338,95.366,0.987035,-1,-1,-1
738,-1,306.844,117.534,94.539,290.91,0.986136,-1,-1,-1
738,-1,264.211,163.398,42.104,149.798,0.963711,-1,-1,-1
738,-1,111.277,134.696,59.463,105.553,0.86529,-1,-1,-1
738,-1,229.402,177.256,43.936,150.768,0.794836,-1,-1,-1
738,-1,109.448,203.795,40.565,128.123,0.792398,-1,-1,-1
739,-1,371.905,0,267.095,477.29,0.99888,-1,-1,-1
739,-1,143.004,84.8641,103.929,348.368,0.992335,-1,-1,-1
739,-1,262.34,161.865,46.263,147.403,0.978157,-1,-1,-1
739,-1,27.6248,184.357,40.6327,96.621,0.973323,-1,-1,-1
739,-1,306.552,122.92,101.551,298.423,0.900625,-1,-1,-1
739,-1,95.48,126.032,63.221,215.784,0.899112,-1,-1,-1
740,-1,362.372,0.945923,267.751,478.054,0.997947,-1,-1,-1
740,-1,138.929,74.113,111.012,346.121,0.997137,-1,-1,-1
740,-1,260.448,163.104,47.979,150.233,0.987553,-1,-1,-1
740,-1,25.2708,184.607,40.5237,91.267,0.985577,-1,-1,-1
740,-1,315.186,117.049,96.56,297.396,0.976533,-1,-1,-1
740,-1,297.494,158.679,56.696,181.173,0.738463,-1,-1,-1
740,-1,73.6877,130.489,77.0583,161.605,0.736034,-1,-1,-1
740,-1,339.297,112.701,48.557,70.756,0.707497,-1,-1,-1
740,-1,96.6772,214.613,51.9618,124.103,0.663865,-1,-1,-1
741,-1,352.586,0,283.791,463.578,0.998337,-1,-1,-1
741,-1,146.013,87.4011,113.948,333.715,0.997742,-1,-1,-1
741,-1,262.49,163.259,48.972,138.191,0.988773,-1,-1,-1
741,-1,23.9876,185.446,34.9773,88.504,0.976208,-1,-1,-1
741,-1,303.683,113.697,100.256,269.149,0.949919,-1,-1,-1
741,-1,87.3574,206.356,55.9096,136.663,0.917733,-1,-1,-1
741,-1,84.0603,122.669,63.6117,146.473,0.912538,-1,-1,-1
742,-1,349.149,0,288.214,465.575,0.998518,-1,-1,-1
742,-1,144.246,80.3403,118.075,343.954,0.995867,-1,-1,-1
742,-1,19.5531,177.597,37.9778,102.742,0.985042,-1,-1,-1
742,-1,260.288,165.386,42.671,131.651,0.957129,-1,-1,-1
742,-1,63.0845,117.507,92.8235,168.131,0.899599,-1,-1,-1
742,-1,311.649,108.099,95.973,307.158,0.850092,-1,-1,-1
742,-1,207.452,136.261,53.646,190.904,0.644972,-1,-1,-1
743,-1,327.542,12.9915,305.74,418.806,0.998218,-1,-1,-1
743,-1,140.829,74.9487,115.929,327.614,0.997456,-1,-1,-1
743,-1,54.9125,111.157,88.0885,148.358,0.988945,-1,-1,-1
743,-1,15.5591,168.358,40.479,98.861,0.973968,-1,-1,-1
743,-1,265.028,160.974,40.471,147.016,0.966103,-1,-1,-1
743,-1,301.043,108.256,87.51,296.418,0.876342,-1,-1,-1
744,-1,128.567,70.8539,141.047,322.63,0.997692,-1,-1,-1
744,-1,330.687,0,291.673,473.302,0.996543,-1,-1,-1
744,-1,50.1655,95.5437,91.2775,144.172,0.991485,-1,-1,-1
744,-1,266.841,161.489,40.445,132.428,0.968639,-1,-1,-1
744,-1,10.6791,169.252,47.4963,121.606,0.961229,-1,-1,-1
744,-1,47.8318,172.341,61.6292,180.793,0.782603,-1,-1,-1
744,-1,304.611,122.926,99.411,281.354,0.699998,-1,-1,-1
745,-1,131.974,77.8999,128.945,313.726,0.99824,-1,-1,-1
745,-1,358.818,0,269.372,466.379,0.997659,-1,-1,-1
745,-1,36.062,90.5782,85.295,142.105,0.990471,-1,-1,-1
745,-1,295.523,106.849,114.663,287.872,0.972517,-1,-1,-1
745,-1,268.338,155.626,40.608,121.017,0.952828,-1,-1,-1
745,-1,6.14668,159.991,53.3494,151.334,0.873179,-1,-1,-1
745,-1,5.68488,116.106,126.253,250.385,0.76704,-1,-1,-1
745,-1,338.454,105.659,49.018,84.638,0.559441,-1,-1,-1
746,-1,324.74,9.07553,303.357,447.103,0.996479,-1,-1,-1
746,-1,140.103,65.0261,127.26,334.828,0.995861,-1,-1,-1
746,-1,6.36108,84.7437,112.224,306.227,0.988942,-1,-1,-1
746,-1,277.891,163.412,38.663,122.208,0.914684,-1,-1,-1
746,-1,298.825,118.793,112.107,294.445,0.901071,-1,-1,-1
746,-1,132.75,120.495,45.546,188.311,0.878563,-1,-1,-1
747,-1,358.741,0,273.712,474.175,0.997418,-1,-1,-1
747,-1,2.37148,76.7598,113.101,301.917,0.991628,-1,-1,-1
747,-1,153.291,86.9433,126.987,326.723,0.990045,-1,-1,-1
747,-1,277.676,157.013,37.059,124.769,0.959647,-1,-1,-1
747,-1,307.024,134.468,102.974,270.275,0.949276,-1,-1,-1
747,-1,119.503,129.19,52.363,181.66,0.946412,-1,-1,-1
748,-1,113.215,115.032,59.068,209.342,0.99608,-1,-1,-1
748,-1,321.871,0,315.53,450.259,0.992489,-1,-1,-1
748,-1,0.952515,64.8917,106.485,216.519,0.990002,-1,-1,-1
748,-1,161.201,83.1351,114.887,322.322,0.989395,-1,-1,-1
748,-1,279.289,152.959,45.026,146.361,0.961045,-1,-1,-1
748,-1,313.273,137.877,102.413,274.095,0.864469,-1,-1,-1
748,-1,229.18,145.832,55.606,185.379,0.559272,-1,-1,-1
749,-1,109.823,133.454,61.115,179.931,0.995501,-1,-1,-1
749,-1,0,66.8756,90.6882,217.544,0.993123,-1,-1,-1
749,-1,338.525,0,300.475,465.779,0.992147,-1,-1,-1
749,-1,163.354,94.6404,120.905,314.05,0.988936,-1,-1,-1
749,-1,288.213,160.586,42.366,136.76,0.95215,-1,-1,-1
749,-1,0.720579,211.342,57.8792,176.596,0.81751,-1,-1,-1
749,-1,227.338,146.183,58.615,184.579,0.621587,-1,-1,-1
750,-1,98.4904,108.593,85.7746,211.927,0.9976,-1,-1,-1
750,-1,351.113,0,281.95,467.629,0.995887,-1,-1,-1
750,-1,172.957,79.61,90.602,318.494,0.969589,-1,-1,-1
750,-1,290.071,165.845,49.589,129.15,0.96409,-1,-1,-1
750,-1,263.212,161.299,46.046,157.795,0.943947,-1,-1,-1
750,-1,0,47.6285,79.8637,193.45,0.867146,-1,-1,-1
750,-1,321.818,113.815,126.537,292.495,0.518546,-1,-1,-1
751,-1,102.308,97.523,76.792,224.348,0.998378,-1,-1,-1
751,-1,357.834,0,277.951,468.878,0.989951,-1,-1,-1
751,-1,256.759,148.778,48.424,165.359,0.986677,-1,-1,-1
751,-1,302.065,157.463,50.587,153.829,0.964814,-1,-1,-1
751,-1,0,41.339,73.1415,251.002,0.937876,-1,-1,-1
751,-1,336.633,119.028,96.848,274.05,0.928685,-1,-1,-1
751,-1,172.154,87.5858,97.664,283.323,0.916911,-1,-1,-1
752,-1,94.8172,97.3401,85.0308,233.233,0.998888,-1,-1,-1
752,-1,185.54,80.6034,101.08,302.75,0.99116,-1,-1,-1
752,-1,411.265,0,227.735,479,0.990909,-1,-1,-1
752,-1,262.524,142.095,43.022,169.15,0.973834,-1,-1,-1
752,-1,6.82493,71.5864,59.9305,169.807,0.922562,-1,-1,-1
752,-1,307.665,156.578,47.653,153.974,0.880496,-1,-1,-1
752,-1,284.163,158.521,45.61,137.54,0.605784,-1,-1,-1
752,-1,347.305,142.186,84.593,248.149,0.587546,-1,-1,-1
753,-1,186.684,73.591,98.44,313.289,0.995831,-1,-1,-1
753,-1,86.2368,95.8356,94.5162,220.898,0.995704,-1,-1,-1
753,-1,422.046,0,216.954,479,0.992323,-1,-1,-1
753,-1,267.55,153.179,50.824,150.393,0.984147,-1,-1,-1
753,-1,320.319,159.127,38.067,130.441,0.888035,-1,-1,-1
753,-1,339.232,107.547,97.153,295.606,0.884185,-1,-1,-1
753,-1,0.174341,85.3086,59.7554,181.443,0.828544,-1,-1,-1
754,-1,82.3426,84.2128,99.4064,256.443,0.997923,-1,-1,-1
754,-1,425.983,0,213.017,479,0.994786,-1,-1,-1
754,-1,198.371,74.2746,79.901,306.175,0.990867,-1,-1,-1
754,-1,273.477,152.801,47.56,152.261,0.979006,-1,-1,-1
754,-1,23.5613,171.44,45.6357,83.677,0.976228,-1,-1,-1
754,-1,340.167,121.635,100.128,284.867,0.862367,-1,-1,-1
754,-1,322.732,160.375,46.669,151.676,0.829352,-1,-1,-1
754,-1,1.99095,162.07,33.6474,113.9,0.634471,-1,-1,-1
755,-1,72.6438,90.7899,104.511,262.52,0.998411,-1,-1,-1
755,-1,413.93,0,225.07,479,0.993351,-1,-1,-1
755,-1,199.606,86.328,81.765,299.366,0.988698,-1,-1,-1
755,-1,277.856,146.305,51.088,152.167,0.985966,-1,-1,-1
755,-1,0.0776634,156.978,32.0615,115.886,0.955871,-1,-1,-1
755,-1,350.973,112.374,108.875,301.433,0.881708,-1,-1,-1
755,-1,39.7166,156.388,31.4991,99.69,0.866678,-1,-1,-1
755,-1,382.288,102.163,36.567,55.625,0.716769,-1,-1,-1
755,-1,335.525,151.169,52.609,180.196,0.521472,-1,-1,-1
756,-1,79.4731,65.5668,101.08,291.189,0.998289,-1,-1,-1
756,-1,430.428,16.9103,208.572,462.09,0.997739,-1,-1,-1
756,-1,288.3,150.179,51.798,137.018,0.971315,-1,-1,-1
756,-1,206.647,99.8767,82.531,300.281,0.969187,-1,-1,-1
756,-1,3.12718,163.604,34.8412,119.47,0.933269,-1,-1,-1
756,-1,350.207,140.937,103.397,252.991,0.883939,-1,-1,-1
756,-1,331.726,160.212,61.068,173.157,0.789564,-1,-1,-1
757,-1,55.4223,66.5942,104.519,306.425,0.999467,-1,-1,-1
757,-1,209.114,90.7035,109.051,296.631,0.99838,-1,-1,-1
757,-1,465.323,6.5984,173.677,459.86,0.991012,-1,-1,-1
757,-1,340.836,151.123,105.744,200.872,0.906736,-1,-1,-1
757,-1,291.716,151.569,45.089,118.022,0.816624,-1,-1,-1
758,-1,46.5694,44.8778,117.303,331.871,0.999328,-1,-1,-1
758,-1,211.071,90.1908,111.254,296.933,0.997059,-1,-1,-1
758,-1,469.143,20.1496,160.032,450.657,0.968151,-1,-1,-1
758,-1,346.254,114.17,98.242,282.216,0.919101,-1,-1,-1
759,-1,22.9671,20.6134,125.805,374.243,0.999042,-1,-1,-1
759,-1,209.837,89.3275,114.892,272.695,0.99681,-1,-1,-1
759,-1,478.945,12.3795,153.987,442.091,0.983234,-1,-1,-1
759,-1,338.203,147.316,119.19,240.975,0.957334,-1,-1,-1
759,-1,339.777,152.423,47.814,167.68,0.737449,-1,-1,-1
760,-1,1.64378,16.2071,143.713,384.555,0.999423,-1,-1,-1
760,-1,193.067,76.3184,126.427,281.904,0.997194,-1,-1,-1
760,-1,335.81,108.716,108.953,290.948,0.992684,-1,-1,-1
760,-1,491.457,0.797913,144.452,460.074,0.984928,-1,-1,-1
760,-1,379.393,92.8001,46.028,56.9189,0.550666,-1,-1,-1
760,-1,336.366,155.683,54.091,172.066,0.541126,-1,-1,-1
761,-1,0,6.56976,109.46,389.973,0.998804,-1,-1,-1
761,-1,215.203,81.5787,105.819,284.805,0.997393,-1,-1,-1
761,-1,357.036,102.21,105.56,305.072,0.994522,-1,-1,-1
761,-1,495.962,9.97993,143.038,464.874,0.985683,-1,-1,-1
761,-1,393.845,94.589,45.575,62.779,0.937632,-1,-1,-1
761,-1,131.851,185.585,21.52,59.915,0.925937,-1,-1,-1
761,-1,180.894,149.452,48.691,136.99,0.906549,-1,-1,-1
762,-1,220.838,69.622,106.726,282.746,0.998169,-1,-1,-1
762,-1,0,2.48576,109.029,380.723,0.994096,-1,-1,-1
762,-1,468.189,18.3653,170.811,460.635,0.99022,-1,-1,-1
762,-1,351.863,97.0958,104.66,308.632,0.985141,-1,-1,-1
762,-1,181.217,147.101,51.216,132.262,0.983441,-1,-1,-1
762,-1,397.799,87.72,41.515,62.223,0.938285,-1,-1,-1
762,-1,94.3488,176.361,33.3012,76.435,0.894977,-1,-1,-1
762,-1,131.818,186.313,22.846,60.854,0.858043,-1,-1,-1
763,-1,210.559,69.4943,112.193,302.496,0.998052,-1,-1,-1
763,-1,461.33,22.7415,177.67,399.461,0.997856,-1,-1,-1
763,-1,161.162,141.263,47.874,139.5,0.982647,-1,-1,-1
763,-1,347.182,98.4599,102.979,295.117,0.977071,-1,-1,-1
763,-1,0,0,83.5743,394.616,0.941238,-1,-1,-1
763,-1,82.5609,160.159,38.4291,72.834,0.90764,-1,-1,-1
763,-1,391.629,86.5584,51.392,65.5956,0.898425,-1,-1,-1
763,-1,201.183,147.49,34.577,123.076,0.61893,-1,-1,-1
764,-1,224.241,81.1648,102.912,305.462,0.997999,-1,-1,-1
764,-1,454.223,23.405,184.777,410.926,0.991334,-1,-1,-1
764,-1,55.0172,161.903,41.5898,82.073,0.991182,-1,-1,-1
764,-1,90.8846,169.961,33.8824,74.316,0.98551,-1,-1,-1
764,-1,160.488,145.886,38.551,134.685,0.954622,-1,-1,-1
764,-1,357.295,86.3904,96.903,315.411,0.927551,-1,-1,-1
764,-1,390.867,90.2981,50.707,83.5819,0.822071,-1,-1,-1
764,-1,0.943647,36.5272,48.5539,186.211,0.671832,-1,-1,-1
764,-1,116.668,167.454,28.169,72.822,0.660909,-1,-1,-1
764,-1,205.036,128.107,36.93,137.858,0.617135,-1,-1,-1
765,-1,223.591,80.5076,107.94,305.451,0.995613,-1,-1,-1
765,-1,155.661,151.557,43.909,128.771,0.993272,-1,-1,-1
765,-1,479.189,8.44199,159.811,446.39,0.990788,-1,-1,-1
765,-1,61.8962,167.859,40.4438,95.973,0.990696,-1,-1,-1
765,-1,361.97,80.7744,99.29,308.036,0.988323,-1,-1,-1
765,-1,201.434,137.714,31.8,139.655,0.776619,-1,-1,-1
765,-1,397.425,93.1122,46.513,75.1058,0.673241,-1,-1,-1
765,-1,94.5915,178.672,25.5495,70.268,0.564984,-1,-1,-1
765,-1,302.48,136.999,45.036,152.008,0.503668,-1,-1,-1
766,-1,148.962,157.609,46.652,128.325,0.99517,-1,-1,-1
766,-1,222.659,76.3912,115.847,298.047,0.994294,-1,-1,-1
766,-1,348.49,81.8947,105.702,335.067,0.994005,-1,-1,-1
766,-1,61.626,161.833,39.48,101.889,0.987767,-1,-1,-1
766,-1,462.25,13.2651,176.75,444.469,0.984888,-1,-1,-1
766,-1,195.754,148.097,33.343,127.197,0.974194,-1,-1,-1
766,-1,396.035,90.4925,45.908,71.2755,0.754732,-1,-1,-1
766,-1,105.245,181.333,28.118,65.888,0.751304,-1,-1,-1
766,-1,312.801,139.892,35.628,128.95,0.63745,-1,-1,-1
766,-1,94.7695,181.85,20.6635,65.684,0.621416,-1,-1,-1
767,-1,353.375,93.4167,108.413,303.386,0.995647,-1,-1,-1
767,-1,188.861,149.743,41.408,134.526,0.99459,-1,-1,-1
767,-1,459.673,0,179.327,435.403,0.994401,-1,-1,-1
767,-1,51.4296,155.885,44.5232,104.147,0.986463,-1,-1,-1
767,-1,230.46,86.0048,96.13,288.395,0.975178,-1,-1,-1
767,-1,129.509,147.398,45.592,132.655,0.969916,-1,-1,-1
767,-1,397.89,85.4633,45.778,66.1817,0.883798,-1,-1,-1
767,-1,97.5212,170.643,28.3748,80.995,0.829967,-1,-1,-1
768,-1,345.933,100.979,109.479,293.029,0.996924,-1,-1,-1
768,-1,187.28,146.17,39.733,133.469,0.992004,-1,-1,-1
768,-1,46.9828,162.709,44.876,104.384,0.991796,-1,-1,-1
768,-1,224.091,83.1389,100.73,288.929,0.991482,-1,-1,-1
768,-1,426.177,20.066,212.823,392.77,0.989027,-1,-1,-1
768,-1,130.35,153.065,43.714,124.828,0.909191,-1,-1,-1
768,-1,390.312,93.8262,46.868,63.2818,0.870296,-1,-1,-1
769,-1,330.073,108.149,120.917,277.397,0.99662,-1,-1,-1
769,-1,179.015,143.453,48.498,145.377,0.99448,-1,-1,-1
769,-1,225.409,90.1622,95.113,267.492,0.991877,-1,-1,-1
769,-1,46.3716,159.576,40.1312,109.166,0.987268,-1,-1,-1
769,-1,478.494,17.0826,160.506,434.358,0.982539,-1,-1,-1
769,-1,121.591,143.788,47.622,145.128,0.885637,-1,-1,-1
769,-1,386.191,104.388,45.846,53.651,0.878219,-1,-1,-1
769,-1,95.9888,169.257,32.2432,95.47,0.66328,-1,-1,-1
770,-1,224.902,68.5507,95.428,306.789,0.992706,-1,-1,-1
770,-1,172.774,135.979,54.105,155.467,0.990334,-1,-1,-1
770,-1,54.932,165.772,35.1577,96.214,0.988128,-1,-1,-1
770,-1,471.479,28.6183,167.521,417.924,0.983466,-1,-1,-1
770,-1,344.767,97.3284,107.711,290.597,0.982585,-1,-1,-1
770,-1,106.741,145.566,43.071,125.813,0.846998,-1,-1,-1
770,-1,76.2169,156.895,26.7411,101.116,0.711415,-1,-1,-1
771,-1,224.298,85.0693,90.581,288.516,0.993592,-1,-1,-1
771,-1,168.497,136.586,48.687,150.88,0.993437,-1,-1,-1
771,-1,346.809,98.9871,102.709,288.444,0.990938,-1,-1,-1
771,-1,486.289,29.3839,152.533,418.327,0.980135,-1,-1,-1
771,-1,49.2786,148.818,37.5435,107.488,0.952734,-1,-1,-1
771,-1,102.042,139.423,41.126,138.266,0.831794,-1,-1,-1
771,-1,378.961,86.4319,50.137,75.8621,0.764329,-1,-1,-1
772,-1,220.834,88.129,87.893,287.59,0.995592,-1,-1,-1
772,-1,329.49,71.2854,105.453,309.743,0.979184,-1,-1,-1
772,-1,43.2195,154.54,45.82,108.091,0.972668,-1,-1,-1
772,-1,161.609,135.331,48.098,159.225,0.963153,-1,-1,-1
772,-1,88.78,149.52,45.948,136.895,0.96107,-1,-1,-1
772,-1,485.83,41.2822,146.007,414.519,0.958382,-1,-1,-1
772,-1,374.249,89.2839,51.417,67.0161,0.876561,-1,-1,-1
773,-1,154.872,135.394,49.625,151.056,0.994852,-1,-1,-1
773,-1,215.615,72.3615,98.413,297.66,0.992116,-1,-1,-1
773,-1,78.0467,149.044,46.0563,126.87,0.987016,-1,-1,-1
773,-1,498.197,0,135.99,477.525,0.98409,-1,-1,-1
773,-1,46.7904,157.856,38.1181,106.326,0.970808,-1,-1,-1
773,-1,330.501,85.7708,99.242,300.644,0.916022,-1,-1,-1
773,-1,380.401,85.707,42.289,54.55,0.908526,-1,-1,-1
774,-1,209.279,82.5235,104.343,283.803,0.997558,-1,-1,-1
774,-1,152.569,137.179,50.021,157.521,0.995538,-1,-1,-1
774,-1,40.0691,155.57,78.1279,114.224,0.989228,-1,-1,-1
774,-1,331.722,90.4547,102.065,286.435,0.984317,-1,-1,-1
774,-1,479.647,35.1839,149.438,348.229,0.973296,-1,-1,-1
774,-1,380.206,78.3628,42.348,58.0952,0.808783,-1,-1,-1
775,-1,217.504,80.5404,99.746,284.434,0.996629,-1,-1,-1
775,-1,146.558,131.878,57.808,157.938,0.99557,-1,-1,-1
775,-1,480.923,13.5396,144.566,441.378,0.994143,-1,-1,-1
775,-1,49.2874,148.61,65.5096,133.415,0.986828,-1,-1,-1
775,-1,328.383,85.0827,104.078,297.921,0.96474,-1,-1,-1
776,-1,217.968,77.6479,97.87,285.474,0.995286,-1,-1,-1
776,-1,323.346,87.0126,107.729,302.807,0.994219,-1,-1,-1
776,-1,148.873,135.746,44.841,159.044,0.98924,-1,-1,-1
776,-1,450.113,0,184.609,469.22,0.987861,-1,-1,-1
776,-1,369.341,94.9834,46.482,54.5786,0.930943,-1,-1,-1
776,-1,90.9321,169.12,29.1129,107.914,0.914537,-1,-1,-1
776,-1,38.3872,160.046,51.4987,106,0.851708,-1,-1,-1
777,-1,212.425,76.5971,109.206,276.975,0.99578,-1,-1,-1
777,-1,135.89,142.163,51.776,166.487,0.99288,-1,-1,-1
777,-1,425.397,29.1689,186.6,419.724,0.988717,-1,-1,-1
777,-1,325.141,93.6749,103.551,308.095,0.982455,-1,-1,-1
777,-1,89.1575,182.777,33.2265,83.972,0.953867,-1,-1,-1
777,-1,37.9931,150.678,43.4086,140.17,0.893184,-1,-1,-1
777,-1,371.512,92.6358,48.056,62.9642,0.822906,-1,-1,-1
778,-1,215.441,87.138,114.121,279.502,0.997044,-1,-1,-1
778,-1,132.586,139.914,53.757,176.855,0.990104,-1,-1,-1
778,-1,408.32,42.4408,199.463,425.49,0.989746,-1,-1,-1
778,-1,32.8112,158.529,55.4569,135.84,0.987134,-1,-1,-1
778,-1,332.226,90.599,96.559,308.971,0.948652,-1,-1,-1
778,-1,92.5338,182.01,28.0662,87.85,0.92086,-1,-1,-1
778,-1,377.437,97.9592,49.864,65.0298,0.826158,-1,-1,-1
779,-1,139.366,133.881,50.175,182.5,0.997009,-1,-1,-1
779,-1,33.1279,166.992,54.9036,132.219,0.996107,-1,-1,-1
779,-1,216.239,90.7125,111.791,282.751,0.992034,-1,-1,-1
779,-1,103.944,191.261,28.321,82.447,0.98353,-1,-1,-1
779,-1,440.756,23.0727,173.191,455.927,0.967555,-1,-1,-1
779,-1,336.677,83.7899,101.784,286.61,0.920402,-1,-1,-1
779,-1,384.135,103.669,40.146,56.511,0.890701,-1,-1,-1
780,-1,133.569,133.726,70.57,147.357,0.995579,-1,-1,-1
780,-1,24.3147,165.794,58.4715,123.722,0.995473,-1,-1,-1
780,-1,222.609,102.633,109.669,275.84,0.989142,-1,-1,-1
780,-1,420.956,11.402,211.079,466.438,0.981931,-1,-1,-1
780,-1,101.409,187.403,26.233,82.559,0.969193,-1,-1,-1
780,-1,387.618,101.095,43.54,58.856,0.774343,-1,-1,-1
780,-1,79.9116,174.149,28.9464,97.895,0.76477,-1,-1,-1
780,-1,353.093,146.511,71.943,159.595,0.691729,-1,-1,-1
781,-1,121.957,123.972,79.856,198.29,0.997408,-1,-1,-1
781,-1,439.961,8.95769,199.039,459.707,0.994523,-1,-1,-1
781,-1,23.5454,166.802,53.5341,124.983,0.989731,-1,-1,-1
781,-1,230.547,90.9292,103.283,270.475,0.980616,-1,-1,-1
781,-1,73.8111,162.623,37.8279,118.973,0.962956,-1,-1,-1
781,-1,351.237,137.881,71.73,151.478,0.817226,-1,-1,-1
781,-1,208.937,117.499,41.189,201.563,0.752586,-1,-1,-1
782,-1,424.929,16.7493,214.071,437.084,0.998019,-1,-1,-1
782,-1,116.667,127.549,80.557,198.576,0.997754,-1,-1,-1
782,-1,251.668,120.572,75.3,242.131,0.982206,-1,-1,-1
782,-1,12.6834,159.565,54.414,132.274,0.981373,-1,-1,-1
782,-1,201.596,121.917,50.78,206.282,0.972863,-1,-1,-1
782,-1,75.0405,161.516,35.0405,117.845,0.896341,-1,-1,-1
782,-1,352.159,143.323,56.483,124.819,0.596074,-1,-1,-1
783,-1,116.669,127.394,79.222,192.076,0.997689,-1,-1,-1
783,-1,380.178,13.1747,249.065,465.825,0.987501,-1,-1,-1
783,-1,197.132,110.69,63.888,217.029,0.984063,-1,-1,-1
783,-1,11.7605,146.397,47.9845,144.891,0.982122,-1,-1,-1
783,-1,238.267,97.288,90.451,271.598,0.975022,-1,-1,-1
783,-1,72.1433,158.689,40.6777,122.1,0.937268,-1,-1,-1
783,-1,349.991,124.11,53.601,191.269,0.615246,-1,-1,-1
784,-1,103.231,123.909,84.623,198.286,0.996967,-1,-1,-1
784,-1,386.957,0,252.043,458.582,0.991174,-1,-1,-1
784,-1,195.465,118.126,56.992,203.677,0.986407,-1,-1,-1
784,-1,246.381,100.982,88.62,276.286,0.98295,-1,-1,-1
784,-1,10.5284,163.426,48.3887,132.764,0.982705,-1,-1,-1
784,-1,358.209,275.097,58.853,139.54,0.625732,-1,-1,-1
785,-1,95.7709,114.614,79.4471,224.707,0.997992,-1,-1,-1
785,-1,385.81,21.9942,246.713,424.799,0.994467,-1,-1,-1
785,-1,192.792,121.568,60.873,209.781,0.982934,-1,-1,-1
785,-1,3.33316,158.473,42.0666,132.91,0.979411,-1,-1,-1
785,-1,256.512,107.391,77.694,266.386,0.916015,-1,-1,-1
785,-1,356.83,284.884,55.881,133.662,0.64394,-1,-1,-1
786,-1,81.0263,110.376,89.6377,225.283,0.998525,-1,-1,-1
786,-1,185.112,113.912,64.413,245.748,0.998096,-1,-1,-1
786,-1,442.233,18.8543,196.767,431.115,0.997033,-1,-1,-1
786,-1,250,101.768,75.453,270.795,0.941094,-1,-1,-1
786,-1,352.592,1.72475,118.011,467.858,0.933777,-1,-1,-1
786,-1,19.8245,153.201,39.3479,121.399,0.542535,-1,-1,-1
787,-1,59.2024,102.575,95.8256,213.049,0.997608,-1,-1,-1
787,-1,429.333,2.77408,209.667,450.44,0.993482,-1,-1,-1
787,-1,166.526,96.7292,78.832,263.424,0.986306,-1,-1,-1
787,-1,256.319,131.412,68.169,233.746,0.921207,-1,-1,-1
787,-1,342.124,24.8727,122.117,352.395,0.851317,-1,-1,-1
787,-1,19.8786,142.243,51.3186,131.1,0.622139,-1,-1,-1
788,-1,152.506,97.5831,82.828,286.45,0.996761,-1,-1,-1
788,-1,39.4187,105.571,107.858,218.881,0.996451,-1,-1,-1
788,-1,448.196,0,185.673,467.908,0.994333,-1,-1,-1
788,-1,259.942,115.49,71.285,241.084,0.991937,-1,-1,-1
788,-1,337.385,0,112.316,453.808,0.932798,-1,-1,-1
788,-1,2.30672,159.863,32.4796,110.636,0.752932,-1,-1,-1
789,-1,21.6142,94.6045,108.963,234.794,0.996683,-1,-1,-1
789,-1,138.469,68.056,86.061,324.549,0.995993,-1,-1,-1
789,-1,254.435,121.539,64.569,219.155,0.991163,-1,-1,-1
789,-1,438.666,14.8304,193.086,434.293,0.989763,-1,-1,-1
789,-1,325.028,46.9726,127.854,348.854,0.871025,-1,-1,-1
789,-1,15.0507,178.139,36.8813,112.311,0.679867,-1,-1,-1
789,-1,456.603,36.1683,65.232,123.926,0.610159,-1,-1,-1
789,-1,2.28951,206.145,24.8486,76.14,0.512593,-1,-1,-1
790,-1,10.0483,98.9428,99.9867,238.244,0.997729,-1,-1,-1
790,-1,120.207,80.9118,90.177,326.522,0.997376,-1,-1,-1
790,-1,432.678,18.3741,191.385,434.601,0.990362,-1,-1,-1
790,-1,245.911,123.94,69.226,214.533,0.989038,-1,-1,-1
790,-1,312.31,33.232,122.49,439.251,0.951261,-1,-1,-1
791,-1,0,71.4924,94.2596,336.671,0.998094,-1,-1,-1
791,-1,97.3808,67.4608,102.696,352.741,0.995175,-1,-1,-1
791,-1,242.829,133.314,67.289,192.225,0.992054,-1,-1,-1
791,-1,454.828,20.9938,182.293,439.631,0.987524,-1,-1,-1
791,-1,312.38,21.7937,128.505,456.34,0.952382,-1,-1,-1
791,-1,413.269,29.1158,116.446,369.887,0.771388,-1,-1,-1
792,-1,73.8434,83.3712,121.507,329.155,0.998514,-1,-1,-1
792,-1,0,44.9991,75.7339,389.811,0.996884,-1,-1,-1
792,-1,240.274,126.004,68.025,206.492,0.992766,-1,-1,-1
792,-1,450.571,38.2837,185.018,440.716,0.979435,-1,-1,-1
792,-1,315.736,58.1078,136.917,336.972,0.971159,-1,-1,-1
792,-1,408.122,42.4728,108.752,379.258,0.93594,-1,-1,-1
792,-1,201.116,190.22,30.997,93.289,0.60227,-1,-1,-1
792,-1,452.318,54.9405,56.862,72.3755,0.597474,-1,-1,-1
793,-1,60.7204,56.9061,114.883,373.551,0.997321,-1,-1,-1
793,-1,239.062,132.519,67.109,209.484,0.997197,-1,-1,-1
793,-1,0.132416,66.8645,67.2972,367.171,0.993697,-1,-1,-1
793,-1,451.727,29.8573,177.704,428.37,0.970508,-1,-1,-1
793,-1,309.277,17.4401,124.524,456.215,0.962346,-1,-1,-1
793,-1,183.644,193.527,32.725,86.182,0.958751,-1,-1,-1
793,-1,404.056,41.3031,132.687,318.963,0.758838,-1,-1,-1
794,-1,34.5555,31.0801,124.452,396.151,0.996438,-1,-1,-1
794,-1,233.126,126.125,62.649,211.873,0.995177,-1,-1,-1
794,-1,410.416,32.4925,127.381,407.37,0.990163,-1,-1,-1
794,-1,304.863,12.9097,116.665,450.878,0.982143,-1,-1,-1
794,-1,523.818,0,114.36,479,0.975072,-1,-1,-1
794,-1,180.811,180.391,30.287,87.339,0.909587,-1,-1,-1
794,-1,0.157721,78.7452,45.0647,116.053,0.758786,-1,-1,-1
794,-1,1.02533,57.4367,62.1373,373.382,0.708374,-1,-1,-1
794,-1,143.337,173.499,27.227,88.218,0.509832,-1,-1,-1
795,-1,2.22787,20.4646,127.946,416.987,0.997942,-1,-1,-1
795,-1,230.27,136.909,60.41,179.887,0.996937,-1,-1,-1
795,-1,400.583,31.1212,126,408.515,0.991911,-1,-1,-1
795,-1,520.683,39.0757,115.422,437.935,0.983476,-1,-1,-1
795,-1,292.378,0,135.457,479,0.942185,-1,-1,-1
795,-1,129.085,172.593,28.433,95.333,0.93366,-1,-1,-1
795,-1,185.521,184.878,32.743,89.878,0.837852,-1,-1,-1
796,-1,0.406536,24.3278,124.332,399.783,0.998091,-1,-1,-1
796,-1,229.138,134.85,64.76,212.32,0.996456,-1,-1,-1
796,-1,397.469,38.4097,134.581,423.497,0.990193,-1,-1,-1
796,-1,290.933,7.63275,126.666,466.966,0.984781,-1,-1,-1
796,-1,126.183,173.63,32.018,109.1,0.964913,-1,-1,-1
796,-1,528.08,7.05814,100.532,471.032,0.907778,-1,-1,-1
796,-1,173.003,180.14,36.565,93.794,0.842216,-1,-1,-1
797,-1,396.185,23.9301,141.881,419.145,0.993352,-1,-1,-1
797,-1,215.212,131.457,84.629,197.688,0.974294,-1,-1,-1
797,-1,0,26.1258,83.0629,324.514,0.965079,-1,-1,-1
797,-1,287.058,15.4173,122.483,441.788,0.963441,-1,-1,-1
797,-1,119.837,168.059,35.401,102.072,0.958079,-1,-1,-1
797,-1,170.361,186.702,31.206,85.173,0.950616,-1,-1,-1
797,-1,541.704,0,88.787,473.802,0.897383,-1,-1,-1
798,-1,510.15,24.4004,125.517,452.464,0.993789,-1,-1,-1
798,-1,233.815,127.987,49.528,205.657,0.989568,-1,-1,-1
798,-1,392.258,47.6123,141.587,389.269,0.978113,-1,-1,-1
798,-1,172.165,182.179,33.3,93.801,0.974782,-1,-1,-1
798,-1,288.474,41.4268,132.508,369.574,0.971029,-1,-1,-1
798,-1,62.7717,172.055,42.8993,112.994,0.970382,-1,-1,-1
798,-1,116.453,157.49,37.675,115.245,0.95003,-1,-1,-1
799,-1,439.433,6.2941,199.567,456.721,0.995992,-1,-1,-1
799,-1,223.077,124.921,67.713,206.512,0.993406,-1,-1,-1
799,-1,283.035,19.5888,119.653,429.389,0.987225,-1,-1,-1
799,-1,392.214,21.6917,121.932,392.381,0.984689,-1,-1,-1
799,-1,170.087,173.157,32.092,104.614,0.96396,-1,-1,-1
799,-1,60.282,169.082,44.167,112.99,0.960074,-1,-1,-1
799,-1,109.111,167.327,39.542,108.117,0.92478,-1,-1,-1
800,-1,421.335,3.19025,209.527,447.783,0.996014,-1,-1,-1
800,-1,216.967,110.783,79.023,245.884,0.986894,-1,-1,-1
800,-1,280.006,36.0009,110.06,387.874,0.985339,-1,-1,-1
800,-1,160.302,176.34,35.611,102.253,0.961074,-1,-1,-1
800,-1,370.237,36.1721,128.488,383.465,0.959532,-1,-1,-1
800,-1,60.2532,169.88,32.4481,112.558,0.902494,-1,-1,-1
800,-1,100.829,155.668,33.744,115.142,0.70372,-1,-1,-1
801,-1,220.236,126.843,78.222,228.651,0.993691,-1,-1,-1
801,-1,411.068,21.0918,208.85,438.601,0.985972,-1,-1,-1
801,-1,286.155,44.6161,108.65,386.576,0.966714,-1,-1,-1
801,-1,159.365,175.406,39.985,113.983,0.907582,-1,-1,-1
801,-1,95.9894,159.973,32.0266,121.427,0.899665,-1,-1,-1
801,-1,354.804,15.9875,124.4,424.347,0.883364,-1,-1,-1
801,-1,51.033,165.114,62.876,113.167,0.873869,-1,-1,-1
802,-1,478.357,0,160.643,475.607,0.992088,-1,-1,-1
802,-1,381.528,16.6855,147.28,431.447,0.985354,-1,-1,-1
802,-1,226.06,130.546,66.547,207.071,0.981974,-1,-1,-1
802,-1,273.412,15.9355,129.797,431.237,0.96962,-1,-1,-1
802,-1,154.138,177.698,40.665,110.802,0.949979,-1,-1,-1
802,-1,55.9374,164.81,38.2987,112.304,0.905871,-1,-1,-1
802,-1,90.7575,166.881,26.3625,91.946,0.88345,-1,-1,-1
802,-1,197.259,180.128,28.273,88.848,0.644024,-1,-1,-1
802,-1,19.4654,150.372,33.3049,95.413,0.508416,-1,-1,-1
803,-1,229.297,123.151,63.389,222.11,0.995489,-1,-1,-1
803,-1,392.428,21.5797,121.546,410.478,0.989253,-1,-1,-1
803,-1,156.901,180.717,37.095,118.113,0.982214,-1,-1,-1
803,-1,528.01,0,110.99,425.998,0.981758,-1,-1,-1
803,-1,280.038,8.38524,120.984,430.099,0.968646,-1,-1,-1
803,-1,53.2486,168.454,43.7375,107.125,0.938401,-1,-1,-1
803,-1,20.0488,155.397,33.9128,86.294,0.870708,-1,-1,-1
803,-1,202.899,193.293,25.211,72.674,0.835223,-1,-1,-1
804,-1,238.577,131.957,56.037,210.17,0.997116,-1,-1,-1
804,-1,285.098,13.4481,129.816,436.743,0.991731,-1,-1,-1
804,-1,424.992,2.59348,199.598,461.76,0.973089,-1,-1,-1
804,-1,162.265,187.018,35.461,106.158,0.963561,-1,-1,-1
804,-1,53.9621,169.454,39.1404,114.573,0.747928,-1,-1,-1
804,-1,373.204,38.4141,113.059,413.466,0.719471,-1,-1,-1
804,-1,31.9761,157.468,39.8065,90.645,0.707654,-1,-1,-1
805,-1,243.977,126.654,58.831,209.253,0.995792,-1,-1,-1
805,-1,295.177,18.6693,134.751,423.261,0.992143,-1,-1,-1
805,-1,420.574,9.82872,213.489,420.128,0.990525,-1,-1,-1
805,-1,163.586,178.312,37.379,117.998,0.978503,-1,-1,-1
805,-1,30.7967,155.435,41.1957,83.793,0.918694,-1,-1,-1
805,-1,63.1792,168.219,36.8025,86.377,0.868402,-1,-1,-1
805,-1,210.979,180.562,24.237,90.626,0.847757,-1,-1,-1
806,-1,248.699,125.048,64.198,214.446,0.996782,-1,-1,-1
806,-1,165.18,182.911,41.793,110.264,0.990754,-1,-1,-1
806,-1,410.995,46.1109,125.505,395.174,0.987916,-1,-1,-1
806,-1,307.066,9.41782,135.308,454.543,0.983152,-1,-1,-1
806,-1,61.2547,163.244,48.5073,121.852,0.974549,-1,-1,-1
806,-1,518.982,29.9512,120.018,298.578,0.957519,-1,-1,-1
806,-1,209.316,182.871,27.288,91.035,0.931801,-1,-1,-1
806,-1,40.664,154.714,35.492,96.745,0.813668,-1,-1,-1
807,-1,259.834,128.427,58.462,218.26,0.9966,-1,-1,-1
807,-1,440.102,30.6171,113.698,410.769,0.991084,-1,-1,-1
807,-1,315.398,22.2771,123.923,444.28,0.987037,-1,-1,-1
807,-1,176.498,181.593,37.027,117.79,0.971869,-1,-1,-1
807,-1,73.4912,157.594,43.7488,124.368,0.961752,-1,-1,-1
807,-1,44.4783,149.138,40.3894,102.153,0.938676,-1,-1,-1
807,-1,211.694,187.044,28.293,88.033,0.890519,-1,-1,-1
807,-1,545.002,64.0945,88.636,240.594,0.842007,-1,-1,-1
808,-1,260.247,132.811,63.159,191.783,0.99609,-1,-1,-1
808,-1,175.459,170.527,43.185,129.291,0.989982,-1,-1,-1
808,-1,298.912,37.3714,244.841,437.937,0.987246,-1,-1,-1
808,-1,74.6399,168.706,50.9961,121.48,0.975029,-1,-1,-1
808,-1,218.542,180.187,30.23,102.262,0.861972,-1,-1,-1
808,-1,583.127,101.373,55.873,163.847,0.75063,-1,-1,-1
808,-1,41.4977,151.494,35.2543,72.549,0.629514,-1,-1,-1
809,-1,274.265,144.549,62.053,162.752,0.995029,-1,-1,-1
809,-1,453.193,10.4698,140.18,444.629,0.986073,-1,-1,-1
809,-1,329.251,33.5068,129.075,414.743,0.97361,-1,-1,-1
809,-1,57.9288,153.493,35.3197,93.43,0.967721,-1,-1,-1
809,-1,186.567,179.607,38.908,119.777,0.945125,-1,-1,-1
809,-1,88.2056,165.752,40.8444,122.998,0.909829,-1,-1,-1
809,-1,188.945,166.611,32.489,58.219,0.655543,-1,-1,-1
809,-1,238.668,197.172,22.98,81.271,0.632175,-1,-1,-1
810,-1,270.319,149.243,81.322,158.391,0.995103,-1,-1,-1
810,-1,346.797,2.79886,127.894,461.05,0.984059,-1,-1,-1
810,-1,186.273,181.755,50.041,117.011,0.980024,-1,-1,-1
810,-1,449.759,0,163.228,472.466,0.974371,-1,-1,-1
810,-1,59.36,166.919,43.183,91.878,0.965034,-1,-1,-1
810,-1,234.135,183.101,29.346,97.744,0.916175,-1,-1,-1
810,-1,84.736,153.4,48.285,139.168,0.637203,-1,-1,-1
811,-1,354.952,0,130.759,471.961,0.993758,-1,-1,-1
811,-1,448.322,3.47771,166.13,459.708,0.992424,-1,-1,-1
811,-1,186.213,177.402,52.03,129.325,0.98644,-1,-1,-1
811,-1,289.755,143.272,56.743,164.903,0.983655,-1,-1,-1
811,-1,246.992,179.185,28.685,98.42,0.95124,-1,-1,-1
811,-1,69.9031,148.296,49.4549,120.846,0.869338,-1,-1,-1
812,-1,472.868,10.3837,156.111,447.717,0.998517,-1,-1,-1
812,-1,358.164,24.2933,132.475,395.995,0.991887,-1,-1,-1
812,-1,282.111,139.217,79.943,178.438,0.991396,-1,-1,-1
812,-1,190.21,172.195,48.737,132.99,0.991126,-1,-1,-1
812,-1,64.3815,155.041,46.1005,98.199,0.938794,-1,-1,-1
812,-1,245.92,182.753,27.166,97.21,0.927016,-1,-1,-1
812,-1,102.041,150.672,34.574,137.296,0.708684,-1,-1,-1
813,-1,486.968,7.4128,152.032,457.577,0.997727,-1,-1,-1
813,-1,356.231,18.3234,149.277,398.287,0.993362,-1,-1,-1
813,-1,286.318,138.193,78.555,188.06,0.991175,-1,-1,-1
813,-1,191.797,173.116,43.114,128.192,0.98559,-1,-1,-1
813,-1,64.0214,151.031,61.7516,140.23,0.9149,-1,-1,-1
813,-1,250.241,197.468,23.265,79.696,0.889977,-1,-1,-1
814,-1,497.82,21.001,138.374,432.356,0.99803,-1,-1,-1
814,-1,359.917,26.6384,137.995,389.403,0.986836,-1,-1,-1
814,-1,191.426,166.063,41.246,132.762,0.986372,-1,-1,-1
814,-1,244.096,202.369,30.032,80.775,0.947679,-1,-1,-1
814,-1,304.161,133.216,53.786,191.904,0.944488,-1,-1,-1
814,-1,61.1634,143.657,52.1836,116.797,0.886766,-1,-1,-1
814,-1,99.0719,153.002,42.3041,138.192,0.86132,-1,-1,-1
814,-1,261.693,186.897,27.969,90.06,0.82441,-1,-1,-1
815,-1,185.702,169.694,50.944,134.786,0.99493,-1,-1,-1
815,-1,498.822,4.21143,127.888,437.58,0.994214,-1,-1,-1
815,-1,295.19,131.491,74.342,217.527,0.990234,-1,-1,-1
815,-1,385.55,6.91533,138.335,461.121,0.982482,-1,-1,-1
815,-1,246.412,192.298,30.595,97.715,0.91477,-1,-1,-1
815,-1,101.508,156.789,41.877,142.414,0.837244,-1,-1,-1
815,-1,272.883,197.812,26.144,78.849,0.8201,-1,-1,-1
815,-1,58.7286,141.675,60.5344,156.475,0.599128,-1,-1,-1
816,-1,506.222,3.66916,127.467,442.538,0.997787,-1,-1,-1
816,-1,307.29,125.06,60.547,225.199,0.993943,-1,-1,-1
816,-1,372.888,11.8255,147.147,400.11,0.98327,-1,-1,-1
816,-1,182.049,169.293,50.406,141.747,0.975435,-1,-1,-1
816,-1,239.891,184.46,31.066,100.7,0.954556,-1,-1,-1
816,-1,270.512,181.466,28.048,100.415,0.884681,-1,-1,-1
816,-1,38.1259,163.49,40.2117,133.92,0.833517,-1,-1,-1
816,-1,99.5935,152.047,34.6515,139.254,0.700269,-1,-1,-1
816,-1,57.8076,142.915,51.8724,152.39,0.626751,-1,-1,-1
817,-1,516.221,22.7464,120.69,431.447,0.99769,-1,-1,-1
817,-1,308.426,132.928,58.969,206.688,0.994478,-1,-1,-1
817,-1,178.231,167.754,57.895,150.117,0.990769,-1,-1,-1
817,-1,386.744,11.8781,131.596,456.365,0.9773,-1,-1,-1
817,-1,272.242,182.383,27.294,97.613,0.906808,-1,-1,-1
817,-1,239.39,185.299,29.363,98.834,0.902979,-1,-1,-1
817,-1,33.1946,153.266,57.6581,149.621,0.837105,-1,-1,-1
817,-1,99.1151,150.85,35.9419,138.613,0.602316,-1,-1,-1
818,-1,524.391,16.0892,114.569,426.25,0.990743,-1,-1,-1
818,-1,364.481,13.4125,196.962,464.953,0.98566,-1,-1,-1
818,-1,312.937,120.919,58.646,215.08,0.97993,-1,-1,-1
818,-1,171.717,167.401,52.084,144.696,0.975731,-1,-1,-1
818,-1,277.388,172.723,29.15,114.18,0.947482,-1,-1,-1
818,-1,229.39,167.309,35.956,121.861,0.935941,-1,-1,-1
818,-1,18.6765,167.575,51.9168,128.603,0.747404,-1,-1,-1
818,-1,168.067,179.811,27.119,80.817,0.524692,-1,-1,-1
819,-1,314.429,119.871,64.158,211.476,0.996963,-1,-1,-1
819,-1,389.466,0,164.248,477.202,0.990774,-1,-1,-1
819,-1,526.957,9.33919,109.039,434.279,0.969742,-1,-1,-1
819,-1,173.661,172.534,55.681,129.25,0.962929,-1,-1,-1
819,-1,222.016,170.259,41.044,121.054,0.960802,-1,-1,-1
819,-1,269.697,172.433,33.468,109.755,0.942101,-1,-1,-1
819,-1,94.3204,148.853,39.6946,146.596,0.942034,-1,-1,-1
819,-1,8.2434,153.818,60.436,148.599,0.913811,-1,-1,-1
819,-1,545,15.0014,66.172,200.305,0.766538,-1,-1,-1
820,-1,410.802,11.6466,144.588,453.107,0.996983,-1,-1,-1
820,-1,321.238,136.701,54.661,185.905,0.991369,-1,-1,-1
820,-1,161.391,164.742,51.968,155.006,0.984428,-1,-1,-1
820,-1,555.598,0,81.338,467.085,0.982638,-1,-1,-1
820,-1,5.02936,154.168,52.4112,154.944,0.969744,-1,-1,-1
820,-1,86.6784,141.692,45.0326,168.642,0.96216,-1,-1,-1
820,-1,216.355,166.577,42.445,128.047,0.956971,-1,-1,-1
820,-1,252.757,180.646,35.132,114.899,0.956671,-1,-1,-1
820,-1,43.1064,129.648,43.3943,121.775,0.902144,-1,-1,-1
820,-1,278.555,177.387,28.545,104.398,0.83046,-1,-1,-1
820,-1,375.63,147.327,45.625,117.11,0.62864,-1,-1,-1
821,-1,397.121,15.3622,157.454,383.857,0.995198,-1,-1,-1
821,-1,324.72,128.643,55.519,202.194,0.994545,-1,-1,-1
821,-1,149.694,161.573,57.301,162.432,0.991336,-1,-1,-1
821,-1,551.911,0,84.191,454.976,0.979139,-1,-1,-1
821,-1,253.135,181.503,34.287,116.35,0.945922,-1,-1,-1
821,-1,36.2808,134.822,52.6731,130.306,0.944291,-1,-1,-1
821,-1,2.6485,165.39,36.396,138.756,0.919881,-1,-1,-1
821,-1,213.656,167.569,39.108,125.945,0.91859,-1,-1,-1
821,-1,79.9993,146.16,41.8917,147.122,0.872851,-1,-1,-1
821,-1,280.607,175.2,28.188,103.501,0.769069,-1,-1,-1
821,-1,353.138,9.73087,51.393,124.49,0.606991,-1,-1,-1
821,-1,366.672,96.3809,53.27,235.837,0.557226,-1,-1,-1
822,-1,383.327,10.7415,214.85,468.259,0.99284,-1,-1,-1
822,-1,315.223,136.673,54.351,173.586,0.98681,-1,-1,-1
822,-1,531.736,13.415,107.264,385.49,0.97553,-1,-1,-1
822,-1,204.342,170.507,39.09,120.695,0.968503,-1,-1,-1
822,-1,23.1624,130.654,48.2663,123.195,0.965497,-1,-1,-1
822,-1,61.8853,148.038,50.8377,161.623,0.963961,-1,-1,-1
822,-1,243.993,184.822,37.738,112.497,0.960607,-1,-1,-1
822,-1,150.315,175.51,47.325,136.841,0.957782,-1,-1,-1
822,-1,266.373,168.977,35.286,104.042,0.843623,-1,-1,-1
823,-1,318.522,139.68,57.132,189.495,0.993952,-1,-1,-1
823,-1,431.28,21.5444,158.205,400.029,0.991736,-1,-1,-1
823,-1,132.399,172.412,57.902,161.658,0.985048,-1,-1,-1
823,-1,244.1,186.236,40.631,120.496,0.970041,-1,-1,-1
823,-1,65.9392,148.714,40.7338,163.996,0.959885,-1,-1,-1
823,-1,203.744,169.142,41.265,132.081,0.952208,-1,-1,-1
823,-1,27.558,140.476,42.2401,112.811,0.951729,-1,-1,-1
823,-1,374.985,141.866,68.749,169.485,0.949823,-1,-1,-1
823,-1,537.494,0,101.382,468.42,0.838484,-1,-1,-1
823,-1,572.487,18.708,50.512,191.183,0.581882,-1,-1,-1
824,-1,313.958,140.616,60.543,186.711,0.996207,-1,-1,-1
824,-1,435.144,0,182.85,479,0.994012,-1,-1,-1
824,-1,55.9058,154.587,47.8322,151.508,0.978243,-1,-1,-1
824,-1,240.083,182.348,35.71,118.435,0.970295,-1,-1,-1
824,-1,199.097,157.541,37.495,152.933,0.950844,-1,-1,-1
824,-1,111.099,168.926,75.53,175.512,0.939446,-1,-1,-1
824,-1,366.217,114.69,92.196,260.642,0.926804,-1,-1,-1
824,-1,266.209,173.434,28.565,113.944,0.872092,-1,-1,-1
824,-1,348.827,9.93845,43.753,122.962,0.848683,-1,-1,-1
824,-1,15.1357,125.992,47.3059,120.45,0.827836,-1,-1,-1
824,-1,403.608,107.403,51.526,68.572,0.824299,-1,-1,-1
825,-1,446.943,0,188.841,479,0.999026,-1,-1,-1
825,-1,310.188,138.38,69.808,171.986,0.994948,-1,-1,-1
825,-1,192.872,151.112,43.562,155.669,0.972119,-1,-1,-1
825,-1,237.782,184.827,38.395,111.152,0.962169,-1,-1,-1
825,-1,50.4492,140.301,48.2978,163.742,0.958161,-1,-1,-1
825,-1,105.768,161.575,73.783,181.216,0.953932,-1,-1,-1
825,-1,14.8728,115.288,43.4557,151.801,0.8131,-1,-1,-1
825,-1,336.43,122.866,148.183,230.434,0.806528,-1,-1,-1
825,-1,265.798,176.468,31.302,104.032,0.732969,-1,-1,-1
825,-1,408.562,115.29,48.136,67.999,0.560832,-1,-1,-1
826,-1,448.27,0,187.984,479,0.99702,-1,-1,-1
826,-1,311.913,137.201,73.778,184.821,0.996797,-1,-1,-1
826,-1,44.0593,146.37,47.9462,154.507,0.989704,-1,-1,-1
826,-1,184.579,148.396,49.034,156.698,0.98886,-1,-1,-1
826,-1,229.206,174.095,36.902,121.897,0.981409,-1,-1,-1
826,-1,107.302,124.905,63.282,221.434,0.934843,-1,-1,-1
826,-1,411.621,111.564,45.878,56.334,0.907418,-1,-1,-1
826,-1,364.54,107.149,116.239,256.644,0.861686,-1,-1,-1
826,-1,262.316,178.9,28.07,109.793,0.771305,-1,-1,-1
826,-1,10.0098,117.574,42.3558,151.142,0.686903,-1,-1,-1
827,-1,470.361,0,168.639,479,0.997846,-1,-1,-1
827,-1,310.11,135.623,61.867,207.061,0.996765,-1,-1,-1
827,-1,167.247,149.437,53.887,172.225,0.985668,-1,-1,-1
827,-1,375.124,114.908,105.35,263.202,0.984299,-1,-1,-1
827,-1,216.808,166.219,40.713,144.298,0.957468,-1,-1,-1
827,-1,60.5898,124.348,101.382,242.085,0.94617,-1,-1,-1
827,-1,29.0732,135.88,53.656,171.174,0.925066,-1,-1,-1
827,-1,407.312,110.319,47.621,59.399,0.811787,-1,-1,-1
827,-1,261.089,176.381,24.328,86.894,0.686789,-1,-1,-1
827,-1,239.173,179.46,32.078,105.458,0.543698,-1,-1,-1
828,-1,476.423,0,162.577,479,0.99776,-1,-1,-1
828,-1,312.181,130.872,59.187,214.973,0.99408,-1,-1,-1
828,-1,370.968,121.96,108.148,267.18,0.991135,-1,-1,-1
828,-1,211.142,181.971,44.065,130.859,0.957874,-1,-1,-1
828,-1,163.866,153.283,49.661,156.869,0.95525,-1,-1,-1
828,-1,45.7316,114.787,103.073,243.219,0.942004,-1,-1,-1
828,-1,22.66,134.489,49.571,163.992,0.800978,-1,-1,-1
828,-1,250.008,181.285,32.647,110.474,0.800959,-1,-1,-1
828,-1,406.217,116.413,50.189,73.333,0.532867,-1,-1,-1
829,-1,314.052,142.525,60.529,189.294,0.997446,-1,-1,-1
829,-1,500.82,0,137.833,479,0.9963,-1,-1,-1
829,-1,160.647,145.679,50.331,174.174,0.99154,-1,-1,-1
829,-1,218.399,173.314,42.627,136.249,0.989256,-1,-1,-1
829,-1,377.897,116.345,109.496,262.926,0.984714,-1,-1,-1
829,-1,13.6489,126.693,143.559,208.631,0.960553,-1,-1,-1
829,-1,408.086,121.132,48.347,59.888,0.807473,-1,-1,-1
829,-1,243.679,172.879,28.779,115.88,0.778976,-1,-1,-1
829,-1,20.213,117.307,48.6891,144.502,0.621797,-1,-1,-1
830,-1,323.388,142.306,57.818,183.882,0.995943,-1,-1,-1
830,-1,515.204,18.2792,123.796,386.732,0.995404,-1,-1,-1
830,-1,148.576,147.34,60.578,174.418,0.989724,-1,-1,-1
830,-1,211.733,185.25,45.09,136.934,0.983315,-1,-1,-1
830,-1,377.004,118.77,103.537,259.081,0.982042,-1,-1,-1
830,-1,21.3069,110.87,110.612,254.14,0.981871,-1,-1,-1
830,-1,295.242,190.305,29.637,97.622,0.95954,-1,-1,-1
830,-1,256.817,193.087,26.605,84.979,0.78252,-1,-1,-1
830,-1,161.655,149.19,37.75,70.487,0.508421,-1,-1,-1
831,-1,371.581,119.463,106.447,254.647,0.993763,-1,-1,-1
831,-1,5.36428,102.997,123.732,237.069,0.992708,-1,-1,-1
831,-1,533.24,8.88193,103.885,385.56,0.989996,-1,-1,-1
831,-1,135.654,148.335,54.272,178.344,0.988561,-1,-1,-1
831,-1,314.842,142.134,61.601,201.981,0.987265,-1,-1,-1
831,-1,281.519,178.973,39.865,114.789,0.981991,-1,-1,-1
831,-1,203.61,171.561,43.531,150.063,0.963123,-1,-1,-1
831,-1,246.956,174.991,28.241,125.573,0.786017,-1,-1,-1
831,-1,401.217,113.331,52.896,69.348,0.741349,-1,-1,-1
832,-1,3.08743,82.0783,90.9607,334.866,0.998089,-1,-1,-1
832,-1,122.468,139.908,56.681,177.429,0.995743,-1,-1,-1
832,-1,320.125,131.88,56.949,195.944,0.99402,-1,-1,-1
832,-1,189.299,154.184,49.384,169.003,0.988501,-1,-1,-1
832,-1,276.033,165.37,40.01,109.654,0.982973,-1,-1,-1
832,-1,364.645,114.51,98.583,258.208,0.977627,-1,-1,-1
832,-1,520.651,10.2177,117.872,443.959,0.976752,-1,-1,-1
832,-1,233.655,166.283,36.881,130.998,0.964595,-1,-1,-1
832,-1,398.345,110.866,45.561,64.549,0.719758,-1,-1,-1
833,-1,0,83.8779,88.1881,328.874,0.993228,-1,-1,-1
833,-1,319.031,131.138,56.921,190.879,0.992349,-1,-1,-1
833,-1,185.708,165.935,47.987,149.256,0.987476,-1,-1,-1
833,-1,117.138,127.842,59.26,205.768,0.986256,-1,-1,-1
833,-1,279.101,166.55,37.757,113.323,0.984379,-1,-1,-1
833,-1,231.865,156.933,36.94,137.402,0.973137,-1,-1,-1
833,-1,554.602,0,83.26,370.433,0.922578,-1,-1,-1
833,-1,363.524,123.783,104.331,237.74,0.910266,-1,-1,-1
833,-1,398.345,110.148,46.654,61.489,0.840384,-1,-1,-1
834,-1,312.581,125.676,66.546,195.736,0.994343,-1,-1,-1
834,-1,174.265,164.786,50.511,165.362,0.993031,-1,-1,-1
834,-1,275.068,177.797,36.075,97.829,0.99132,-1,-1,-1
834,-1,113.708,124.645,54.433,182.718,0.989996,-1,-1,-1
834,-1,2.56619,71.0822,68.761,318.378,0.98229,-1,-1,-1
834,-1,375.679,108.291,90.034,263.967,0.979763,-1,-1,-1
834,-1,224.582,150.292,47.221,150.41,0.973109,-1,-1,-1
834,-1,406.283,105.818,42.451,58.611,0.857791,-1,-1,-1
834,-1,550.136,10.523,80.689,368.536,0.541463,-1,-1,-1
835,-1,320.794,128.132,59.612,170.392,0.994792,-1,-1,-1
835,-1,269.16,170.696,35.966,103.551,0.993181,-1,-1,-1
835,-1,99.3989,130.478,67.2311,195.561,0.988686,-1,-1,-1
835,-1,223.552,162.25,39.295,139.065,0.988119,-1,-1,-1
835,-1,167.552,154.312,52.213,187.959,0.980009,-1,-1,-1
835,-1,406.81,105.192,46.669,63.718,0.877052,-1,-1,-1
835,-1,365.727,117.077,93.218,249.538,0.858293,-1,-1,-1
835,-1,4.2617,153.154,50.9022,155.845,0.60681,-1,-1,-1
836,-1,319.23,128.9,67.281,160.314,0.995076,-1,-1,-1
836,-1,222.367,151.676,42.369,152.112,0.991446,-1,-1,-1
836,-1,275.167,155.299,39.918,122.882,0.988185,-1,-1,-1
836,-1,375.058,114.589,96.066,253.927,0.984637,-1,-1,-1
836,-1,161.371,142.373,52.885,201.828,0.979643,-1,-1,-1
836,-1,92.7032,121.873,65.9718,212.986,0.975375,-1,-1,-1
836,-1,3.85431,139.466,43.7992,132.748,0.90544,-1,-1,-1
836,-1,410.706,106.998,43.638,62.844,0.714021,-1,-1,-1
837,-1,279.669,167.101,44.519,101.939,0.99072,-1,-1,-1
837,-1,319.902,141.13,85.387,153.965,0.990198,-1,-1,-1
837,-1,159.33,160.663,56.622,189.825,0.985943,-1,-1,-1
837,-1,82.5792,109.435,81.3858,248.002,0.975778,-1,-1,-1
837,-1,234.883,155.151,38.979,141.349,0.969754,-1,-1,-1
837,-1,377.925,117.345,107.089,255.649,0.956706,-1,-1,-1
837,-1,415.08,114.05,52.761,70.325,0.706372,-1,-1,-1
================================================
FILE: data/ETH-Sunnyday/det.txt
================================================
1,-1,291.557,192.468,39.494,119.227,0.995128,-1,-1,-1
1,-1,53.8152,193.418,48.4288,130.772,0.992938,-1,-1,-1
1,-1,586.982,194.324,41.534,131.626,0.974784,-1,-1,-1
1,-1,250.649,183.272,50.576,118.073,0.974297,-1,-1,-1
1,-1,177.834,203.176,33.196,99.34,0.963325,-1,-1,-1
2,-1,293.334,194.824,41.328,116.162,0.994784,-1,-1,-1
2,-1,48.6951,195.71,50.049,134.353,0.983914,-1,-1,-1
2,-1,258.541,192.194,48.532,121.379,0.973232,-1,-1,-1
2,-1,178.425,202.723,33.186,102.5,0.951844,-1,-1,-1
2,-1,599.401,188.047,39.516,126.724,0.767054,-1,-1,-1
2,-1,214.406,220.215,24.665,66.867,0.539506,-1,-1,-1
3,-1,43.1561,199.715,54.9316,140.005,0.996935,-1,-1,-1
3,-1,293.392,188.2,42.043,127.81,0.994645,-1,-1,-1
3,-1,259.101,182.381,45.296,132.711,0.982462,-1,-1,-1
3,-1,171.511,195.863,36.719,110.466,0.970977,-1,-1,-1
3,-1,221.555,218.416,24.47,59.227,0.918655,-1,-1,-1
3,-1,602.927,189.632,35.873,136.312,0.697491,-1,-1,-1
4,-1,296.676,191.88,41.977,116.321,0.994929,-1,-1,-1
4,-1,30.9258,194.992,58.6626,139.086,0.994438,-1,-1,-1
4,-1,165.405,196.902,42.98,115.131,0.986511,-1,-1,-1
4,-1,260.487,187.571,43.974,115.37,0.985723,-1,-1,-1
4,-1,214.979,219.658,27.663,65.771,0.829599,-1,-1,-1
5,-1,31.2317,187.038,59.0042,150.952,0.99623,-1,-1,-1
5,-1,164.62,196.438,38.327,112.228,0.988611,-1,-1,-1
5,-1,296.912,195.525,44.052,113.103,0.983024,-1,-1,-1
5,-1,249.477,193.814,51.829,104.884,0.982936,-1,-1,-1
5,-1,214.247,215.705,29.317,69.965,0.883402,-1,-1,-1
6,-1,22.1385,185.87,59.3588,154.837,0.996419,-1,-1,-1
6,-1,162.972,191.003,38.95,120.636,0.989121,-1,-1,-1
6,-1,303.467,194.071,35.847,107.448,0.984713,-1,-1,-1
6,-1,255.139,191.013,49.106,116.231,0.975691,-1,-1,-1
6,-1,214.068,216.165,29.364,69.473,0.928068,-1,-1,-1
6,-1,55.7955,243.158,35.6548,89.313,0.842279,-1,-1,-1
7,-1,14.641,184.888,59.7265,151.851,0.998154,-1,-1,-1
7,-1,304.682,198.962,41.816,115.604,0.991365,-1,-1,-1
7,-1,262.168,193.521,47.219,112.804,0.98848,-1,-1,-1
7,-1,164.151,193.368,36.139,123.918,0.965709,-1,-1,-1
7,-1,213.574,217.038,29.734,60.813,0.955303,-1,-1,-1
8,-1,5.55579,163.52,61.51,181.52,0.990578,-1,-1,-1
8,-1,311.008,204.936,39.173,103.533,0.988067,-1,-1,-1
8,-1,157.577,197.795,38.825,110.729,0.984535,-1,-1,-1
8,-1,259.508,193.227,53.094,118.41,0.983744,-1,-1,-1
8,-1,211.681,221.361,25.462,64.255,0.800837,-1,-1,-1
9,-1,154.912,197.4,40.842,123.764,0.990838,-1,-1,-1
9,-1,263.99,195.336,50.275,117.013,0.989237,-1,-1,-1
9,-1,308.889,196.205,39.767,113.464,0.988184,-1,-1,-1
9,-1,0,164.782,68.2431,196.102,0.984238,-1,-1,-1
9,-1,210.498,220.239,24.892,68.001,0.826273,-1,-1,-1
10,-1,0,175.918,47.1267,190.397,0.992848,-1,-1,-1
10,-1,149.982,193.578,45.21,128.11,0.984032,-1,-1,-1
10,-1,264.891,189.778,52.683,114.212,0.982636,-1,-1,-1
10,-1,308.209,191.475,41.617,132.296,0.956535,-1,-1,-1
10,-1,211.244,215.818,23.666,68.419,0.779603,-1,-1,-1
11,-1,150.711,193.516,45.182,125.076,0.990736,-1,-1,-1
11,-1,307.366,197.172,41.925,113.933,0.960702,-1,-1,-1
11,-1,263.894,182.733,40.793,103.317,0.933622,-1,-1,-1
11,-1,211.298,214.169,24.567,77.385,0.910839,-1,-1,-1
11,-1,237.176,218.673,27.886,77.403,0.883603,-1,-1,-1
11,-1,15.6403,213.832,40.412,100.898,0.512259,-1,-1,-1
12,-1,137.315,192.323,48.132,130.639,0.986159,-1,-1,-1
12,-1,310.555,199.461,39.656,112.574,0.983168,-1,-1,-1
12,-1,265.698,190.32,47.831,117.752,0.982415,-1,-1,-1
12,-1,205.66,220.733,27.748,72.268,0.951704,-1,-1,-1
12,-1,0.542728,182.743,47.0908,137.23,0.844088,-1,-1,-1
12,-1,235.011,217.585,26.639,72.786,0.792527,-1,-1,-1
13,-1,134.775,180.102,52.661,152.13,0.994393,-1,-1,-1
13,-1,313.155,195.754,42.117,121.58,0.987301,-1,-1,-1
13,-1,269.598,185.156,44.855,130.935,0.985621,-1,-1,-1
13,-1,204.97,223.592,25.769,65.516,0.961166,-1,-1,-1
13,-1,236.493,227.714,26.729,68.628,0.791984,-1,-1,-1
13,-1,372.263,222.409,27.968,59.726,0.776105,-1,-1,-1
14,-1,123.29,187.229,62.806,134.033,0.992032,-1,-1,-1
14,-1,315.555,195.965,41.196,111.66,0.991407,-1,-1,-1
14,-1,271.504,182.429,42.419,136.238,0.968005,-1,-1,-1
14,-1,207.431,216.948,25.596,66.429,0.907295,-1,-1,-1
14,-1,233.41,213.166,29.308,77.028,0.82383,-1,-1,-1
15,-1,118.172,187.04,56.551,145.947,0.995475,-1,-1,-1
15,-1,315.043,191.639,41.505,116.309,0.988658,-1,-1,-1
15,-1,275.032,178.332,40.772,136.815,0.940044,-1,-1,-1
15,-1,203.043,212.894,25.09,69.643,0.937146,-1,-1,-1
15,-1,234.063,209.111,32.057,82.371,0.897458,-1,-1,-1
15,-1,372.483,225.376,26.231,58.026,0.539569,-1,-1,-1
16,-1,317.872,191.547,36.903,131.191,0.992588,-1,-1,-1
16,-1,277.489,189.585,40.695,118.303,0.986322,-1,-1,-1
16,-1,116.967,187.897,45.086,149.928,0.979418,-1,-1,-1
16,-1,201.584,210.234,25.505,77.148,0.955997,-1,-1,-1
16,-1,234.439,218.651,31.313,82.53,0.859757,-1,-1,-1
16,-1,143.013,179.93,38.294,143.68,0.660626,-1,-1,-1
17,-1,109.478,182.09,52.981,150.964,0.994426,-1,-1,-1
17,-1,316.635,190.148,40.687,134.202,0.993843,-1,-1,-1
17,-1,275.06,187.202,40.398,133.931,0.958309,-1,-1,-1
17,-1,231.979,211.117,34.613,89.062,0.939216,-1,-1,-1
17,-1,197.381,210.327,25.658,76.227,0.913513,-1,-1,-1
17,-1,371.129,223.987,26.688,60.928,0.555266,-1,-1,-1
18,-1,317.327,191.129,38.476,123.416,0.99006,-1,-1,-1
18,-1,270.555,189.08,44.812,125.408,0.980327,-1,-1,-1
18,-1,229.071,213.204,34.748,87.248,0.964008,-1,-1,-1
18,-1,87.264,190.066,46.463,147.203,0.956276,-1,-1,-1
18,-1,194.418,211.469,26.297,75.666,0.902256,-1,-1,-1
18,-1,369.098,221.162,28.649,57.531,0.878402,-1,-1,-1
18,-1,130.713,239.031,29.419,94.621,0.686927,-1,-1,-1
18,-1,107.927,171.088,47.517,101.552,0.660987,-1,-1,-1
19,-1,89.6222,172.175,61.1518,170.137,0.989625,-1,-1,-1
19,-1,271.888,192.01,42.004,127.431,0.988251,-1,-1,-1
19,-1,318.168,188.734,36.057,121.538,0.986081,-1,-1,-1
19,-1,226.775,213.021,33.421,82.214,0.968213,-1,-1,-1
19,-1,193.174,214.004,24.828,71.896,0.881843,-1,-1,-1
19,-1,367.476,219.126,29.326,59.541,0.86151,-1,-1,-1
20,-1,272.734,185.609,46.251,124.336,0.992315,-1,-1,-1
20,-1,81.5873,164.18,60.5727,188.891,0.987671,-1,-1,-1
20,-1,319.563,186.852,41.53,134.063,0.985081,-1,-1,-1
20,-1,221.974,214.736,37.632,84.761,0.964501,-1,-1,-1
20,-1,372.382,226.497,28.299,57.193,0.867197,-1,-1,-1
20,-1,188.611,214.274,27.469,83.521,0.844287,-1,-1,-1
21,-1,317.653,189.38,41.076,128.557,0.994985,-1,-1,-1
21,-1,274.635,181.767,43.562,132.811,0.980394,-1,-1,-1
21,-1,87.571,167.21,52.086,173.541,0.970499,-1,-1,-1
21,-1,218.8,217.89,37.524,84.136,0.932145,-1,-1,-1
21,-1,374.118,220.768,26.691,59.633,0.924289,-1,-1,-1
21,-1,188.007,214.954,22.491,76.311,0.915384,-1,-1,-1
22,-1,77.4206,151.748,56.7994,190.729,0.991255,-1,-1,-1
22,-1,274.508,182.362,40.723,135.339,0.987688,-1,-1,-1
22,-1,319.407,187.915,40.88,117.185,0.986916,-1,-1,-1
22,-1,187.991,215.685,23.199,76.916,0.895145,-1,-1,-1
22,-1,374.989,219.703,24.725,61.571,0.764616,-1,-1,-1
22,-1,220.002,215.065,33.452,77.901,0.71438,-1,-1,-1
23,-1,53.1241,150.112,82.7449,206.117,0.994897,-1,-1,-1
23,-1,319.506,183.389,43.217,125.742,0.991655,-1,-1,-1
23,-1,276.027,184.34,40.322,140.377,0.987465,-1,-1,-1
23,-1,181.022,206.789,28.638,89.28,0.928299,-1,-1,-1
23,-1,217.377,222.247,33.046,79.029,0.82225,-1,-1,-1
24,-1,267.726,181.493,47.262,133.652,0.994272,-1,-1,-1
24,-1,322.17,188.496,38.353,121.87,0.991238,-1,-1,-1
24,-1,47.4018,154.028,74.1312,199.603,0.985631,-1,-1,-1
24,-1,176.993,201.695,29.982,90.793,0.969209,-1,-1,-1
24,-1,222.376,208.06,35.524,91.787,0.963761,-1,-1,-1
24,-1,374.389,214.943,25.717,59.88,0.813284,-1,-1,-1
25,-1,275.206,191.255,45.989,119.853,0.994965,-1,-1,-1
25,-1,324.297,181.265,39.135,131.6,0.98799,-1,-1,-1
25,-1,26.9942,142.626,99.2698,228.968,0.98311,-1,-1,-1
25,-1,169.629,194.676,29.213,98.309,0.965988,-1,-1,-1
25,-1,209.937,217.574,44.489,79.233,0.722152,-1,-1,-1
25,-1,371.652,213.342,27.34,69.094,0.605125,-1,-1,-1
26,-1,17.2216,135.183,101.412,235.235,0.994119,-1,-1,-1
26,-1,274.769,195.637,49.024,109.087,0.993334,-1,-1,-1
26,-1,318.326,184.954,37.704,121.32,0.990097,-1,-1,-1
26,-1,165.667,197.113,32.36,103.244,0.979066,-1,-1,-1
26,-1,212.8,212.296,36.811,92.136,0.936922,-1,-1,-1
26,-1,374.858,214.644,25.599,65.217,0.896416,-1,-1,-1
26,-1,228.11,194.93,31.81,69.531,0.72503,-1,-1,-1
27,-1,6.07181,129.38,98.3862,258.65,0.997247,-1,-1,-1
27,-1,273.251,189.395,50.335,119.41,0.986903,-1,-1,-1
27,-1,319.536,176.4,44.565,137.257,0.978048,-1,-1,-1
27,-1,162.295,197.534,29.669,105.168,0.968002,-1,-1,-1
27,-1,204.946,208.43,40.868,84.902,0.883197,-1,-1,-1
28,-1,0,120.502,87.0295,269.91,0.997992,-1,-1,-1
28,-1,270.553,188.354,42.803,115.602,0.985558,-1,-1,-1
28,-1,320.836,181.782,39.642,130.718,0.967235,-1,-1,-1
28,-1,158.499,204.567,30.105,98.151,0.946387,-1,-1,-1
28,-1,370.29,215.765,29.038,63.155,0.647623,-1,-1,-1
29,-1,0,118.002,83.8773,298.282,0.99475,-1,-1,-1
29,-1,268.15,187.216,46.564,114.215,0.992744,-1,-1,-1
29,-1,320.875,178.247,40.545,134.572,0.97762,-1,-1,-1
29,-1,149.592,196.514,36.82,108.191,0.969766,-1,-1,-1
29,-1,98.4042,208.941,23.5808,62.688,0.923764,-1,-1,-1
29,-1,194.968,199.357,48.599,93.804,0.824193,-1,-1,-1
29,-1,368.961,215.169,29.933,64.298,0.785845,-1,-1,-1
30,-1,0,104.043,77.7978,295.734,0.995465,-1,-1,-1
30,-1,267.763,186.965,48.073,121.856,0.993464,-1,-1,-1
30,-1,152.932,199.606,31.76,101.273,0.983194,-1,-1,-1
30,-1,321.843,174.26,39.809,134.966,0.97043,-1,-1,-1
30,-1,96.3024,212.665,23.5046,63.019,0.959203,-1,-1,-1
30,-1,366.604,209.286,30.816,75.513,0.851433,-1,-1,-1
30,-1,199.353,223.516,41.884,76.269,0.591265,-1,-1,-1
31,-1,274.858,185.418,52.771,119.88,0.99358,-1,-1,-1
31,-1,92.7367,209.915,25.6103,60.648,0.984488,-1,-1,-1
31,-1,320.899,178.939,44.692,123.33,0.977912,-1,-1,-1
31,-1,143.303,199.966,33.558,110.033,0.968152,-1,-1,-1
31,-1,0.264317,132.639,73.2628,232.104,0.936325,-1,-1,-1
31,-1,367.997,207.054,29.068,80.059,0.579059,-1,-1,-1
31,-1,197.666,210.415,43.573,98.001,0.547613,-1,-1,-1
32,-1,268.88,190.215,51.807,122.219,0.994312,-1,-1,-1
32,-1,93.3376,215.058,25.0334,61.27,0.972836,-1,-1,-1
32,-1,144,194.634,33.303,110.193,0.93503,-1,-1,-1
32,-1,322.462,167.912,40.983,149.337,0.934287,-1,-1,-1
32,-1,0.954067,124.956,43.3427,237.207,0.921455,-1,-1,-1
32,-1,367.861,213.208,28.137,76.632,0.67594,-1,-1,-1
33,-1,275.764,193.244,49.953,111.661,0.995166,-1,-1,-1
33,-1,85.2764,214.036,25.6966,62.227,0.97399,-1,-1,-1
33,-1,321.068,166.216,43.109,149.817,0.947579,-1,-1,-1
33,-1,138.745,192.037,34.719,121.736,0.929361,-1,-1,-1
33,-1,368.341,215.214,27.997,73.096,0.676741,-1,-1,-1
33,-1,0,145.4,29.3446,159.657,0.523475,-1,-1,-1
34,-1,275.326,191.896,48.504,113.334,0.99485,-1,-1,-1
34,-1,81.094,210.806,29.684,65.707,0.980204,-1,-1,-1
34,-1,132.058,200.499,39.826,111.245,0.966575,-1,-1,-1
34,-1,323.883,191.461,36.591,124.12,0.950287,-1,-1,-1
34,-1,368.017,218.786,30.106,73.649,0.700958,-1,-1,-1
34,-1,177.707,213.985,62.036,113.133,0.535856,-1,-1,-1
35,-1,272.953,196.036,47.235,114.024,0.995448,-1,-1,-1
35,-1,74.081,208.218,35.839,61.993,0.988814,-1,-1,-1
35,-1,322.646,182.525,38.698,129.584,0.986839,-1,-1,-1
35,-1,127.682,206.557,36.006,114.693,0.946411,-1,-1,-1
35,-1,367.621,217.673,32.408,74.547,0.701763,-1,-1,-1
35,-1,184.799,188.161,48.421,130.262,0.5974,-1,-1,-1
36,-1,261.879,193.366,52.971,132.552,0.99576,-1,-1,-1
36,-1,316.39,189.36,35.966,125.898,0.991019,-1,-1,-1
36,-1,67.5608,208.56,31.7627,71.624,0.97476,-1,-1,-1
36,-1,119.387,194.886,40.408,132.897,0.922297,-1,-1,-1
36,-1,366.709,226.322,30.715,67.004,0.826001,-1,-1,-1
37,-1,59.0789,209.491,35.5072,67.782,0.99399,-1,-1,-1
37,-1,263.069,195.503,54.624,111.099,0.993693,-1,-1,-1
37,-1,314.257,190.663,45.574,129.512,0.993281,-1,-1,-1
37,-1,110.499,191.277,42.126,128.749,0.978188,-1,-1,-1
37,-1,363.734,213.785,33.66,81.769,0.767867,-1,-1,-1
38,-1,56.6809,211.228,30.1354,66.995,0.991311,-1,-1,-1
38,-1,109.894,187,38.317,132.522,0.986638,-1,-1,-1
38,-1,313.682,180.281,39.612,132.54,0.982126,-1,-1,-1
38,-1,265.444,176.862,50.611,133.218,0.975607,-1,-1,-1
38,-1,165.213,191.038,53.37,132.055,0.894541,-1,-1,-1
38,-1,362.831,226.376,31.492,62.292,0.78009,-1,-1,-1
39,-1,264.036,176.602,52.999,140.638,0.994986,-1,-1,-1
39,-1,59.0657,203.282,28.4717,70.752,0.991458,-1,-1,-1
39,-1,105.877,187.621,37.325,131.781,0.988349,-1,-1,-1
39,-1,316.938,183.307,35.762,120.493,0.96714,-1,-1,-1
39,-1,368.099,216.461,32.349,59.306,0.932853,-1,-1,-1
39,-1,156.525,182.222,50.248,134.784,0.889727,-1,-1,-1
40,-1,49.3926,200.499,37.2887,69.18,0.991302,-1,-1,-1
40,-1,266.57,186.589,49.941,122.804,0.991015,-1,-1,-1
40,-1,309.433,191.484,52.262,117.375,0.974525,-1,-1,-1
40,-1,99.0232,178.11,37.7808,143.557,0.959021,-1,-1,-1
40,-1,368.127,210.834,31.786,70.769,0.788097,-1,-1,-1
40,-1,163.267,175.612,48.771,128.8,0.780141,-1,-1,-1
41,-1,262.452,187.63,48.737,129.207,0.991784,-1,-1,-1
41,-1,322.343,199.782,39.907,109.693,0.991608,-1,-1,-1
41,-1,52.8915,208.394,26.6848,61.528,0.983286,-1,-1,-1
41,-1,98.1965,178.123,47.3405,142.228,0.977514,-1,-1,-1
41,-1,368.376,218.93,29.764,68.952,0.820008,-1,-1,-1
41,-1,131.722,195.749,85.532,155.084,0.605278,-1,-1,-1
42,-1,316.319,191.051,41.776,128.436,0.993868,-1,-1,-1
42,-1,271.203,183.71,41.28,134.306,0.99079,-1,-1,-1
42,-1,43.4675,197.83,34.7606,80.655,0.984382,-1,-1,-1
42,-1,94.3507,178.932,42.6193,139.724,0.963111,-1,-1,-1
42,-1,186.116,174.036,32.734,89.734,0.826123,-1,-1,-1
42,-1,371.587,213.029,28.798,70.529,0.655719,-1,-1,-1
42,-1,157.398,166.615,40.096,123.89,0.521483,-1,-1,-1
43,-1,271.769,186.714,45.122,131.312,0.994579,-1,-1,-1
43,-1,39.0826,194.491,37.1344,89.876,0.989717,-1,-1,-1
43,-1,316.389,189.318,38.538,123.314,0.988811,-1,-1,-1
43,-1,84.1264,187.722,41.9016,151.205,0.940752,-1,-1,-1
43,-1,372.151,215.823,25.732,67.78,0.826758,-1,-1,-1
43,-1,168.502,170.435,39.941,102.59,0.793716,-1,-1,-1
44,-1,263.966,182.277,50.215,134.797,0.994884,-1,-1,-1
44,-1,35.2573,189.217,40.9191,106.797,0.983051,-1,-1,-1
44,-1,81.1904,171.061,49.6696,158.614,0.937478,-1,-1,-1
44,-1,315.407,198.261,39.424,111.639,0.92671,-1,-1,-1
44,-1,178.645,168.297,30.328,97.073,0.686273,-1,-1,-1
44,-1,152.557,157.437,43.384,131.085,0.659055,-1,-1,-1
45,-1,266.099,182.447,50.791,131.653,0.993876,-1,-1,-1
45,-1,75.0408,172.204,46.1982,140.869,0.986528,-1,-1,-1
45,-1,26.1419,192.484,42.1167,84.423,0.966996,-1,-1,-1
45,-1,315.972,178.866,35.132,129.914,0.933799,-1,-1,-1
45,-1,153.682,158.377,41.066,95.919,0.898872,-1,-1,-1
46,-1,24.074,202.357,36.1597,75.778,0.978064,-1,-1,-1
46,-1,274.28,184.053,38.789,141.597,0.967488,-1,-1,-1
46,-1,316.405,181.518,38.016,129.747,0.965846,-1,-1,-1
46,-1,61.3774,163.591,49.9616,113.012,0.9588,-1,-1,-1
46,-1,149.488,157.855,46.129,118.409,0.897709,-1,-1,-1
46,-1,370.443,205.195,36.269,74.273,0.799309,-1,-1,-1
47,-1,265.775,176.735,50.504,139.847,0.990362,-1,-1,-1
47,-1,318.454,178.157,37.677,132.338,0.986733,-1,-1,-1
47,-1,373.456,216.545,33.902,65.302,0.956256,-1,-1,-1
47,-1,54.1175,165.404,45.006,130.348,0.950234,-1,-1,-1
47,-1,25.3275,197.236,28.2934,81.351,0.948881,-1,-1,-1
47,-1,133.954,154.766,56.964,126.743,0.810854,-1,-1,-1
48,-1,265.808,182.267,51.55,136.188,0.989762,-1,-1,-1
48,-1,37.024,166.559,59.3248,149.14,0.976349,-1,-1,-1
48,-1,137.174,149.523,51.58,137.358,0.973029,-1,-1,-1
48,-1,374.083,206.173,34.965,70.779,0.9018,-1,-1,-1
48,-1,326.257,187.172,31.269,123.328,0.89823,-1,-1,-1
48,-1,50.5244,157.161,137.199,218.122,0.717737,-1,-1,-1
49,-1,274.238,187.3,45.452,136.905,0.985831,-1,-1,-1
49,-1,317.487,195.708,35.519,122.906,0.967044,-1,-1,-1
49,-1,30.362,168.939,55.4806,146.716,0.92561,-1,-1,-1
49,-1,135.551,147.788,50.602,133.759,0.921214,-1,-1,-1
49,-1,374.392,208.581,35.021,72.874,0.892662,-1,-1,-1
49,-1,33.2475,164.838,145.613,219.078,0.675618,-1,-1,-1
50,-1,266.524,183.823,53.99,133.243,0.991875,-1,-1,-1
50,-1,125.518,142.97,66.093,149.533,0.987901,-1,-1,-1
50,-1,9.52613,137.259,86.3804,232.63,0.976497,-1,-1,-1
50,-1,311.502,199.134,39.114,126.812,0.974192,-1,-1,-1
50,-1,376.249,206.636,36.834,74.281,0.912649,-1,-1,-1
51,-1,265.558,192.441,53.635,126.432,0.992555,-1,-1,-1
51,-1,112.966,140.396,64.637,133.756,0.97029,-1,-1,-1
51,-1,5.05141,155.988,80.578,134.556,0.934079,-1,-1,-1
51,-1,321.641,203.965,33.761,109.733,0.87885,-1,-1,-1
51,-1,378.184,215.925,34.553,69.768,0.825124,-1,-1,-1
51,-1,14.1416,156.483,152.298,263.979,0.756627,-1,-1,-1
52,-1,80.6699,129.247,102.514,201.234,0.995819,-1,-1,-1
52,-1,265.299,184.991,53.519,137.649,0.99454,-1,-1,-1
52,-1,314.495,188.995,34.51,121.381,0.936462,-1,-1,-1
52,-1,3.32197,144.766,56.0352,115.58,0.921554,-1,-1,-1
52,-1,387.195,223.971,25.64,64.135,0.879163,-1,-1,-1
52,-1,5.52898,145.398,78.8365,274.198,0.661143,-1,-1,-1
52,-1,365.29,222.196,28.922,63.442,0.515623,-1,-1,-1
53,-1,76.8109,124.9,102.218,210.017,0.99275,-1,-1,-1
53,-1,269.154,186.278,42.139,129.188,0.984762,-1,-1,-1
53,-1,313.99,196.581,41.541,118.563,0.977839,-1,-1,-1
53,-1,382.998,214.247,31.556,78.083,0.809222,-1,-1,-1
53,-1,2.48292,144.343,56.2904,132.544,0.682533,-1,-1,-1
53,-1,4.8328,136.473,97.4412,287.967,0.648999,-1,-1,-1
53,-1,362.146,212.907,36.307,62.593,0.516935,-1,-1,-1
54,-1,75.2835,113.264,91.1705,196.401,0.987115,-1,-1,-1
54,-1,270.008,187.002,41.159,124.64,0.976878,-1,-1,-1
54,-1,314.419,195.333,38.113,118.018,0.947402,-1,-1,-1
54,-1,382.801,208.682,35.043,80.724,0.920202,-1,-1,-1
54,-1,0.481892,133.909,40.9983,99.627,0.649466,-1,-1,-1
54,-1,365.525,226.607,28.387,56.715,0.527461,-1,-1,-1
55,-1,321.872,197.359,36.821,114.577,0.977982,-1,-1,-1
55,-1,272.272,188.836,41.432,115.41,0.965955,-1,-1,-1
55,-1,55.2947,112.564,101.142,188.256,0.961828,-1,-1,-1
55,-1,333.224,4.73599,34.707,60.4686,0.733181,-1,-1,-1
56,-1,39.8396,87.0196,116.839,268.315,0.982832,-1,-1,-1
56,-1,322.007,195.201,39.541,108.03,0.981737,-1,-1,-1
56,-1,273.597,189.309,41.786,127.026,0.980388,-1,-1,-1
56,-1,383.896,213.718,31.129,78.196,0.923257,-1,-1,-1
57,-1,19.104,60.4863,125.422,337.53,0.986936,-1,-1,-1
57,-1,318.08,198.234,34.929,117.47,0.971396,-1,-1,-1
57,-1,274.406,188.272,46.179,126.394,0.967036,-1,-1,-1
57,-1,386.946,210.401,36.212,78.206,0.959924,-1,-1,-1
57,-1,62.4539,92.2741,70.5531,163.24,0.51706,-1,-1,-1
57,-1,366.024,218.945,29.353,66.579,0.512969,-1,-1,-1
58,-1,15.5262,82.5166,126.254,252.762,0.991058,-1,-1,-1
58,-1,317.433,199.164,35.925,109.635,0.982934,-1,-1,-1
58,-1,390.991,208.585,35.919,80.239,0.976873,-1,-1,-1
58,-1,275.562,182.806,47.343,136.578,0.972024,-1,-1,-1
58,-1,135.478,227.34,24.906,49.485,0.950668,-1,-1,-1
58,-1,362.053,220.197,29.26,66.835,0.540997,-1,-1,-1
59,-1,8.68692,73.3606,117.899,271.171,0.98913,-1,-1,-1
59,-1,275.628,184.7,49.906,129.509,0.977637,-1,-1,-1
59,-1,316.212,200.724,36.436,107.507,0.960282,-1,-1,-1
59,-1,390.309,207.465,38.086,81.81,0.9424,-1,-1,-1
59,-1,137.195,225.996,21.023,47.173,0.938974,-1,-1,-1
59,-1,242.178,212.879,24.693,61.53,0.725501,-1,-1,-1
60,-1,0,42.9996,108.749,308.844,0.994567,-1,-1,-1
60,-1,275.536,191.935,49.295,120.15,0.989684,-1,-1,-1
60,-1,130.547,233.2,30.782,40.807,0.964646,-1,-1,-1
60,-1,318.98,200.348,35.497,117.314,0.946863,-1,-1,-1
60,-1,389.033,214.343,31.236,75.908,0.847916,-1,-1,-1
60,-1,210.044,232.094,31.34,39.182,0.640685,-1,-1,-1
60,-1,243.641,214.113,21.336,58.315,0.519125,-1,-1,-1
61,-1,278.144,187.865,52.952,133.226,0.989238,-1,-1,-1
61,-1,320.127,189.552,37.832,120.253,0.976874,-1,-1,-1
61,-1,3.05891,0.937241,85.0963,449.738,0.959872,-1,-1,-1
61,-1,136.497,227.398,22.575,49.998,0.955768,-1,-1,-1
61,-1,391.359,209.835,32.989,80.63,0.909398,-1,-1,-1
61,-1,243.848,215.013,20.282,63.833,0.889971,-1,-1,-1
62,-1,287.245,189.693,43.887,122.446,0.986074,-1,-1,-1
62,-1,321.375,192.031,37.547,123.506,0.980067,-1,-1,-1
62,-1,0,34.2878,90.3324,425.584,0.958508,-1,-1,-1
62,-1,126.978,221.84,24.424,54.088,0.954493,-1,-1,-1
62,-1,243.656,208.123,22.672,68.809,0.873964,-1,-1,-1
62,-1,392.449,210.432,32.584,81.265,0.855562,-1,-1,-1
63,-1,279.78,185.666,52.344,123.835,0.988007,-1,-1,-1
63,-1,319.605,189.826,41.843,118.551,0.987309,-1,-1,-1
63,-1,132.169,219.887,27.128,53.095,0.961546,-1,-1,-1
63,-1,395.659,206.589,31.452,86.091,0.961235,-1,-1,-1
63,-1,249.987,204.286,22.826,72.025,0.852997,-1,-1,-1
63,-1,2.74775,72.2138,58.7972,326.612,0.6376,-1,-1,-1
64,-1,322.273,191.86,39.116,111.892,0.988991,-1,-1,-1
64,-1,279.378,180.932,47.567,132.304,0.988147,-1,-1,-1
64,-1,127.166,220.502,24.652,53.714,0.966343,-1,-1,-1
64,-1,240.513,209.049,22.893,67.663,0.841135,-1,-1,-1
64,-1,396.211,207.585,35.145,79.688,0.839414,-1,-1,-1
65,-1,277.205,183.958,52.788,132.66,0.989854,-1,-1,-1
65,-1,323.839,199.353,38.298,120.722,0.972319,-1,-1,-1
65,-1,128.634,219.412,24.499,54.543,0.971811,-1,-1,-1
65,-1,246.416,200.309,23.441,76.124,0.738073,-1,-1,-1
65,-1,395.5,207.179,35.98,82.107,0.712662,-1,-1,-1
66,-1,278.468,186.686,51.344,133.249,0.991152,-1,-1,-1
66,-1,326.006,193.805,40.801,116.86,0.984993,-1,-1,-1
66,-1,130.103,216.304,28.472,54.166,0.974163,-1,-1,-1
66,-1,245.838,210.927,24.158,65.698,0.90601,-1,-1,-1
67,-1,279.784,184.876,50.395,135.547,0.992494,-1,-1,-1
67,-1,129.159,215.346,28.99,55.586,0.97539,-1,-1,-1
67,-1,328.256,187.522,37.933,127.555,0.969374,-1,-1,-1
67,-1,210.057,227.139,23.561,45.534,0.889949,-1,-1,-1
67,-1,374.4,223.288,28.096,62.533,0.525711,-1,-1,-1
68,-1,279.556,187.316,48.83,130.476,0.993099,-1,-1,-1
68,-1,326.144,187.049,34.724,125.444,0.978678,-1,-1,-1
68,-1,131.948,216.249,24.867,48.083,0.87292,-1,-1,-1
68,-1,204.202,215.239,24.01,52.701,0.828326,-1,-1,-1
69,-1,278.958,188.656,50.167,131.689,0.992028,-1,-1,-1
69,-1,336.527,187.163,32.496,129.168,0.982829,-1,-1,-1
69,-1,132.666,220.801,27.195,45.064,0.973868,-1,-1,-1
69,-1,206.456,221.539,20.105,51.576,0.800652,-1,-1,-1
69,-1,372.454,215.831,29.361,69.255,0.765597,-1,-1,-1
70,-1,279.139,191.427,49.554,119.933,0.992121,-1,-1,-1
70,-1,337.18,187.719,35.608,128.885,0.987136,-1,-1,-1
70,-1,129.869,219.443,22.724,53.495,0.966697,-1,-1,-1
70,-1,238.063,212.398,21.604,62.578,0.762141,-1,-1,-1
71,-1,328.95,184.891,41.423,141.431,0.988135,-1,-1,-1
71,-1,288.871,195.429,45.072,114.409,0.985385,-1,-1,-1
71,-1,130.004,224.869,24.291,45.963,0.798403,-1,-1,-1
72,-1,287.334,192.739,49.551,112.61,0.99124,-1,-1,-1
72,-1,333.571,184.583,39.432,136.628,0.977787,-1,-1,-1
72,-1,398.297,207.154,40.5,87.658,0.930139,-1,-1,-1
72,-1,125.099,224.143,24.894,47.785,0.811571,-1,-1,-1
72,-1,201.682,220.291,23.012,57.207,0.612169,-1,-1,-1
72,-1,236.224,209.617,22.413,64.365,0.609387,-1,-1,-1
73,-1,284.706,190.373,56.066,130.402,0.984779,-1,-1,-1
73,-1,329.324,186.338,36.908,132.806,0.977471,-1,-1,-1
73,-1,131.629,223.626,26.792,40.106,0.975826,-1,-1,-1
73,-1,348.301,197.073,35.688,105.577,0.582221,-1,-1,-1
73,-1,399.884,197.061,38.384,91.374,0.576893,-1,-1,-1
73,-1,575.277,172.688,45.315,131.091,0.576068,-1,-1,-1
74,-1,284.459,188.238,56.392,131.879,0.987957,-1,-1,-1
74,-1,573.406,185.565,47.423,134.817,0.980393,-1,-1,-1
74,-1,126.404,226.164,25.975,37.826,0.97667,-1,-1,-1
74,-1,336.557,196.564,41.035,119.208,0.966065,-1,-1,-1
74,-1,192.357,218.721,22.017,58.648,0.956044,-1,-1,-1
74,-1,236.737,211.329,23.972,63.99,0.806031,-1,-1,-1
74,-1,399.771,208.88,39.026,85.961,0.802393,-1,-1,-1
74,-1,208.016,217.78,22.377,61.298,0.740647,-1,-1,-1
75,-1,290.357,191.838,45.406,130.465,0.986393,-1,-1,-1
75,-1,584.12,202.6,45.677,140.992,0.982362,-1,-1,-1
75,-1,129.428,223.994,30.606,42.945,0.980573,-1,-1,-1
75,-1,198.109,225.062,25.47,60.948,0.955888,-1,-1,-1
75,-1,339.419,203.049,36.502,119.87,0.892761,-1,-1,-1
75,-1,403.129,206.938,37.798,85.231,0.843473,-1,-1,-1
75,-1,233.976,222.146,22.466,63.43,0.816115,-1,-1,-1
76,-1,287.908,192.705,52.043,123.28,0.992249,-1,-1,-1
76,-1,129.214,226.845,29.963,42.43,0.981566,-1,-1,-1
76,-1,196.441,223.657,26.383,50.999,0.975078,-1,-1,-1
76,-1,574.303,186.589,59.582,145.71,0.914161,-1,-1,-1
76,-1,341.93,193.596,34.649,129.704,0.90524,-1,-1,-1
76,-1,238.343,222.412,20.945,61.867,0.844046,-1,-1,-1
76,-1,407.103,199.286,40.194,91.07,0.609111,-1,-1,-1
77,-1,293.812,189.251,50.259,142.603,0.99019,-1,-1,-1
77,-1,129.093,224.559,29.564,44.324,0.980027,-1,-1,-1
77,-1,196.186,221.531,26.21,59.877,0.974417,-1,-1,-1
77,-1,344.951,188.543,32.797,147.326,0.95041,-1,-1,-1
77,-1,406.546,203.53,38.782,88.178,0.815856,-1,-1,-1
77,-1,232.664,227.496,21.438,59.731,0.79004,-1,-1,-1
77,-1,584.718,178.664,52.3,153.327,0.777782,-1,-1,-1
78,-1,294.787,190.178,54.549,129.47,0.995139,-1,-1,-1
78,-1,130.086,224.593,20.956,44.884,0.981472,-1,-1,-1
78,-1,345.31,184.181,36.544,142.901,0.971071,-1,-1,-1
78,-1,596.15,196.961,36.5,126.008,0.962368,-1,-1,-1
78,-1,191.377,221.142,22.443,55.277,0.941344,-1,-1,-1
78,-1,231.504,223.91,22.011,58.873,0.771205,-1,-1,-1
78,-1,407.146,204.434,43.639,86.122,0.673548,-1,-1,-1
78,-1,205.751,218.813,21.867,63.297,0.518663,-1,-1,-1
79,-1,295.781,184.897,53.235,134.109,0.995437,-1,-1,-1
79,-1,128.707,216.936,24.893,49.926,0.987329,-1,-1,-1
79,-1,345.774,182.779,41.101,133.959,0.973202,-1,-1,-1
79,-1,191.137,223.996,21.128,51.916,0.92386,-1,-1,-1
79,-1,408.779,203.426,44.668,88.74,0.901903,-1,-1,-1
79,-1,600.402,187.744,38.598,143.735,0.895001,-1,-1,-1
79,-1,236.729,221.11,23.499,62.332,0.715924,-1,-1,-1
80,-1,297.231,190.026,55.379,132.527,0.993083,-1,-1,-1
80,-1,130.586,222.617,22.908,45.392,0.977956,-1,-1,-1
80,-1,347.914,186.186,44.254,132.606,0.970731,-1,-1,-1
80,-1,236.787,227.271,22.769,58.559,0.927468,-1,-1,-1
80,-1,189.528,218.387,27.575,58.847,0.915618,-1,-1,-1
80,-1,407.312,205.231,51.16,93.323,0.747006,-1,-1,-1
81,-1,301.042,193.577,52.737,129.336,0.991188,-1,-1,-1
81,-1,129.633,218.533,25.206,49.677,0.983062,-1,-1,-1
81,-1,230.985,228.424,26.703,58.549,0.976363,-1,-1,-1
81,-1,349.778,199.642,43.642,115.318,0.971291,-1,-1,-1
81,-1,189.112,216.189,27.738,60.142,0.935787,-1,-1,-1
81,-1,410.406,202.381,46.437,99.07,0.835557,-1,-1,-1
82,-1,302.492,192.802,52.578,124.314,0.992134,-1,-1,-1
82,-1,134.468,216.59,23.983,57.163,0.983566,-1,-1,-1
82,-1,350.588,198.838,44.606,121.112,0.977799,-1,-1,-1
82,-1,233.027,216.576,28.49,65.206,0.975048,-1,-1,-1
82,-1,189.22,222.528,22.216,53.396,0.946222,-1,-1,-1
82,-1,410.207,193.858,46.14,101.027,0.893405,-1,-1,-1
83,-1,294.774,186.169,62.447,124.598,0.99255,-1,-1,-1
83,-1,129.115,217.055,24.111,47.827,0.983027,-1,-1,-1
83,-1,355.805,204.557,35.606,113.527,0.982183,-1,-1,-1
83,-1,232.29,219.891,27.874,61.307,0.975634,-1,-1,-1
83,-1,186.395,222.647,18.501,51.83,0.905825,-1,-1,-1
83,-1,413.013,193.889,48.195,95.971,0.868083,-1,-1,-1
83,-1,217.788,212.705,24.783,69.329,0.599762,-1,-1,-1
84,-1,304.18,193.597,51.925,125.681,0.992617,-1,-1,-1
84,-1,354.725,191.936,46.047,135.527,0.986555,-1,-1,-1
84,-1,129.071,219.773,29.682,42.782,0.982595,-1,-1,-1
84,-1,228.757,219.978,28.632,65.359,0.974464,-1,-1,-1
84,-1,183.866,223.791,22.416,54.454,0.910534,-1,-1,-1
85,-1,302.689,181.392,54.431,144.473,0.989837,-1,-1,-1
85,-1,355.547,202.171,45.31,127.494,0.984994,-1,-1,-1
85,-1,122.889,218.092,29.764,47.685,0.977223,-1,-1,-1
85,-1,186.128,225.675,25.549,55.094,0.960974,-1,-1,-1
85,-1,226.347,219.332,25.143,59.758,0.809343,-1,-1,-1
85,-1,411.373,199.793,52.088,90.769,0.803669,-1,-1,-1
86,-1,293.716,193.543,62.137,132.676,0.992623,-1,-1,-1
86,-1,175.208,225.158,23.125,57.068,0.952804,-1,-1,-1
86,-1,355.513,211.931,45.381,107.35,0.952098,-1,-1,-1
86,-1,124.264,224.959,32.922,48.681,0.951753,-1,-1,-1
86,-1,413.37,198.724,42.693,84.521,0.758699,-1,-1,-1
86,-1,218.558,228.715,21.966,57.161,0.739337,-1,-1,-1
86,-1,195.142,222.216,20.688,60.864,0.611373,-1,-1,-1
87,-1,299.728,195.291,50.855,132.93,0.994247,-1,-1,-1
87,-1,355.875,200.939,40.024,114.716,0.982938,-1,-1,-1
87,-1,125.109,230.007,23.729,51.434,0.930279,-1,-1,-1
87,-1,179.059,230.086,19.109,53.164,0.914516,-1,-1,-1
87,-1,217.914,221.211,21.098,61.611,0.874984,-1,-1,-1
87,-1,413.847,200.162,45.736,85.188,0.732383,-1,-1,-1
88,-1,302.324,194.822,45.86,128.939,0.984585,-1,-1,-1
88,-1,359.668,207.015,34.919,108.256,0.977586,-1,-1,-1
88,-1,220.492,216.209,25.933,71.013,0.967584,-1,-1,-1
88,-1,120.246,224.859,27.887,52.324,0.958819,-1,-1,-1
88,-1,267.526,223.444,24.725,63.464,0.913294,-1,-1,-1
88,-1,175.502,228.2,19.387,49.025,0.701504,-1,-1,-1
88,-1,415.168,195.354,44.438,87.851,0.673037,-1,-1,-1
88,-1,207.622,216.079,23.314,66.033,0.523763,-1,-1,-1
89,-1,297.896,187.404,55.877,131.816,0.986103,-1,-1,-1
89,-1,220.742,215.421,27.733,71.893,0.973723,-1,-1,-1
89,-1,122.179,230.769,25.239,50.553,0.931459,-1,-1,-1
89,-1,359.984,194.685,45.592,122.74,0.924444,-1,-1,-1
89,-1,181.737,227.099,21.651,58.286,0.784247,-1,-1,-1
89,-1,413.933,195.674,48.812,95.242,0.697638,-1,-1,-1
89,-1,253.513,230.366,21.61,66.384,0.678611,-1,-1,-1
89,-1,208.275,222.298,21.648,61.193,0.598762,-1,-1,-1
90,-1,296.972,182.244,57.13,132.006,0.991552,-1,-1,-1
90,-1,119.55,216.704,25.367,54.42,0.978826,-1,-1,-1
90,-1,215.49,203.632,30.856,84.092,0.966234,-1,-1,-1
90,-1,358.175,184.093,49.289,130.909,0.953387,-1,-1,-1
90,-1,420.559,194.029,51.999,99.739,0.771787,-1,-1,-1
90,-1,173.137,221.703,18.326,52.06,0.701734,-1,-1,-1
90,-1,201.615,209.04,28.394,63.178,0.692473,-1,-1,-1
91,-1,299.509,184.13,54.056,135.186,0.992604,-1,-1,-1
91,-1,215.488,209.208,31.528,80.256,0.98187,-1,-1,-1
91,-1,117.235,221.663,27.788,50.693,0.981809,-1,-1,-1
91,-1,170.737,221.16,22.727,58.35,0.954836,-1,-1,-1
91,-1,356.696,194.467,45.501,109.939,0.873309,-1,-1,-1
91,-1,202.448,219.295,26.381,66.602,0.75093,-1,-1,-1
91,-1,417.701,196.196,50.247,95.678,0.709069,-1,-1,-1
91,-1,183.49,227.453,23.618,57.31,0.589281,-1,-1,-1
92,-1,303.949,190.153,52.319,126.31,0.994344,-1,-1,-1
92,-1,117.438,217.633,29.6,46.703,0.978194,-1,-1,-1
92,-1,213.035,212.037,29.432,76.35,0.946682,-1,-1,-1
92,-1,360.986,188.504,43.226,121.288,0.939203,-1,-1,-1
92,-1,172.065,220.191,24.303,56.856,0.86575,-1,-1,-1
93,-1,298.477,186.955,58.478,140.276,0.994003,-1,-1,-1
93,-1,123.082,216.39,21.487,57.17,0.980795,-1,-1,-1
93,-1,211.237,204.002,33.925,89.442,0.965368,-1,-1,-1
93,-1,361.466,197.716,47.336,119.396,0.960623,-1,-1,-1
93,-1,171.779,223.318,20.667,46.002,0.920148,-1,-1,-1
94,-1,301.178,186.531,58.321,121.099,0.993766,-1,-1,-1
94,-1,368.342,198.907,46.142,113.202,0.966697,-1,-1,-1
94,-1,211.453,205.251,34.556,86.328,0.964193,-1,-1,-1
94,-1,120.968,218.189,23.73,45.281,0.963021,-1,-1,-1
94,-1,165.071,225.488,22.399,48.599,0.89097,-1,-1,-1
94,-1,276.781,223.9,23.391,60.573,0.537127,-1,-1,-1
95,-1,308.803,175.072,52.545,132.663,0.992868,-1,-1,-1
95,-1,122.904,211.53,23.458,59.114,0.968744,-1,-1,-1
95,-1,208.99,200.049,33.308,86.665,0.961738,-1,-1,-1
95,-1,163.555,220.537,30.728,59.054,0.933666,-1,-1,-1
95,-1,369.151,195.756,44.404,117.501,0.925147,-1,-1,-1
96,-1,308.056,181.339,54.854,130.45,0.995525,-1,-1,-1
96,-1,118.373,217.144,24.479,50.394,0.973027,-1,-1,-1
96,-1,203.665,202.645,31.678,78.459,0.966661,-1,-1,-1
96,-1,368.363,208.963,45.407,100.832,0.956759,-1,-1,-1
96,-1,161.131,211.887,30.722,60.296,0.900053,-1,-1,-1
96,-1,34.992,198.771,21.9648,72.959,0.501182,-1,-1,-1
97,-1,312.056,161.467,52.588,153.067,0.990054,-1,-1,-1
97,-1,118.137,207.842,29.144,47.663,0.978526,-1,-1,-1
97,-1,202.702,182.57,37.09,103.838,0.971173,-1,-1,-1
97,-1,367.111,176.12,41.934,140.144,0.954711,-1,-1,-1
97,-1,157.939,205.326,24.054,71.502,0.918273,-1,-1,-1
98,-1,313.467,171.895,51.024,132.368,0.991362,-1,-1,-1
98,-1,370.431,177.814,39.495,132.45,0.976645,-1,-1,-1
98,-1,155.377,200.857,31.127,80.959,0.97248,-1,-1,-1
98,-1,117.327,206.126,28.962,48.684,0.968381,-1,-1,-1
98,-1,202.023,182.737,34.641,107.47,0.96462,-1,-1,-1
98,-1,29.3748,192.132,32.8988,87.606,0.664051,-1,-1,-1
98,-1,260.233,208.221,26.293,74.774,0.519705,-1,-1,-1
99,-1,305.719,170.797,48.335,136.769,0.991077,-1,-1,-1
99,-1,199.426,185.679,33.826,102.653,0.967363,-1,-1,-1
99,-1,151.246,201.162,29.558,79.519,0.966928,-1,-1,-1
99,-1,368.478,173.721,41.799,135.887,0.915324,-1,-1,-1
99,-1,113.903,202.053,29.214,58.175,0.825353,-1,-1,-1
100,-1,313.601,170.052,50.27,133.024,0.991212,-1,-1,-1
100,-1,367.288,176.84,50.618,130.086,0.981176,-1,-1,-1
100,-1,200.629,185.016,35.631,108.818,0.979286,-1,-1,-1
100,-1,150.111,203.553,26.889,62.71,0.96808,-1,-1,-1
100,-1,112.339,210.951,23.569,54.876,0.78369,-1,-1,-1
100,-1,262.005,214.016,23.509,69.947,0.754586,-1,-1,-1
100,-1,240.637,216.371,24.09,75.435,0.536193,-1,-1,-1
101,-1,308.046,172.329,57.144,133.076,0.991524,-1,-1,-1
101,-1,367.28,178.941,53.719,125.251,0.984741,-1,-1,-1
101,-1,200.415,191.165,38.712,88.216,0.95986,-1,-1,-1
101,-1,147.296,198.81,28.192,76.361,0.910719,-1,-1,-1
101,-1,258.918,204.731,27.537,81.726,0.821227,-1,-1,-1
101,-1,112.878,202.489,20.995,53.923,0.721535,-1,-1,-1
101,-1,431.304,183.51,48.521,94.677,0.510798,-1,-1,-1
102,-1,313.225,158.294,52.549,142.571,0.988034,-1,-1,-1
102,-1,366.167,173.553,52.706,136.348,0.975125,-1,-1,-1
102,-1,196.771,175.849,34.602,102.808,0.963499,-1,-1,-1
102,-1,147.908,203.829,25.117,73.305,0.944506,-1,-1,-1
102,-1,110.108,204.679,25.713,57.324,0.923658,-1,-1,-1
102,-1,430.096,179.749,49.123,100.283,0.603972,-1,-1,-1
103,-1,303.367,173.007,59.439,143.966,0.996234,-1,-1,-1
103,-1,367.623,192.805,48.114,108.26,0.97833,-1,-1,-1
103,-1,137.134,201.497,36.347,79.759,0.975224,-1,-1,-1
103,-1,193.201,191.41,33.526,100.171,0.966956,-1,-1,-1
103,-1,242.514,219.465,26.793,72.171,0.739638,-1,-1,-1
103,-1,258.04,215.913,24.268,72.998,0.690556,-1,-1,-1
104,-1,303.838,175.907,50.671,128.16,0.995103,-1,-1,-1
104,-1,130.786,197.362,32.176,86.757,0.973471,-1,-1,-1
104,-1,192.091,210.147,32.887,75.553,0.972109,-1,-1,-1
104,-1,365.653,182.942,46.937,124.887,0.962882,-1,-1,-1
104,-1,110.581,206.802,21.087,63.09,0.812675,-1,-1,-1
104,-1,273.007,213.935,21.432,72.21,0.758587,-1,-1,-1
104,-1,241.16,223.607,28.234,67.575,0.745146,-1,-1,-1
105,-1,301.436,168.325,52.865,131.591,0.987987,-1,-1,-1
105,-1,186.514,194.643,34.61,88.716,0.977378,-1,-1,-1
105,-1,127.416,202.655,30.49,85.202,0.963805,-1,-1,-1
105,-1,368.647,170.478,44.144,131.342,0.934667,-1,-1,-1
105,-1,103.183,201.827,25.979,58.985,0.756436,-1,-1,-1
105,-1,269.27,214.554,23.545,69.989,0.644953,-1,-1,-1
106,-1,302.034,168.186,56.94,138.764,0.986926,-1,-1,-1
106,-1,181.057,187.699,27.729,109.463,0.960196,-1,-1,-1
106,-1,361.686,171.693,54.94,122.64,0.892599,-1,-1,-1
106,-1,113.365,193.108,34.061,86.864,0.878101,-1,-1,-1
106,-1,231.994,214.356,29.269,72.78,0.763184,-1,-1,-1
106,-1,270.879,215.243,22.768,69.495,0.74384,-1,-1,-1
107,-1,299.611,177.628,57.907,135.579,0.987479,-1,-1,-1
107,-1,174.131,182.117,32.876,124.588,0.981252,-1,-1,-1
107,-1,366.129,177.935,46.715,121.357,0.845499,-1,-1,-1
107,-1,230.925,216.612,31.966,81.387,0.759173,-1,-1,-1
107,-1,110.861,194.633,39.56,81.701,0.677021,-1,-1,-1
107,-1,269.622,209.563,25.973,67.306,0.646465,-1,-1,-1
108,-1,301.761,188.314,53.303,129.29,0.987367,-1,-1,-1
108,-1,164.368,180.474,36.214,117.245,0.983498,-1,-1,-1
108,-1,97.9998,198.096,38.7882,83.326,0.954862,-1,-1,-1
108,-1,256.582,219.667,23.315,70.104,0.90791,-1,-1,-1
108,-1,359.421,164.738,42.281,142.718,0.786662,-1,-1,-1
108,-1,219.686,227.493,29.684,76.752,0.502926,-1,-1,-1
109,-1,293.062,179.699,55.366,127.173,0.993317,-1,-1,-1
109,-1,161.302,178.699,39.41,119.888,0.980911,-1,-1,-1
109,-1,90.9459,199.131,44.0061,88.846,0.980856,-1,-1,-1
109,-1,358.008,188.829,43.995,121.839,0.960845,-1,-1,-1
109,-1,200.908,222.56,27.734,83.13,0.903263,-1,-1,-1
109,-1,258.388,219.751,23.222,68.721,0.884877,-1,-1,-1
109,-1,216.095,219.572,29.262,84.855,0.797786,-1,-1,-1
109,-1,233.09,214.079,27.278,83.875,0.553496,-1,-1,-1
110,-1,294.043,179.984,54.216,122.157,0.993258,-1,-1,-1
110,-1,88.6833,199.173,41.1987,91.599,0.991354,-1,-1,-1
110,-1,349.928,197.579,53.934,113.108,0.98365,-1,-1,-1
110,-1,152.267,180.819,40.827,118.996,0.980882,-1,-1,-1
110,-1,218.848,206.634,30.394,95.21,0.899888,-1,-1,-1
110,-1,258.025,223.32,21.221,60.383,0.730518,-1,-1,-1
110,-1,505.249,157.756,50.5,169.843,0.676998,-1,-1,-1
111,-1,147.264,178.643,42.234,118.533,0.990883,-1,-1,-1
111,-1,298.963,181.746,48.946,131.828,0.989727,-1,-1,-1
111,-1,354.271,189.201,42.377,124.437,0.984119,-1,-1,-1
111,-1,257.518,213.678,25.48,72.571,0.975886,-1,-1,-1
111,-1,516.824,184.07,52.461,144.184,0.970436,-1,-1,-1
111,-1,84.3191,193.758,36.2619,94.966,0.897798,-1,-1,-1
111,-1,194.805,211.037,25.219,95.03,0.756669,-1,-1,-1
111,-1,218.441,203.871,26.841,98.583,0.742602,-1,-1,-1
112,-1,354.312,192.864,45.54,111.264,0.989043,-1,-1,-1
112,-1,188.093,229.701,31.178,72.892,0.978256,-1,-1,-1
112,-1,296.677,179.112,53.274,132.205,0.975737,-1,-1,-1
112,-1,77.7851,200.202,44.5249,95.482,0.971326,-1,-1,-1
112,-1,146.985,175.64,41.856,131.667,0.964976,-1,-1,-1
112,-1,514.512,173.092,46.514,147.512,0.949892,-1,-1,-1
112,-1,263.832,214.486,19.961,65.147,0.87489,-1,-1,-1
112,-1,201.919,203.325,56.509,107.219,0.576021,-1,-1,-1
113,-1,300.352,180.197,54.95,127.842,0.993854,-1,-1,-1
113,-1,142.534,172.709,43.472,122.745,0.985023,-1,-1,-1
113,-1,68.6421,192.07,53.9509,106.436,0.98358,-1,-1,-1
113,-1,352.452,175.383,40.98,134.019,0.960766,-1,-1,-1
113,-1,513.645,193.575,42.938,111.612,0.933256,-1,-1,-1
113,-1,246.803,213.515,26.734,75.109,0.918152,-1,-1,-1
113,-1,188.865,210.701,34.038,95.632,0.913155,-1,-1,-1
114,-1,293.018,177.416,54.744,126.355,0.993648,-1,-1,-1
114,-1,133.024,167.817,54.301,137.893,0.957774,-1,-1,-1
114,-1,520.065,195.091,44.987,112.13,0.956577,-1,-1,-1
114,-1,70.4303,197.733,35.7847,99.667,0.956413,-1,-1,-1
114,-1,249.279,208.745,27.023,77.508,0.955302,-1,-1,-1
114,-1,207.94,190.407,34.118,109.857,0.881286,-1,-1,-1
114,-1,183.725,208.335,28.093,103.551,0.843983,-1,-1,-1
114,-1,355.472,174.169,35.713,135.858,0.831958,-1,-1,-1
115,-1,301.668,176.932,51.741,125.996,0.992144,-1,-1,-1
115,-1,129.552,174.539,47.419,133.26,0.982788,-1,-1,-1
115,-1,537.517,187.572,47.86,128.943,0.934726,-1,-1,-1
115,-1,352.768,185.804,42.472,107.822,0.929581,-1,-1,-1
115,-1,246.264,213.378,25.562,76.201,0.925686,-1,-1,-1
115,-1,203.801,198.585,34.214,102.436,0.920435,-1,-1,-1
115,-1,513.227,189.712,45.355,115.409,0.833019,-1,-1,-1
115,-1,179.114,206.608,34.329,110.269,0.789183,-1,-1,-1
115,-1,70.4357,189.583,45.0583,102.499,0.785605,-1,-1,-1
116,-1,295.224,176.737,53.894,128.712,0.989093,-1,-1,-1
116,-1,245.31,211.464,31.18,81.053,0.979762,-1,-1,-1
116,-1,132.798,170.335,44.046,135.908,0.941818,-1,-1,-1
116,-1,515.04,194.001,43.056,99.08,0.910855,-1,-1,-1
116,-1,59.444,186.999,40.717,108.795,0.853258,-1,-1,-1
116,-1,174.773,200.707,39.403,118.419,0.852641,-1,-1,-1
116,-1,354.23,181.041,47.235,123.304,0.818147,-1,-1,-1
116,-1,204.814,204.035,32.516,104.982,0.785538,-1,-1,-1
116,-1,543.778,168.64,41.157,166.503,0.647071,-1,-1,-1
117,-1,296.045,172.8,56.753,138.879,0.988677,-1,-1,-1
117,-1,126.66,168.44,47.957,127.667,0.988372,-1,-1,-1
117,-1,242.07,221.403,31.513,72.738,0.988137,-1,-1,-1
117,-1,347.103,187.215,49.886,116.68,0.956265,-1,-1,-1
117,-1,169.758,211.883,36.93,94.764,0.916562,-1,-1,-1
117,-1,203.136,196.69,35.007,124.369,0.857187,-1,-1,-1
117,-1,534.214,180.525,53.797,120.888,0.854143,-1,-1,-1
117,-1,50.8882,184.625,40.8366,109.596,0.646399,-1,-1,-1
118,-1,111.357,168.831,53.306,128.556,0.993921,-1,-1,-1
118,-1,297.666,178.159,56.133,131.795,0.991179,-1,-1,-1
118,-1,241.885,217.56,30.423,78.949,0.986936,-1,-1,-1
118,-1,44.7153,192.415,49.0218,103.231,0.953136,-1,-1,-1
118,-1,166.763,211.23,35.548,105.601,0.942822,-1,-1,-1
118,-1,189.539,201.132,44.541,118.431,0.923179,-1,-1,-1
118,-1,540.311,181.575,45.155,111.995,0.899455,-1,-1,-1
118,-1,349.394,185.464,46.971,117.667,0.749874,-1,-1,-1
119,-1,295.831,172.669,57.494,135.811,0.992163,-1,-1,-1
119,-1,117.552,162.626,48.283,141.493,0.984043,-1,-1,-1
119,-1,236.994,210.448,34.446,90.907,0.97439,-1,-1,-1
119,-1,188.194,203.238,45.35,117.02,0.921978,-1,-1,-1
119,-1,538.803,189.068,47.252,109.658,0.886948,-1,-1,-1
119,-1,167.14,220.571,35.956,105.526,0.870388,-1,-1,-1
119,-1,344.605,183.43,47.113,128.123,0.570284,-1,-1,-1
120,-1,109.609,166.325,48.044,142.296,0.996577,-1,-1,-1
120,-1,286.708,181.698,56.165,134.459,0.995367,-1,-1,-1
120,-1,237.105,216.72,29.673,86.313,0.990114,-1,-1,-1
120,-1,156.318,226.999,35.929,93.89,0.965549,-1,-1,-1
120,-1,497.373,195.214,100.939,113.249,0.95286,-1,-1,-1
120,-1,192.575,212.448,33.549,110.943,0.932341,-1,-1,-1
120,-1,35.4495,207.052,36.6161,113.017,0.811112,-1,-1,-1
120,-1,342.322,175.362,37.498,121.905,0.544939,-1,-1,-1
121,-1,289.584,174.223,55.056,139.678,0.991534,-1,-1,-1
121,-1,89.0352,158.241,51.4028,171.143,0.991087,-1,-1,-1
121,-1,229.705,211.915,33.593,92.096,0.986182,-1,-1,-1
121,-1,142.824,214.852,33.746,109.674,0.967627,-1,-1,-1
121,-1,498.256,196.857,90.917,107.021,0.958041,-1,-1,-1
121,-1,23.2877,200.921,35.646,118.669,0.951683,-1,-1,-1
121,-1,341.929,174.55,42.481,133.885,0.818565,-1,-1,-1
121,-1,187.636,213.457,33.134,114.971,0.730945,-1,-1,-1
121,-1,101.496,152.763,46.201,67.066,0.547458,-1,-1,-1
122,-1,280.488,169.558,51.067,140.51,0.991424,-1,-1,-1
122,-1,129.24,215.733,40.565,112.395,0.985732,-1,-1,-1
122,-1,80.8812,164.17,42.5868,152.779,0.976403,-1,-1,-1
122,-1,330.614,184.506,37.992,130.309,0.967597,-1,-1,-1
122,-1,11.7978,192.369,33.8138,126.969,0.95338,-1,-1,-1
122,-1,219.068,207.484,28.163,99.605,0.950244,-1,-1,-1
122,-1,170.001,208.795,37.69,132.353,0.937909,-1,-1,-1
122,-1,564.959,205.408,30.153,104.279,0.689728,-1,-1,-1
123,-1,62.5322,145.139,49.4578,179.968,0.993585,-1,-1,-1
123,-1,113.003,218.796,43.927,112.195,0.990519,-1,-1,-1
123,-1,206.648,213.239,34.399,98.419,0.986476,-1,-1,-1
123,-1,270.643,176.152,49.403,136.828,0.984231,-1,-1,-1
123,-1,313.769,179.093,49.173,133.113,0.930904,-1,-1,-1
123,-1,160.706,214.133,33.062,118.12,0.839504,-1,-1,-1
124,-1,97.3446,223.722,43.4174,107.621,0.990195,-1,-1,-1
124,-1,264.005,182.977,49.85,125.739,0.989814,-1,-1,-1
124,-1,194.771,211.323,36.923,101.643,0.98667,-1,-1,-1
124,-1,47.2754,144.653,43.0731,172.714,0.976156,-1,-1,-1
124,-1,307.229,169.329,50.158,114.56,0.90719,-1,-1,-1
124,-1,143.328,206.486,37.129,135.199,0.8717,-1,-1,-1
125,-1,28.842,135.981,64.5251,186.918,0.994454,-1,-1,-1
125,-1,254.245,178.653,52.019,134.335,0.988963,-1,-1,-1
125,-1,88.7091,221.88,46.8229,120.032,0.987411,-1,-1,-1
125,-1,302.847,175.796,45.861,132.765,0.940173,-1,-1,-1
125,-1,188.461,209.993,33.633,106.195,0.925503,-1,-1,-1
125,-1,132.295,168.278,54.522,156.598,0.911953,-1,-1,-1
125,-1,558.908,205.611,31.408,108.441,0.910128,-1,-1,-1
126,-1,26.2449,146.221,59.0455,184.977,0.991975,-1,-1,-1
126,-1,261.201,185.582,54.279,119.785,0.989525,-1,-1,-1
126,-1,189.6,205.734,39.333,110.667,0.985026,-1,-1,-1
126,-1,81.6829,223.581,52.8181,121.503,0.98455,-1,-1,-1
126,-1,309.304,178.425,41.978,133.597,0.959472,-1,-1,-1
126,-1,127.721,190.106,57.58,160.358,0.913541,-1,-1,-1
127,-1,259.575,173.75,56.409,141.361,0.994429,-1,-1,-1
127,-1,18.391,125.774,63.5027,218.009,0.991702,-1,-1,-1
127,-1,178.595,187.819,40.404,139.96,0.975417,-1,-1,-1
127,-1,83.9047,214.153,39.8463,121.175,0.963362,-1,-1,-1
127,-1,309.744,203.028,33.013,111.437,0.93362,-1,-1,-1
127,-1,564.271,209.674,33.043,104.771,0.811774,-1,-1,-1
127,-1,491.22,182.237,33.677,54.288,0.787152,-1,-1,-1
128,-1,254.922,179.366,50.537,127.2,0.98879,-1,-1,-1
128,-1,182.785,183.927,36.798,135.783,0.984718,-1,-1,-1
128,-1,308.121,184.515,46.19,126.798,0.984654,-1,-1,-1
128,-1,14.4583,134.118,64.7698,205.203,0.981348,-1,-1,-1
128,-1,577.405,205.262,35.376,115.255,0.964627,-1,-1,-1
128,-1,64.9623,212.94,47.8607,134.06,0.946808,-1,-1,-1
129,-1,259.255,179.341,55.284,120.751,0.987996,-1,-1,-1
129,-1,174.759,192.235,46.729,136.349,0.984914,-1,-1,-1
129,-1,305.458,176.642,42.615,145.042,0.984725,-1,-1,-1
129,-1,7.63508,120.365,77.7929,242.645,0.937448,-1,-1,-1
129,-1,113.289,168.561,51.19,111.471,0.894825,-1,-1,-1
129,-1,581.059,202.686,41.889,119.619,0.852554,-1,-1,-1
129,-1,63.0479,199.209,41.3381,154.561,0.82269,-1,-1,-1
129,-1,17.127,140.569,56.4719,94.558,0.751969,-1,-1,-1
130,-1,579.971,214.14,40.837,103.763,0.985406,-1,-1,-1
130,-1,302.674,186.776,42.668,127.045,0.984609,-1,-1,-1
130,-1,253.211,173.445,50.724,139.244,0.983757,-1,-1,-1
130,-1,172.155,194.611,45.913,134.492,0.966247,-1,-1,-1
130,-1,10.3684,137.737,50.5848,74.222,0.949498,-1,-1,-1
130,-1,14.5011,200.038,46.5526,146.306,0.912512,-1,-1,-1
130,-1,52.9619,198.993,43.9633,148.614,0.884253,-1,-1,-1
130,-1,108.963,161.609,48.293,95.045,0.715184,-1,-1,-1
131,-1,258.932,176.594,55.234,133.507,0.993095,-1,-1,-1
131,-1,583.858,222.644,42.946,109.286,0.971924,-1,-1,-1
131,-1,305.24,174.277,38.76,144.915,0.961141,-1,-1,-1
131,-1,162.584,191.184,50.776,139.437,0.950812,-1,-1,-1
131,-1,44.7566,222.446,63.1464,128.316,0.945321,-1,-1,-1
131,-1,7.77209,124.378,57.1843,112.734,0.842984,-1,-1,-1
131,-1,9.47557,205.943,53.3499,149.04,0.785076,-1,-1,-1
131,-1,115.383,234.332,38.577,118.862,0.628604,-1,-1,-1
131,-1,192.61,203.008,28.511,100.723,0.572102,-1,-1,-1
132,-1,250.31,164.786,56.386,145.835,0.983918,-1,-1,-1
132,-1,44.4282,213.036,56.0768,143.13,0.965479,-1,-1,-1
132,-1,163.061,178.506,37.904,152.152,0.962024,-1,-1,-1
132,-1,306.878,167.766,36.61,143.046,0.945733,-1,-1,-1
132,-1,103.03,242.658,43.307,127.136,0.867452,-1,-1,-1
132,-1,4.12402,106.26,68.0145,267.491,0.830849,-1,-1,-1
132,-1,593.901,231.856,33.773,94.298,0.773024,-1,-1,-1
132,-1,4.98894,121.621,48.5282,97.054,0.769692,-1,-1,-1
132,-1,185.422,193.614,34.112,128.512,0.649387,-1,-1,-1
133,-1,255.486,171.99,58.808,136.161,0.992429,-1,-1,-1
133,-1,306.211,173.722,41.561,137.898,0.989158,-1,-1,-1
133,-1,171.168,179.247,45.992,151.9,0.96924,-1,-1,-1
133,-1,6.83783,122.257,82.7814,242.727,0.840561,-1,-1,-1
133,-1,4.43999,111.575,43.9886,137.851,0.565449,-1,-1,-1
133,-1,84.8473,141.737,57.1817,212.326,0.560138,-1,-1,-1
133,-1,155.653,177.291,34.776,139.143,0.527259,-1,-1,-1
134,-1,257.772,172.811,53.216,132.186,0.990166,-1,-1,-1
134,-1,160.998,173.568,50.561,160.666,0.979992,-1,-1,-1
134,-1,305.478,175.883,40.936,140.881,0.965937,-1,-1,-1
134,-1,39.3996,195.282,55.8189,158.476,0.861008,-1,-1,-1
134,-1,5.07273,111.343,40.1534,137.291,0.758953,-1,-1,-1
134,-1,86.0979,145.785,58.3291,122.701,0.688956,-1,-1,-1
134,-1,5.97612,207.637,28.3706,131.588,0.50613,-1,-1,-1
135,-1,253.597,175.381,58.442,135.16,0.994251,-1,-1,-1
135,-1,306.112,179.715,39.981,129.046,0.981015,-1,-1,-1
135,-1,158.243,174.996,47.195,150.351,0.962613,-1,-1,-1
135,-1,12.0564,127.818,126.872,249.627,0.637545,-1,-1,-1
136,-1,254.046,169.376,60.104,145.774,0.996414,-1,-1,-1
136,-1,303.949,177.536,45.804,127.083,0.989016,-1,-1,-1
136,-1,10.7374,187.318,60.9319,198.363,0.961617,-1,-1,-1
136,-1,152.894,162.048,55.42,168.279,0.953063,-1,-1,-1
137,-1,254.778,170.742,55.174,147.069,0.993677,-1,-1,-1
137,-1,305.594,171.021,45.462,139.146,0.966286,-1,-1,-1
137,-1,11.3046,196.658,53.6448,189.099,0.962162,-1,-1,-1
137,-1,160.065,179.567,48.545,164.544,0.892485,-1,-1,-1
138,-1,250.045,171.626,52.065,140.449,0.994469,-1,-1,-1
138,-1,301.689,175.391,54.726,137.182,0.965833,-1,-1,-1
138,-1,138.855,184.803,50.838,177.937,0.928848,-1,-1,-1
138,-1,166.563,209.868,45.424,137.829,0.778519,-1,-1,-1
138,-1,18.0421,154.966,110.296,268.366,0.745685,-1,-1,-1
139,-1,249.353,179.216,51.227,126.216,0.992539,-1,-1,-1
139,-1,304.393,178.241,50.702,131.443,0.988685,-1,-1,-1
139,-1,12.15,121.119,116.645,298.787,0.979504,-1,-1,-1
139,-1,143.098,177.941,53.323,175.799,0.945403,-1,-1,-1
140,-1,8.29253,93.7592,103.788,331.193,0.991495,-1,-1,-1
140,-1,301.04,180.512,54.653,118.115,0.987777,-1,-1,-1
140,-1,241.825,181.382,62.06,115.172,0.98084,-1,-1,-1
140,-1,142.429,197.45,54.826,166.914,0.917362,-1,-1,-1
140,-1,202.285,211.216,20.615,61.679,0.828929,-1,-1,-1
140,-1,128.392,153.526,60.034,112.786,0.80171,-1,-1,-1
140,-1,33.9688,109.198,53.3047,65.318,0.754618,-1,-1,-1
141,-1,0.301273,71.5439,109.909,365.608,0.986642,-1,-1,-1
141,-1,127.154,189.495,71.142,182.391,0.983342,-1,-1,-1
141,-1,301.443,181.904,54.002,135.926,0.982527,-1,-1,-1
141,-1,254.958,177.609,42.09,133.465,0.958454,-1,-1,-1
141,-1,118.716,152.275,72.474,104.847,0.687923,-1,-1,-1
141,-1,9.27352,98.8738,59.9578,84.8042,0.678779,-1,-1,-1
141,-1,196.251,204.132,25.341,85.521,0.631164,-1,-1,-1
142,-1,302.375,187.07,50.878,132.056,0.986398,-1,-1,-1
142,-1,4.11767,81.7154,91.6372,378.522,0.985751,-1,-1,-1
142,-1,245.804,176.622,62.128,152.223,0.97606,-1,-1,-1
142,-1,116.786,157.333,79.04,224.767,0.970164,-1,-1,-1
142,-1,4.7407,92.3322,67.3048,139.589,0.506245,-1,-1,-1
143,-1,302.225,184.274,54.372,132.51,0.98932,-1,-1,-1
143,-1,99.7526,126.218,82.1834,264.843,0.985671,-1,-1,-1
143,-1,252.928,179.055,42.646,136.13,0.981164,-1,-1,-1
143,-1,3.38302,81.322,78.7169,384.115,0.958256,-1,-1,-1
143,-1,151.879,176.587,54.976,174.932,0.814499,-1,-1,-1
144,-1,108.005,119.952,86.605,278.062,0.993205,-1,-1,-1
144,-1,305.265,175.816,46.105,142.704,0.992489,-1,-1,-1
144,-1,247.251,174.666,52.582,152.454,0.990286,-1,-1,-1
145,-1,251.091,180.231,51.308,141.589,0.9938,-1,-1,-1
145,-1,305.663,175.262,44.612,137.393,0.992444,-1,-1,-1
145,-1,95.327,107.849,96.641,301.266,0.983167,-1,-1,-1
146,-1,80.5199,99.3846,106.104,314.962,0.990987,-1,-1,-1
146,-1,247.603,171.325,55.915,143.105,0.988713,-1,-1,-1
146,-1,305.434,179.8,51.373,129.339,0.955003,-1,-1,-1
146,-1,48.3516,118.409,64.3974,175.345,0.565751,-1,-1,-1
147,-1,51.6105,109.823,134.547,310.829,0.997077,-1,-1,-1
147,-1,252.544,176.066,45.858,134.708,0.986446,-1,-1,-1
147,-1,305.403,179.625,46.873,129.13,0.954429,-1,-1,-1
147,-1,196.034,205.305,24.427,74.777,0.829028,-1,-1,-1
148,-1,36.0824,108.215,138.969,322.411,0.99596,-1,-1,-1
148,-1,249.206,176.789,53.324,135.199,0.992571,-1,-1,-1
148,-1,193.582,213.16,26.632,62.016,0.955749,-1,-1,-1
148,-1,305.646,186.166,42.634,123.494,0.920831,-1,-1,-1
149,-1,9.90858,87.6236,146.666,351.708,0.994376,-1,-1,-1
149,-1,248.659,175.833,55.298,138.349,0.988713,-1,-1,-1
149,-1,307.946,176.583,38.085,129.913,0.975244,-1,-1,-1
149,-1,194.608,213.715,24.557,63.449,0.932073,-1,-1,-1
149,-1,178.374,200.76,24.114,87.08,0.502875,-1,-1,-1
150,-1,0,62.6803,168.735,395.505,0.993709,-1,-1,-1
150,-1,252.197,185.022,51.003,129.229,0.991712,-1,-1,-1
150,-1,304.347,181.178,36.614,123.623,0.967894,-1,-1,-1
150,-1,194.377,207.19,24.499,70.438,0.945367,-1,-1,-1
150,-1,175.399,199.33,23.501,80.064,0.722287,-1,-1,-1
151,-1,4.68959,59.3142,142.33,397.114,0.994156,-1,-1,-1
151,-1,253.553,171.197,49.369,149.047,0.984384,-1,-1,-1
151,-1,301.871,185.433,42.214,132.556,0.964323,-1,-1,-1
151,-1,194.396,211.465,23.871,69.389,0.84704,-1,-1,-1
152,-1,1.47967,38.3574,149.335,438.549,0.99745,-1,-1,-1
152,-1,251.9,171.233,52.348,140.522,0.993867,-1,-1,-1
152,-1,308.109,182.044,42.167,128.848,0.971085,-1,-1,-1
152,-1,150.575,197.682,30.581,79.217,0.873362,-1,-1,-1
152,-1,194.729,208.124,22.935,69.391,0.564709,-1,-1,-1
153,-1,3.9315,4.80916,133.262,456.238,0.991895,-1,-1,-1
153,-1,252.578,171.454,47.792,143.546,0.984395,-1,-1,-1
153,-1,148.829,200.661,30.535,78.576,0.91589,-1,-1,-1
153,-1,305.226,173.044,46.719,132.592,0.793387,-1,-1,-1
153,-1,185.92,198.343,27.316,77.76,0.74923,-1,-1,-1
153,-1,133.317,200.803,28.773,81.009,0.746679,-1,-1,-1
154,-1,246.574,176.342,56.627,138.614,0.992065,-1,-1,-1
154,-1,150.101,202.952,29.356,79.963,0.92616,-1,-1,-1
154,-1,187.172,199.302,30.171,86.968,0.926009,-1,-1,-1
154,-1,302.791,184.285,48.944,128.331,0.918342,-1,-1,-1
154,-1,5.72004,49.594,114.743,427.431,0.905469,-1,-1,-1
154,-1,129.661,192.735,34.562,90.394,0.710864,-1,-1,-1
155,-1,253.809,179.438,50.377,132.824,0.989786,-1,-1,-1
155,-1,469.382,186.5,35.529,102.39,0.977486,-1,-1,-1
155,-1,309.052,196.461,42.149,115.749,0.969757,-1,-1,-1
155,-1,1.14648,41.6727,82.7628,413.156,0.955468,-1,-1,-1
155,-1,153.61,201.342,29.427,82.19,0.751378,-1,-1,-1
155,-1,181.216,198.951,32.593,84.178,0.68832,-1,-1,-1
155,-1,133.426,192.892,31.39,90.722,0.655568,-1,-1,-1
156,-1,253.21,184.326,49.804,127.354,0.990679,-1,-1,-1
156,-1,465.964,185.492,45.641,118.008,0.97387,-1,-1,-1
156,-1,0.765736,94.7862,75.1818,353.871,0.968786,-1,-1,-1
156,-1,302.014,186.677,44.83,121.096,0.967231,-1,-1,-1
156,-1,114.371,183.057,35.805,109.066,0.852738,-1,-1,-1
156,-1,72.8676,221.841,30.1664,57.248,0.790678,-1,-1,-1
156,-1,171.39,196.279,34.92,90.63,0.699828,-1,-1,-1
157,-1,253.088,188.434,50.883,129.533,0.989132,-1,-1,-1
157,-1,301.51,189.802,43.389,123.933,0.967243,-1,-1,-1
157,-1,62.4927,225.161,37.1406,64.432,0.966976,-1,-1,-1
157,-1,112.598,195.889,31.914,91.67,0.960561,-1,-1,-1
157,-1,476.331,146.896,41.935,170.424,0.777119,-1,-1,-1
157,-1,175.944,202.847,39.788,89.676,0.648859,-1,-1,-1
158,-1,254.607,180.795,51.59,145.942,0.991412,-1,-1,-1
158,-1,301.967,198.684,50.165,125.414,0.968793,-1,-1,-1
158,-1,477.03,170.421,42.938,151.29,0.948971,-1,-1,-1
158,-1,110.926,185.32,35.938,105.865,0.879035,-1,-1,-1
158,-1,71.74,226.936,31.73,60.743,0.870061,-1,-1,-1
158,-1,180.979,191.611,32.314,104.667,0.807144,-1,-1,-1
159,-1,256.302,177.576,47.646,152.17,0.988997,-1,-1,-1
159,-1,309.171,190.676,52.413,137.257,0.978863,-1,-1,-1
159,-1,112.552,185.92,36.609,104.909,0.964666,-1,-1,-1
159,-1,476.799,166.992,48.345,166.112,0.900524,-1,-1,-1
159,-1,57.5954,226.706,48.5856,55.072,0.591011,-1,-1,-1
159,-1,171.664,188.343,55.803,111.415,0.564655,-1,-1,-1
159,-1,145.312,190.32,28.275,90.187,0.531777,-1,-1,-1
160,-1,306.447,193.965,51.041,139.503,0.994643,-1,-1,-1
160,-1,249.117,179.923,53.054,144.18,0.993128,-1,-1,-1
160,-1,58.1746,232.34,40.4964,55.969,0.964358,-1,-1,-1
160,-1,468.392,185.121,55.711,133.488,0.840674,-1,-1,-1
160,-1,115.347,178.164,42.19,119.447,0.711268,-1,-1,-1
161,-1,249.208,184.661,55.273,134.445,0.995815,-1,-1,-1
161,-1,312.123,198.312,48.926,119.293,0.984623,-1,-1,-1
161,-1,115.334,181.974,37.885,105.172,0.972795,-1,-1,-1
161,-1,58.0243,227.308,39.9474,57.913,0.944815,-1,-1,-1
161,-1,176.218,189.752,43.633,94.051,0.815198,-1,-1,-1
161,-1,18.7738,224.905,32.9461,62.315,0.641067,-1,-1,-1
162,-1,256.215,173.676,51.542,140.892,0.99235,-1,-1,-1
162,-1,313.194,191.277,47.809,127.801,0.978696,-1,-1,-1
162,-1,107.06,182.428,44.872,112.004,0.956604,-1,-1,-1
162,-1,69.4972,219.533,28.8116,62.735,0.862926,-1,-1,-1
162,-1,18.6687,229.505,33.0041,56.21,0.660866,-1,-1,-1
162,-1,51.0828,233.142,34.8518,55.096,0.503964,-1,-1,-1
163,-1,247.824,172.099,55.784,138.162,0.980857,-1,-1,-1
163,-1,107.518,167.996,41.6,126.456,0.977561,-1,-1,-1
163,-1,311.112,185.131,40.499,120.317,0.958129,-1,-1,-1
163,-1,58.3004,223.899,35.5963,52.769,0.935227,-1,-1,-1
163,-1,17.4832,223.721,32.131,65.885,0.783776,-1,-1,-1
164,-1,254.899,174.746,60.431,146.539,0.993242,-1,-1,-1
164,-1,108.489,179.577,42.688,127.821,0.985755,-1,-1,-1
164,-1,312.424,176.034,39.896,137.069,0.980438,-1,-1,-1
164,-1,57.4039,225.172,35.6896,63.108,0.939731,-1,-1,-1
164,-1,17.9926,225.274,32.519,58.283,0.657493,-1,-1,-1
164,-1,176.624,197.668,37.27,90.519,0.647911,-1,-1,-1
165,-1,252.083,184.123,54.221,139.97,0.993793,-1,-1,-1
165,-1,107.917,187.265,43.25,111.611,0.987297,-1,-1,-1
165,-1,312.528,185.841,41.32,132.083,0.972129,-1,-1,-1
165,-1,60.2289,225.476,36.027,68.622,0.923945,-1,-1,-1
165,-1,175.896,197.58,40.562,91.162,0.752009,-1,-1,-1
165,-1,20.5138,230.012,36.0648,56.025,0.67185,-1,-1,-1
166,-1,258.089,176.01,55.966,148.385,0.989564,-1,-1,-1
166,-1,109.314,184.233,41.551,110.991,0.989256,-1,-1,-1
166,-1,58.0888,230.759,38.1446,65.978,0.929122,-1,-1,-1
166,-1,319.216,176.82,44.558,128.198,0.842044,-1,-1,-1
166,-1,160.387,196.115,58.77,106.485,0.631682,-1,-1,-1
166,-1,28.7851,233.548,35.0178,63.449,0.507403,-1,-1,-1
167,-1,104.314,184.82,46.674,118.139,0.993111,-1,-1,-1
167,-1,255.754,172.589,60.747,153.626,0.988907,-1,-1,-1
167,-1,318.996,194.058,46.394,115.633,0.987808,-1,-1,-1
167,-1,174.458,205.023,41.13,92.987,0.865975,-1,-1,-1
167,-1,58.5834,227.445,38.2855,64.705,0.8012,-1,-1,-1
167,-1,26.5699,225.415,30.5805,59.067,0.580522,-1,-1,-1
167,-1,551.151,210.849,43.998,89.195,0.570225,-1,-1,-1
168,-1,317.132,191.952,50.175,116.521,0.989345,-1,-1,-1
168,-1,262.377,178.229,51.612,141.734,0.988884,-1,-1,-1
168,-1,103.185,183.902,46.611,117.791,0.988016,-1,-1,-1
168,-1,56.3823,222.216,42.7996,64.565,0.879382,-1,-1,-1
168,-1,176.331,192.935,47.811,102.993,0.878293,-1,-1,-1
168,-1,18.5406,234.359,36.1645,60.996,0.524865,-1,-1,-1
169,-1,259.742,181.335,52.44,132.939,0.99448,-1,-1,-1
169,-1,100.236,173.687,51.1,122.16,0.990991,-1,-1,-1
169,-1,317.365,179.844,47.163,126.55,0.98346,-1,-1,-1
169,-1,176.203,205.572,38.828,86.671,0.97894,-1,-1,-1
169,-1,50.9928,221.319,45.3757,64.332,0.950018,-1,-1,-1
170,-1,91.8142,173.359,56.0188,134.973,0.99241,-1,-1,-1
170,-1,253.336,176.148,67.294,132.588,0.989065,-1,-1,-1
170,-1,313.261,175.577,47.15,108.288,0.971456,-1,-1,-1
170,-1,53.1024,223.101,37.4571,64.975,0.968194,-1,-1,-1
170,-1,168.1,196.276,42.366,104.437,0.960798,-1,-1,-1
170,-1,18.3677,232.174,36.6164,53.725,0.510177,-1,-1,-1
171,-1,252.327,172.797,55.803,139.125,0.996244,-1,-1,-1
171,-1,87.1419,170.994,60.7961,137.857,0.991418,-1,-1,-1
171,-1,313.391,174.312,46.373,102.715,0.977263,-1,-1,-1
171,-1,47.4595,212.461,45.6625,66.311,0.955461,-1,-1,-1
171,-1,168.735,197.084,43.169,98.364,0.783019,-1,-1,-1
172,-1,254.989,174.601,52.481,141.675,0.99499,-1,-1,-1
172,-1,62.9918,170.308,92.0142,133.974,0.989488,-1,-1,-1
172,-1,315.486,177.315,47.21,121.027,0.976445,-1,-1,-1
172,-1,166.575,186.806,41.925,106.44,0.753809,-1,-1,-1
172,-1,580.421,195.504,38.174,107.139,0.749917,-1,-1,-1
172,-1,50.7359,220.792,31.6767,70.273,0.666076,-1,-1,-1
173,-1,68.1514,175.092,86.3576,144.649,0.993572,-1,-1,-1
173,-1,167.167,192.657,38.69,108.543,0.987356,-1,-1,-1
173,-1,258.327,171.082,49.99,131.022,0.985081,-1,-1,-1
173,-1,313.723,171.183,52.241,132.018,0.975737,-1,-1,-1
173,-1,584.654,193.535,41.099,100.984,0.961785,-1,-1,-1
173,-1,37.3215,224.615,44.3755,61.454,0.850111,-1,-1,-1
174,-1,254.147,178.9,54.274,133.081,0.993004,-1,-1,-1
174,-1,60.7461,184.926,87.3139,129.972,0.987435,-1,-1,-1
174,-1,167.076,183.64,40.881,117.569,0.979581,-1,-1,-1
174,-1,312.305,175.776,52.718,130.917,0.974536,-1,-1,-1
174,-1,592.769,193.229,34.32,103.322,0.829978,-1,-1,-1
175,-1,251.579,175.167,56.679,137.807,0.993718,-1,-1,-1
175,-1,313.322,173.217,48.296,137.893,0.989601,-1,-1,-1
175,-1,72.0546,161.511,71.9384,158.7,0.983323,-1,-1,-1
175,-1,160.543,177.932,43.088,108.754,0.747949,-1,-1,-1
175,-1,209.02,213.198,25.493,68.596,0.608493,-1,-1,-1
175,-1,596.301,201.873,31.939,80.912,0.543977,-1,-1,-1
176,-1,64.1966,160.083,70.0824,142.737,0.987414,-1,-1,-1
176,-1,254.15,169.565,51.43,134.262,0.986898,-1,-1,-1
176,-1,314.206,173.055,48.808,139.092,0.984545,-1,-1,-1
176,-1,157.795,184.437,46.132,114.028,0.874634,-1,-1,-1
177,-1,257.667,178.08,52.7,128.808,0.993115,-1,-1,-1
177,-1,317.35,177.772,44.372,133.747,0.982707,-1,-1,-1
177,-1,151.699,175.358,48.153,118.004,0.967453,-1,-1,-1
177,-1,47.3635,160.236,89.6695,123.263,0.875465,-1,-1,-1
177,-1,74.4192,239.31,28.7398,72.141,0.601728,-1,-1,-1
178,-1,312.751,174.353,48.899,141.251,0.983445,-1,-1,-1
178,-1,153.575,168.73,43.917,146.353,0.982645,-1,-1,-1
178,-1,55.121,152.571,56.285,149.017,0.970895,-1,-1,-1
178,-1,265.737,170.315,51.063,129.13,0.962664,-1,-1,-1
178,-1,115.614,165.419,37.865,112.253,0.799966,-1,-1,-1
178,-1,212.734,207.357,21.867,61.28,0.668199,-1,-1,-1
179,-1,310.555,173.853,52.596,140.322,0.989839,-1,-1,-1
179,-1,150.05,162.787,47.785,160.27,0.982458,-1,-1,-1
179,-1,263.318,163.051,53.42,151.944,0.968459,-1,-1,-1
179,-1,47.4558,149.743,66.6832,170.222,0.961498,-1,-1,-1
179,-1,114.732,165.083,38.712,118.272,0.754885,-1,-1,-1
179,-1,212.564,202.447,22.631,71.535,0.613378,-1,-1,-1
180,-1,312.483,176.727,46.787,129.692,0.992521,-1,-1,-1
180,-1,264.309,170.651,48.791,136.065,0.99097,-1,-1,-1
180,-1,147.478,176.893,54.021,144.493,0.985348,-1,-1,-1
180,-1,45.4309,151.091,49.3593,134.431,0.934973,-1,-1,-1
180,-1,114.791,168.682,36.932,113.485,0.724415,-1,-1,-1
180,-1,212.091,205.11,20.134,69.784,0.646722,-1,-1,-1
181,-1,147.086,167.043,50.577,147.957,0.98524,-1,-1,-1
181,-1,261.155,169.005,51.272,139.174,0.983564,-1,-1,-1
181,-1,28.1317,144.795,71.9553,135.825,0.955024,-1,-1,-1
181,-1,313.762,165.844,48.902,139.401,0.824978,-1,-1,-1
181,-1,211.701,198.152,23.576,73.055,0.652726,-1,-1,-1
181,-1,104.97,163.39,35.253,126.464,0.540024,-1,-1,-1
182,-1,19.4427,134.147,75.9129,207.776,0.993964,-1,-1,-1
182,-1,256.609,174.117,67.114,137.613,0.992075,-1,-1,-1
182,-1,137.878,167.765,59.09,144.117,0.985339,-1,-1,-1
182,-1,315.322,170.771,44.006,134.338,0.951578,-1,-1,-1
182,-1,98.7144,150.167,41.0986,135.646,0.869138,-1,-1,-1
183,-1,10.7014,139.164,71.1283,207.671,0.989023,-1,-1,-1
183,-1,256.481,166.55,53.893,148.544,0.988251,-1,-1,-1
183,-1,143.225,167.987,57.334,149.633,0.985153,-1,-1,-1
183,-1,98.1791,155.683,39.8889,149.446,0.904242,-1,-1,-1
183,-1,321.094,172.356,50.649,136.912,0.901273,-1,-1,-1
184,-1,264.123,166.502,59.858,152.728,0.990745,-1,-1,-1
184,-1,141.742,162.002,56.619,166.263,0.98026,-1,-1,-1
184,-1,22.1838,168.048,48.9062,180.634,0.92989,-1,-1,-1
184,-1,106.443,150.966,44.29,171.396,0.918114,-1,-1,-1
184,-1,318.569,169.14,45.314,138.935,0.85941,-1,-1,-1
184,-1,93.103,145.666,36.635,112.92,0.755226,-1,-1,-1
184,-1,217.915,211.069,21.47,62.295,0.523163,-1,-1,-1
184,-1,107.156,149.521,33.635,48.386,0.508096,-1,-1,-1
185,-1,261.017,173.19,59.978,137.279,0.991471,-1,-1,-1
185,-1,7.15214,110.637,66.3312,252.722,0.984032,-1,-1,-1
185,-1,136.117,160.656,55.274,184.456,0.972139,-1,-1,-1
185,-1,313.568,174.501,45.902,143.793,0.966893,-1,-1,-1
185,-1,76.4096,147.813,55.7444,106.401,0.890537,-1,-1,-1
185,-1,210.576,213.916,22.166,62.341,0.532089,-1,-1,-1
186,-1,3.83427,99.4855,60.9766,264.803,0.9905,-1,-1,-1
186,-1,264.603,170.508,46.841,140.733,0.989671,-1,-1,-1
186,-1,311.692,184.734,44.779,132.185,0.982673,-1,-1,-1
186,-1,87.7692,143.215,49.0428,200.361,0.965018,-1,-1,-1
186,-1,143.653,167.569,49.553,171.85,0.948531,-1,-1,-1
186,-1,71.0737,140.296,42.7123,124.641,0.674858,-1,-1,-1
186,-1,208.591,215.308,22.618,62.23,0.52299,-1,-1,-1
187,-1,265.61,165.367,51.801,140.751,0.989499,-1,-1,-1
187,-1,314.547,175.015,46.49,135.806,0.986341,-1,-1,-1
187,-1,136.654,157.6,61.632,164.375,0.963907,-1,-1,-1
187,-1,0.318575,102.861,62.2835,264.508,0.929835,-1,-1,-1
187,-1,86.6672,135.202,48.1348,136.055,0.869089,-1,-1,-1
187,-1,83.9073,198.067,36.8497,152.82,0.56417,-1,-1,-1
188,-1,266.355,167.313,48.01,147.988,0.990829,-1,-1,-1
188,-1,320.027,167.746,46.972,140.727,0.989827,-1,-1,-1
188,-1,132.832,155.436,64.187,187.46,0.988481,-1,-1,-1
188,-1,1.91038,118.83,50.1192,153.428,0.977467,-1,-1,-1
188,-1,75.994,144.938,45.464,154.093,0.913521,-1,-1,-1
188,-1,211.732,217.522,23.113,56.94,0.72125,-1,-1,-1
189,-1,261.011,159.144,61.317,156.223,0.993507,-1,-1,-1
189,-1,320.907,177.084,53.204,128.24,0.988528,-1,-1,-1
189,-1,122.674,154.167,74.066,192.394,0.983064,-1,-1,-1
189,-1,85.1111,131.913,42.7289,154.183,0.815183,-1,-1,-1
189,-1,3.94442,108.89,46.2876,164.206,0.77995,-1,-1,-1
190,-1,317.885,168.551,55.126,141.645,0.985522,-1,-1,-1
190,-1,129.735,147.527,65.817,212.576,0.982597,-1,-1,-1
190,-1,265.502,170.725,45.428,148.505,0.979224,-1,-1,-1
190,-1,69.2668,134.16,46.2542,98.462,0.934749,-1,-1,-1
190,-1,4.77275,139.038,32.0035,130.32,0.718577,-1,-1,-1
190,-1,213.636,213.442,26.419,53.768,0.680072,-1,-1,-1
190,-1,52.3128,142.954,47.0052,211.259,0.620157,-1,-1,-1
191,-1,260.291,166.568,56.692,162.435,0.988619,-1,-1,-1
191,-1,127.324,138.727,67.814,207.592,0.979396,-1,-1,-1
191,-1,316.845,177.913,55.828,136.315,0.977878,-1,-1,-1
191,-1,39.4556,117.718,80.2804,150.199,0.886437,-1,-1,-1
191,-1,215.673,210.948,18.73,60.411,0.655095,-1,-1,-1
191,-1,56.8829,121.86,45.9631,72.654,0.539109,-1,-1,-1
192,-1,104.013,130.159,91.241,251.626,0.991088,-1,-1,-1
192,-1,315.766,172.27,55.31,150.359,0.988923,-1,-1,-1
192,-1,264.095,169.574,53.552,160.025,0.98484,-1,-1,-1
192,-1,17.7281,115.719,82.2839,263.684,0.971447,-1,-1,-1
193,-1,6.13045,96.269,104.913,302.618,0.995475,-1,-1,-1
193,-1,321.277,180.222,59.57,137.436,0.959429,-1,-1,-1
193,-1,116.958,144.762,65.73,240.101,0.949489,-1,-1,-1
193,-1,266.867,172.991,51.378,151.906,0.912703,-1,-1,-1
193,-1,203.96,215.39,27.932,66.769,0.763946,-1,-1,-1
194,-1,321.153,181.72,53.075,136.61,0.976191,-1,-1,-1
194,-1,272.025,170.321,51.189,157.968,0.974502,-1,-1,-1
194,-1,7.60835,88.5605,108.667,305.088,0.942953,-1,-1,-1
194,-1,101.862,118.356,96.445,291.738,0.938786,-1,-1,-1
194,-1,212.17,220.52,23.583,60.741,0.781529,-1,-1,-1
195,-1,271.842,174.608,53.723,149.512,0.992125,-1,-1,-1
195,-1,89.914,119.175,102.286,298.634,0.985443,-1,-1,-1
195,-1,4.73211,87.952,85.9969,302.492,0.977206,-1,-1,-1
195,-1,316.717,164.354,64.655,141.579,0.957696,-1,-1,-1
195,-1,206.345,221.009,26.553,61.02,0.937788,-1,-1,-1
196,-1,82.3539,105.216,110.53,312.532,0.994196,-1,-1,-1
196,-1,270.906,174.211,54.524,136.445,0.994017,-1,-1,-1
196,-1,5.69665,89.8668,68.1602,297.277,0.985707,-1,-1,-1
196,-1,318.919,173.279,50.037,131.651,0.969948,-1,-1,-1
196,-1,202.83,218.458,31.586,59.941,0.952557,-1,-1,-1
197,-1,68.0085,90.5852,119.102,338.617,0.996594,-1,-1,-1
197,-1,270.774,174.13,55.922,134.724,0.994666,-1,-1,-1
197,-1,211.554,217.903,26.162,67.449,0.944205,-1,-1,-1
197,-1,13.5273,99.58,59.8698,181.299,0.919462,-1,-1,-1
197,-1,17.9675,246.21,46.2176,152.328,0.872397,-1,-1,-1
197,-1,319.39,162.346,44.993,142.382,0.828663,-1,-1,-1
198,-1,51.4213,60.7844,125.436,403.111,0.995043,-1,-1,-1
198,-1,268.364,169.794,60.481,144.962,0.99359,-1,-1,-1
198,-1,203.739,219.802,29.802,63.24,0.974132,-1,-1,-1
198,-1,332.031,219.738,43.358,102.514,0.688235,-1,-1,-1
198,-1,316.666,168.174,39.547,132.407,0.681945,-1,-1,-1
199,-1,45.4308,72.2851,124.047,378.441,0.99479,-1,-1,-1
199,-1,269.542,177.297,58.247,150.662,0.993265,-1,-1,-1
199,-1,202.154,216.441,31.222,69.207,0.950591,-1,-1,-1
199,-1,318.537,179.107,41.335,134.125,0.784368,-1,-1,-1
199,-1,341.886,203.833,41.197,108.588,0.561302,-1,-1,-1
200,-1,13.1133,61.2824,159.465,407.445,0.994689,-1,-1,-1
200,-1,268.031,176.221,62.862,148.4,0.992551,-1,-1,-1
200,-1,315.727,180.236,61.264,139.393,0.979211,-1,-1,-1
200,-1,208.108,222.868,29.296,63.22,0.873807,-1,-1,-1
200,-1,189.293,222.951,29.161,65.445,0.550444,-1,-1,-1
201,-1,0,44.1881,168.248,431.501,0.997029,-1,-1,-1
201,-1,272.276,176.445,56.654,144.559,0.989112,-1,-1,-1
201,-1,318.525,179.879,53.18,141.14,0.963959,-1,-1,-1
201,-1,209.611,218.735,30.665,69.051,0.88149,-1,-1,-1
201,-1,189.751,209.282,30.942,69.952,0.760103,-1,-1,-1
202,-1,0,28.5775,149.862,450.423,0.995576,-1,-1,-1
202,-1,263.84,181.833,58.738,139.778,0.988546,-1,-1,-1
202,-1,316.822,175.231,52.108,138.715,0.970151,-1,-1,-1
202,-1,211.251,222.612,27.684,63.817,0.959594,-1,-1,-1
202,-1,190.806,222.68,24.754,62.006,0.669443,-1,-1,-1
203,-1,7.97532,37.586,116.266,422.886,0.989185,-1,-1,-1
203,-1,264.127,179.927,55.421,139.664,0.987793,-1,-1,-1
203,-1,123.415,175.85,48.754,127.491,0.977138,-1,-1,-1
203,-1,320.007,184.768,58.4,130.909,0.976914,-1,-1,-1
203,-1,217.726,223.446,25.406,64.673,0.916487,-1,-1,-1
203,-1,198.318,219.506,30.312,60.804,0.828076,-1,-1,-1
204,-1,266.82,180.727,51.369,136.802,0.995134,-1,-1,-1
204,-1,316.693,169.633,61.476,142.602,0.933117,-1,-1,-1
204,-1,192.112,208.707,30.538,70.666,0.920237,-1,-1,-1
204,-1,112.904,165.605,65.634,126.702,0.90828,-1,-1,-1
204,-1,8.91463,52.1126,95.8424,316.07,0.905209,-1,-1,-1
204,-1,213.483,219.352,29.111,65.769,0.84269,-1,-1,-1
205,-1,272.358,174.145,54.989,142.019,0.995478,-1,-1,-1
205,-1,202.404,214.307,35.103,74.209,0.982175,-1,-1,-1
205,-1,326.082,161.809,47.289,154.199,0.930609,-1,-1,-1
205,-1,111.142,159.625,44.731,127.003,0.856517,-1,-1,-1
205,-1,48.9996,188.26,46.524,156.058,0.690807,-1,-1,-1
206,-1,273.107,174.993,49.627,127.169,0.99202,-1,-1,-1
206,-1,196.498,213.411,32.188,72.805,0.98272,-1,-1,-1
206,-1,323.975,175.891,50.595,131.746,0.960312,-1,-1,-1
206,-1,109.097,165.572,51.59,132.816,0.924377,-1,-1,-1
206,-1,47.0167,152.496,48.1955,185.923,0.923961,-1,-1,-1
206,-1,8.69916,108.061,45.2875,133.917,0.533713,-1,-1,-1
206,-1,175.471,206.681,24.954,77.912,0.530757,-1,-1,-1
207,-1,270.317,171.406,52.119,138.767,0.994102,-1,-1,-1
207,-1,318.476,183.894,64.091,115.28,0.987921,-1,-1,-1
207,-1,191.193,215.904,31.026,70.785,0.966498,-1,-1,-1
207,-1,40.8531,168.785,55.4961,185.693,0.947993,-1,-1,-1
207,-1,111.258,166.305,47.223,121.881,0.933783,-1,-1,-1
207,-1,158.862,205.879,24.238,74.538,0.622161,-1,-1,-1
207,-1,213.204,214.748,24.697,72.438,0.59436,-1,-1,-1
207,-1,17.8532,156.99,45.3846,124.323,0.505187,-1,-1,-1
208,-1,318.277,185.373,66.801,112.88,0.993743,-1,-1,-1
208,-1,273.172,174.595,45.861,133.921,0.993281,-1,-1,-1
208,-1,87.7595,165.629,64.4595,125.124,0.988294,-1,-1,-1
208,-1,196.361,209.306,31.571,78.214,0.972742,-1,-1,-1
208,-1,16.3074,152.274,39.5052,120.917,0.657343,-1,-1,-1
208,-1,64.9197,166.416,45.1623,115.87,0.639175,-1,-1,-1
208,-1,160.734,198.761,23.26,85.432,0.602752,-1,-1,-1
208,-1,28.9573,150.195,59.686,162.7,0.54981,-1,-1,-1
209,-1,17.9229,146.042,64.462,191.699,0.990689,-1,-1,-1
209,-1,314.568,179.769,63.467,128.226,0.989081,-1,-1,-1
209,-1,276.283,182.427,44.025,136.615,0.988947,-1,-1,-1
209,-1,88.145,163.093,63.278,148.003,0.987027,-1,-1,-1
209,-1,194.64,218.826,33.374,69.971,0.968482,-1,-1,-1
209,-1,161.779,205.376,21.632,81.749,0.565652,-1,-1,-1
210,-1,314.021,176.634,69.301,145.176,0.989631,-1,-1,-1
210,-1,277.094,184.083,45.84,140.023,0.982135,-1,-1,-1
210,-1,86.5605,156.812,61.4465,161.248,0.9639,-1,-1,-1
210,-1,24.6042,145.741,58.8772,182.273,0.958238,-1,-1,-1
210,-1,194.853,219.208,32.114,71.542,0.954023,-1,-1,-1
210,-1,215.268,218.993,26.171,69.879,0.866375,-1,-1,-1
211,-1,272.019,175.014,49.616,143.382,0.98259,-1,-1,-1
211,-1,15.7293,140.576,57.1242,147.348,0.973147,-1,-1,-1
211,-1,186.116,213.686,33.769,73.053,0.961334,-1,-1,-1
211,-1,322.04,176.643,50.615,142.679,0.958314,-1,-1,-1
211,-1,75.3058,155.568,78.9342,156.157,0.948743,-1,-1,-1
211,-1,218.216,212.449,24.475,73.236,0.860088,-1,-1,-1
211,-1,161.221,207.771,25.895,77.614,0.729793,-1,-1,-1
211,-1,174.885,218.415,24.247,55.188,0.531004,-1,-1,-1
211,-1,510.334,162.171,52.419,99.928,0.502029,-1,-1,-1
212,-1,322.806,192.226,57.481,121.506,0.99231,-1,-1,-1
212,-1,278.093,180.559,51.625,126.294,0.989292,-1,-1,-1
212,-1,188.029,212.946,31.503,70.396,0.950987,-1,-1,-1
212,-1,9.78412,130.977,60.6453,142.586,0.945459,-1,-1,-1
212,-1,154.678,205.082,28.951,77.45,0.940707,-1,-1,-1
212,-1,69.423,157.946,60.91,200.285,0.896366,-1,-1,-1
212,-1,218.981,205.538,25.609,81.911,0.856654,-1,-1,-1
212,-1,518.216,172.917,45.857,100.881,0.79634,-1,-1,-1
213,-1,333.155,182.468,48.78,131.004,0.992665,-1,-1,-1
213,-1,281.557,178.171,49.319,130.999,0.989033,-1,-1,-1
213,-1,187.232,209.502,36.722,75.314,0.969722,-1,-1,-1
213,-1,4.42557,129.704,55.4885,149.553,0.953326,-1,-1,-1
213,-1,159.997,206.997,21.572,70.579,0.910861,-1,-1,-1
213,-1,78.8334,128.333,55.6186,193.57,0.865283,-1,-1,-1
213,-1,221.705,209.373,26.661,74.212,0.752063,-1,-1,-1
214,-1,321.108,184.92,53.338,125.733,0.992302,-1,-1,-1
214,-1,284.083,176.239,47.143,137.916,0.978193,-1,-1,-1
214,-1,157.169,201.146,26.04,79.68,0.960144,-1,-1,-1
214,-1,184.567,207.886,30.826,69.759,0.93803,-1,-1,-1
214,-1,217.64,215.114,29.231,72.419,0.93099,-1,-1,-1
214,-1,524.601,159.409,50.504,145.415,0.88216,-1,-1,-1
214,-1,47.4814,124.578,86.7696,159.289,0.85417,-1,-1,-1
214,-1,9.09812,126.671,59.776,137.459,0.843622,-1,-1,-1
214,-1,7.99312,243.598,35.3991,114.192,0.546097,-1,-1,-1
215,-1,277.152,165.342,48.967,156.236,0.977599,-1,-1,-1
215,-1,327.206,176.422,46.163,129.277,0.965131,-1,-1,-1
215,-1,39.4467,121.269,88.1053,191.449,0.956049,-1,-1,-1
215,-1,219.051,213.774,31.931,70.355,0.942705,-1,-1,-1
215,-1,532.006,164.462,49.67,133.913,0.929791,-1,-1,-1
215,-1,156.825,209.337,27.683,73.52,0.926023,-1,-1,-1
215,-1,184.096,207.9,31.609,78.621,0.889012,-1,-1,-1
215,-1,7.18505,120.79,56.8088,149.134,0.697734,-1,-1,-1
216,-1,282.377,169.73,51.592,153.96,0.992755,-1,-1,-1
216,-1,18.5561,112.466,104.926,264.206,0.988429,-1,-1,-1
216,-1,336.527,180.816,49.447,134.287,0.970358,-1,-1,-1
216,-1,180.439,200.737,39.716,86.004,0.961951,-1,-1,-1
216,-1,220.466,217.435,29.211,71.155,0.945965,-1,-1,-1
216,-1,536.592,168.686,58.973,113.503,0.912011,-1,-1,-1
216,-1,151.991,209.308,32.718,74.965,0.871579,-1,-1,-1
216,-1,2.26823,116.751,43.1642,125.689,0.590895,-1,-1,-1
216,-1,36.7242,110.511,66.3418,115.158,0.551498,-1,-1,-1
217,-1,282.009,170.231,55.495,149.541,0.994073,-1,-1,-1
217,-1,10.1218,117.235,113.851,172.54,0.991155,-1,-1,-1
217,-1,332.863,178.133,45.789,142.81,0.981881,-1,-1,-1
217,-1,149.883,208.757,36.19,79.244,0.980178,-1,-1,-1
217,-1,220.024,217.545,27.651,70.464,0.93581,-1,-1,-1
217,-1,182.093,207.191,32.862,85.39,0.83396,-1,-1,-1
217,-1,541.082,169.749,68.559,124.557,0.831889,-1,-1,-1
218,-1,286.089,175.36,54.947,151.714,0.99119,-1,-1,-1
218,-1,6.37972,101.074,93.1538,312.977,0.986559,-1,-1,-1
218,-1,150.939,205.619,33.022,83.683,0.986283,-1,-1,-1
218,-1,184.54,216.088,30.78,78.414,0.961856,-1,-1,-1
218,-1,332.977,184.989,49.375,134.332,0.950802,-1,-1,-1
218,-1,220.954,214.19,34.779,81.986,0.941225,-1,-1,-1
218,-1,11.5373,109.257,61.382,141.056,0.755043,-1,-1,-1
218,-1,553.193,162.799,58.058,143.041,0.676273,-1,-1,-1
219,-1,2.63266,89.1605,95.8098,326.918,0.997691,-1,-1,-1
219,-1,153.879,202.385,29.534,87.329,0.981557,-1,-1,-1
219,-1,288.147,175.972,46.512,148.558,0.979289,-1,-1,-1
219,-1,335.579,187.143,57.254,123.119,0.928638,-1,-1,-1
219,-1,196.811,201.513,27.158,80.947,0.915741,-1,-1,-1
219,-1,225.636,213.078,33.67,73.6,0.879142,-1,-1,-1
219,-1,549.508,160.725,77.523,128.131,0.796576,-1,-1,-1
219,-1,14.6974,111.01,62.3981,110.275,0.513057,-1,-1,-1
220,-1,1.08283,93.9101,79.5188,350.695,0.989021,-1,-1,-1
220,-1,156.786,208.382,29.895,71.794,0.983283,-1,-1,-1
220,-1,286.259,176.793,45.214,142.739,0.976399,-1,-1,-1
220,-1,340.406,184.035,40.113,140.689,0.928115,-1,-1,-1
220,-1,556.471,156.507,67.357,141.194,0.924306,-1,-1,-1
220,-1,186.796,204.263,27.692,84.412,0.921716,-1,-1,-1
220,-1,225.564,216.132,29.984,76.308,0.79244,-1,-1,-1
220,-1,2.93236,97.1627,58.4215,136.67,0.604366,-1,-1,-1
220,-1,39.4779,158.845,48.9754,196.453,0.549027,-1,-1,-1
221,-1,278.136,178.974,51.6,149.213,0.986353,-1,-1,-1
221,-1,10.3913,141.273,64.9598,201.867,0.974151,-1,-1,-1
221,-1,337.655,179.931,45.723,139.804,0.947126,-1,-1,-1
221,-1,222.364,221.3,26.116,76.336,0.943437,-1,-1,-1
221,-1,150.624,205.529,31.654,78.264,0.928774,-1,-1,-1
221,-1,183.217,198.141,31.405,91.323,0.824835,-1,-1,-1
221,-1,203.84,213.593,31.506,83.651,0.70811,-1,-1,-1
221,-1,571.897,154.476,51.995,132.4,0.697592,-1,-1,-1
222,-1,284.467,174.343,55.289,142.009,0.98503,-1,-1,-1
222,-1,144.212,201.271,36.617,83.11,0.977202,-1,-1,-1
222,-1,5.54818,148.727,60.962,165.134,0.976061,-1,-1,-1
222,-1,223.042,213.619,27.74,71.249,0.950116,-1,-1,-1
222,-1,572.129,160.261,56.895,132.921,0.875375,-1,-1,-1
222,-1,331.793,171.794,46.893,149.302,0.848724,-1,-1,-1
222,-1,183.566,202.477,29.478,90.514,0.755917,-1,-1,-1
223,-1,222.305,207.842,29.93,88.642,0.973418,-1,-1,-1
223,-1,281.132,165.996,62.744,116.381,0.971262,-1,-1,-1
223,-1,348.646,169.68,37.176,151.189,0.964409,-1,-1,-1
223,-1,578.906,157.166,53.541,131.36,0.943284,-1,-1,-1
223,-1,180.954,200.704,38.916,89.521,0.900407,-1,-1,-1
223,-1,2.48774,126.847,49.6052,139.566,0.898439,-1,-1,-1
223,-1,146.723,207.074,28.927,83.599,0.84428,-1,-1,-1
223,-1,7.00231,203.867,33.16,109.845,0.522918,-1,-1,-1
224,-1,287.344,174.528,52.493,131.267,0.989035,-1,-1,-1
224,-1,215.732,211.047,41.569,92.424,0.971945,-1,-1,-1
224,-1,336.961,180.673,56.351,126.93,0.93845,-1,-1,-1
224,-1,142.968,206.269,30.776,92.153,0.862104,-1,-1,-1
224,-1,581.297,161.175,53.747,132.786,0.827467,-1,-1,-1
224,-1,3.71785,102.102,49.0626,145.846,0.748593,-1,-1,-1
224,-1,181.693,194.325,32.06,102.025,0.666846,-1,-1,-1
224,-1,67.3844,235.191,22.6661,43.327,0.512634,-1,-1,-1
225,-1,335.891,176.365,52.124,143.049,0.979663,-1,-1,-1
225,-1,581.062,156.137,55.492,138.384,0.962281,-1,-1,-1
225,-1,289.281,172.325,43.384,140.797,0.959076,-1,-1,-1
225,-1,136.294,203.041,32.69,84.605,0.943538,-1,-1,-1
225,-1,205.928,209.807,39.527,87.299,0.901984,-1,-1,-1
225,-1,187.94,196.737,33.993,102.151,0.874307,-1,-1,-1
226,-1,284.757,176.999,56.939,137.117,0.989305,-1,-1,-1
226,-1,591.185,157.917,47.815,147.123,0.988146,-1,-1,-1
226,-1,134.052,196.379,37.161,101.212,0.985364,-1,-1,-1
226,-1,205.66,209.335,40.775,86.745,0.968405,-1,-1,-1
226,-1,335.664,180.925,48.897,132.811,0.960385,-1,-1,-1
227,-1,592.725,158.695,43.586,131.337,0.986604,-1,-1,-1
227,-1,338.547,175.441,49.792,139.121,0.981093,-1,-1,-1
227,-1,275.451,174.638,68.891,117.28,0.976266,-1,-1,-1
227,-1,207.177,211.548,36.493,90.273,0.975885,-1,-1,-1
227,-1,130.647,205.966,33.509,96.779,0.971768,-1,-1,-1
227,-1,170.652,198.875,40.439,100.716,0.904611,-1,-1,-1
228,-1,170.653,199.171,39.75,103.064,0.981586,-1,-1,-1
228,-1,286.91,172.996,47.382,133.713,0.979264,-1,-1,-1
228,-1,336.977,189.979,50.304,124.602,0.96986,-1,-1,-1
228,-1,205.199,207.894,33.403,96.969,0.964555,-1,-1,-1
228,-1,127.093,187.144,33.349,114.964,0.955277,-1,-1,-1
228,-1,56.3109,224.791,21.9913,52.684,0.934346,-1,-1,-1
228,-1,602.982,162.09,36.018,121.737,0.920478,-1,-1,-1
228,-1,228.131,213.965,26.36,87.636,0.905285,-1,-1,-1
229,-1,124.578,197.529,36.167,103.625,0.98472,-1,-1,-1
229,-1,340.505,180.842,46.629,125.613,0.977754,-1,-1,-1
229,-1,285.443,172.258,46.777,135.059,0.970021,-1,-1,-1
229,-1,56.0089,232.739,23.4815,43.13,0.959866,-1,-1,-1
229,-1,199.111,206.896,32.517,95.919,0.945054,-1,-1,-1
229,-1,232.515,208,27.417,94.515,0.928651,-1,-1,-1
229,-1,165.405,191.498,38.651,110.403,0.88535,-1,-1,-1
230,-1,340.453,184.098,40.025,127.097,0.982793,-1,-1,-1
230,-1,118.638,200.283,35.938,101.416,0.981036,-1,-1,-1
230,-1,294.139,180.368,48.499,126.355,0.978194,-1,-1,-1
230,-1,200.266,204.389,35.28,97.25,0.970959,-1,-1,-1
230,-1,60.1546,234.011,17.207,34.898,0.932242,-1,-1,-1
230,-1,161.059,191.186,30.328,104.775,0.904954,-1,-1,-1
230,-1,234.124,203.912,26.277,101.602,0.825323,-1,-1,-1
230,-1,279.779,176.016,30.931,108.714,0.534743,-1,-1,-1
231,-1,339.913,173.4,45.212,132.895,0.985702,-1,-1,-1
231,-1,117.944,192.354,37.496,106.654,0.984674,-1,-1,-1
231,-1,290.29,168.25,51.985,145.14,0.970062,-1,-1,-1
231,-1,158.212,193.274,33.872,104.566,0.948574,-1,-1,-1
231,-1,190.962,199.823,35.639,102.377,0.946189,-1,-1,-1
231,-1,57.7077,230.617,19.0529,38.194,0.938447,-1,-1,-1
231,-1,234.378,197.697,26.282,103.157,0.881835,-1,-1,-1
232,-1,297.942,178.235,46.481,135.76,0.983025,-1,-1,-1
232,-1,108.099,187.524,40.003,121.77,0.975924,-1,-1,-1
232,-1,341.588,171.803,39.198,145.352,0.973397,-1,-1,-1
232,-1,196.774,207.724,32.801,95.707,0.948144,-1,-1,-1
232,-1,231.555,221.553,27.212,84.098,0.83977,-1,-1,-1
232,-1,154.158,188.65,33.286,119.035,0.834876,-1,-1,-1
233,-1,338.576,173.622,44.939,145.181,0.985519,-1,-1,-1
233,-1,181.73,201.786,38.995,105.176,0.981581,-1,-1,-1
233,-1,292.8,172.766,49.855,147.543,0.974506,-1,-1,-1
233,-1,48.2233,217.803,23.8091,48.049,0.969592,-1,-1,-1
233,-1,107.018,193.422,38.137,109.076,0.94773,-1,-1,-1
233,-1,230.458,221.505,28.37,88.016,0.887329,-1,-1,-1
234,-1,337.505,175.459,52.558,152.315,0.987053,-1,-1,-1
234,-1,291.385,166.561,51.342,153.386,0.985571,-1,-1,-1
234,-1,181.859,198.451,39.042,109.565,0.973642,-1,-1,-1
234,-1,50.4629,217.528,22.4249,54.097,0.96396,-1,-1,-1
234,-1,97.7084,197.076,26.5986,70.94,0.942552,-1,-1,-1
234,-1,227.796,208.797,33.472,104.348,0.93029,-1,-1,-1
234,-1,111.484,187.859,30.473,96.7,0.893011,-1,-1,-1
235,-1,341.464,182.245,47.043,138.575,0.987591,-1,-1,-1
235,-1,292.876,175.698,46.047,149.668,0.9818,-1,-1,-1
235,-1,181.729,200.029,41.464,117.538,0.973113,-1,-1,-1
235,-1,95.9679,185.189,40.0761,110.109,0.95504,-1,-1,-1
235,-1,138.516,194.974,39.757,110.685,0.921718,-1,-1,-1
235,-1,235.426,212.726,29.371,103.791,0.911525,-1,-1,-1
235,-1,49.8538,222.832,23.8765,52.408,0.811057,-1,-1,-1
236,-1,87.2522,189.696,51.2438,117.147,0.989181,-1,-1,-1
236,-1,180.618,202.954,40.304,110.756,0.98374,-1,-1,-1
236,-1,293.015,171.325,49.442,153.675,0.977332,-1,-1,-1
236,-1,342.378,179.842,39.695,149.322,0.963671,-1,-1,-1
236,-1,228.436,217.21,36.241,93.964,0.957189,-1,-1,-1
236,-1,140.687,183.992,37.204,121.3,0.863819,-1,-1,-1
236,-1,46.5452,216.801,28.7087,59.231,0.768475,-1,-1,-1
237,-1,85.2735,189.266,42.9715,123.828,0.987131,-1,-1,-1
237,-1,179.601,206.232,38.463,111.363,0.984285,-1,-1,-1
237,-1,295.598,175.059,47.26,152.477,0.979395,-1,-1,-1
237,-1,341.293,179.405,39.912,147.303,0.976305,-1,-1,-1
237,-1,225.813,218.853,35.951,93.559,0.969229,-1,-1,-1
237,-1,139.486,193.792,38.347,122.603,0.893542,-1,-1,-1
238,-1,282.976,176.309,56.256,134.918,0.991998,-1,-1,-1
238,-1,81.0836,194.017,50.7954,122.083,0.984506,-1,-1,-1
238,-1,172.799,202.166,39.291,119.585,0.972367,-1,-1,-1
238,-1,341.305,177.381,35.215,136.98,0.963742,-1,-1,-1
238,-1,223.092,192.865,40.092,124.685,0.917168,-1,-1,-1
238,-1,141.394,195.428,31.747,113.272,0.754513,-1,-1,-1
239,-1,68.596,180.761,54.842,134.143,0.994416,-1,-1,-1
239,-1,282.06,172.142,56.369,121.585,0.988237,-1,-1,-1
239,-1,172.872,194.116,40.308,126.263,0.981703,-1,-1,-1
239,-1,340.416,180.304,38.107,126.844,0.972099,-1,-1,-1
239,-1,225.529,193.45,34.518,122.451,0.952703,-1,-1,-1
239,-1,134.174,197.243,36.476,111.96,0.87513,-1,-1,-1
239,-1,409.803,185.076,37.591,123.664,0.557437,-1,-1,-1
240,-1,64.276,176.861,62.523,141.203,0.997498,-1,-1,-1
240,-1,285.715,165.625,57.608,131.695,0.987993,-1,-1,-1
240,-1,341.213,176.13,38.626,128.191,0.982847,-1,-1,-1
240,-1,129.332,191.116,39.667,128.379,0.953277,-1,-1,-1
240,-1,166.37,187.15,43.82,134.978,0.940702,-1,-1,-1
240,-1,224.859,203.934,37.434,108.877,0.91846,-1,-1,-1
240,-1,411.905,182.518,35.181,134.534,0.656805,-1,-1,-1
241,-1,62.1568,179.973,57.7712,130.737,0.993365,-1,-1,-1
241,-1,281.579,178.403,55.031,133.26,0.991175,-1,-1,-1
241,-1,336.485,186.351,42.92,133.652,0.987084,-1,-1,-1
241,-1,223.904,197.775,37.764,121.983,0.952749,-1,-1,-1
241,-1,162.168,186.557,37.299,138.644,0.939801,-1,-1,-1
241,-1,124.885,180.852,39.888,131.258,0.91931,-1,-1,-1
241,-1,405.296,172.914,36.564,144.747,0.569614,-1,-1,-1
242,-1,281.965,179.373,51.248,130.321,0.988287,-1,-1,-1
242,-1,61.0327,179.927,43.7733,137.687,0.987641,-1,-1,-1
242,-1,343.228,184.275,42.443,133.173,0.981273,-1,-1,-1
242,-1,216.848,211.222,37.962,106.248,0.97667,-1,-1,-1
242,-1,164.469,189.251,38.918,125.116,0.953427,-1,-1,-1
242,-1,120.662,184.937,41.159,129.577,0.943176,-1,-1,-1
243,-1,51.2245,180.086,44.356,136.084,0.984525,-1,-1,-1
243,-1,283.732,179.39,52.86,148.927,0.979311,-1,-1,-1
243,-1,217.301,199.384,40.739,123.811,0.978836,-1,-1,-1
243,-1,343.032,178.117,46.001,130.514,0.975144,-1,-1,-1
243,-1,160.617,185.718,39.319,126.705,0.940487,-1,-1,-1
243,-1,122.536,182.111,45.024,131.733,0.937265,-1,-1,-1
243,-1,165.287,193.998,26.194,53.742,0.607428,-1,-1,-1
243,-1,415.665,184.245,40.135,139.603,0.588525,-1,-1,-1
244,-1,328.432,183.77,48.197,157.339,0.992482,-1,-1,-1
244,-1,286.62,179.606,54.106,144.365,0.987897,-1,-1,-1
244,-1,37.4651,188.658,65.8419,141.037,0.977472,-1,-1,-1
244,-1,217.141,213.595,37.743,104.665,0.958859,-1,-1,-1
244,-1,417.916,191.51,40.728,133.851,0.892111,-1,-1,-1
244,-1,150.716,196.776,46.631,148.367,0.848746,-1,-1,-1
244,-1,112.285,186.425,47.679,153.848,0.736095,-1,-1,-1
245,-1,329.751,182.2,48.998,152.172,0.990709,-1,-1,-1
245,-1,283.765,181.613,50.501,136.028,0.984748,-1,-1,-1
245,-1,26.8105,184.649,45.6805,129.67,0.97633,-1,-1,-1
245,-1,106.539,187.036,46.563,152.197,0.975093,-1,-1,-1
245,-1,215.594,197.574,35.137,124.187,0.911133,-1,-1,-1
245,-1,131.548,190.278,56.156,139.721,0.907428,-1,-1,-1
245,-1,418.35,186.07,36.688,137.574,0.643499,-1,-1,-1
245,-1,121.04,174.341,36.679,59.918,0.522469,-1,-1,-1
246,-1,330.105,189.692,48.417,139.056,0.992081,-1,-1,-1
246,-1,292.61,183.2,50.778,134.015,0.98101,-1,-1,-1
246,-1,132.344,186.044,61.338,156.757,0.966942,-1,-1,-1
246,-1,212.679,197.661,34.096,128.535,0.925978,-1,-1,-1
246,-1,14.8897,177.514,47.2118,126.268,0.85779,-1,-1,-1
246,-1,102.056,172.195,45.838,148.376,0.851031,-1,-1,-1
246,-1,417.815,181.614,36.819,137.516,0.828154,-1,-1,-1
246,-1,113.161,171.756,28.945,52.352,0.68385,-1,-1,-1
247,-1,335.157,177.13,42.481,150.902,0.986723,-1,-1,-1
247,-1,422.366,190.924,40.378,116.647,0.97772,-1,-1,-1
247,-1,94.1255,167.377,61.2615,178.138,0.974758,-1,-1,-1
247,-1,293.345,175.762,44.324,143.805,0.962527,-1,-1,-1
247,-1,205.605,190.698,44.636,143.769,0.929104,-1,-1,-1
247,-1,138.64,192.266,45.245,156.746,0.884686,-1,-1,-1
247,-1,106.306,167.351,29.859,54.501,0.656087,-1,-1,-1
247,-1,3.62312,186.321,52.0563,136.233,0.637332,-1,-1,-1
247,-1,147.097,167.918,44.171,92.421,0.604371,-1,-1,-1
248,-1,289.578,170.362,50.921,144.446,0.990569,-1,-1,-1
248,-1,89.3739,164.905,70.0201,161.707,0.984628,-1,-1,-1
248,-1,338.404,176.958,35.589,128.502,0.973093,-1,-1,-1
248,-1,199.978,180.704,52.278,159.177,0.936296,-1,-1,-1
248,-1,8.81203,192.374,48.2183,137.829,0.925897,-1,-1,-1
248,-1,414.46,164.001,52.772,155.261,0.624769,-1,-1,-1
248,-1,142.149,195.526,42.968,150.105,0.538924,-1,-1,-1
249,-1,288.636,176.305,47.007,142.304,0.980976,-1,-1,-1
249,-1,334.982,181.269,39.178,133.14,0.977512,-1,-1,-1
249,-1,79.3819,163.159,65.3241,173.539,0.971874,-1,-1,-1
249,-1,203.774,180.376,44.212,157.128,0.969014,-1,-1,-1
249,-1,17.558,186.32,45.9861,132.79,0.954888,-1,-1,-1
249,-1,133.08,168.565,41.573,108.949,0.692795,-1,-1,-1
249,-1,425.395,175.716,40.907,142.512,0.632509,-1,-1,-1
249,-1,82.2608,155.856,42.9922,76.8,0.620435,-1,-1,-1
250,-1,281.953,171.211,59.611,154.572,0.988217,-1,-1,-1
250,-1,338.933,178.887,38.422,142.394,0.976461,-1,-1,-1
250,-1,66.34,161.452,96.831,187.879,0.956871,-1,-1,-1
250,-1,200.883,211.204,41.302,122.256,0.902087,-1,-1,-1
250,-1,119.088,169.465,47.775,113.339,0.877182,-1,-1,-1
250,-1,429.779,193.53,35.653,114.428,0.754668,-1,-1,-1
250,-1,15.3069,177.981,39.8572,130.466,0.689042,-1,-1,-1
251,-1,282.812,173.825,59.204,141.362,0.989879,-1,-1,-1
251,-1,337.208,185.881,40.637,131.331,0.970508,-1,-1,-1
251,-1,192.03,176.786,46.928,169.267,0.949215,-1,-1,-1
251,-1,59.2777,150.448,93.4373,208.344,0.945383,-1,-1,-1
251,-1,118.66,163.716,41.104,96.523,0.859923,-1,-1,-1
251,-1,432.956,191.936,34.624,115.685,0.858865,-1,-1,-1
251,-1,9.59114,184.54,30.4237,94.018,0.647314,-1,-1,-1
251,-1,72.6327,150.979,41.2793,63.425,0.594894,-1,-1,-1
252,-1,282.922,184.652,52.596,144.11,0.985753,-1,-1,-1
252,-1,79.0872,159.996,84.4708,197.308,0.978836,-1,-1,-1
252,-1,187.563,169.973,52.557,191.828,0.976199,-1,-1,-1
252,-1,341.706,182.514,38.732,144.419,0.95572,-1,-1,-1
252,-1,433.088,195.242,33.375,113.338,0.805705,-1,-1,-1
252,-1,100.834,159.19,48.383,92.086,0.769295,-1,-1,-1
253,-1,285.228,183.39,52.02,141.854,0.980139,-1,-1,-1
253,-1,190.386,170.789,52.399,163.304,0.965003,-1,-1,-1
253,-1,337.903,178.291,39.301,146.894,0.949846,-1,-1,-1
253,-1,30.3387,142.765,97.9223,216.124,0.939986,-1,-1,-1
253,-1,96.9872,149.18,50.8198,108.528,0.924921,-1,-1,-1
253,-1,40.0276,145.073,33.8667,60.634,0.656295,-1,-1,-1
254,-1,285.906,180.081,48.254,149.557,0.989525,-1,-1,-1
254,-1,88.2623,152.285,51.4567,109.276,0.986984,-1,-1,-1
254,-1,334.378,185.348,42.229,130.356,0.986549,-1,-1,-1
254,-1,186.466,172.27,54.254,165.66,0.970141,-1,-1,-1
254,-1,23.5456,139.274,44.6209,56.728,0.909265,-1,-1,-1
254,-1,35.0709,131.29,106.438,236.437,0.822449,-1,-1,-1
255,-1,281.374,178.562,56.825,142.05,0.994788,-1,-1,-1
255,-1,176.332,160.713,66.169,180.962,0.990242,-1,-1,-1
255,-1,334.333,182.15,39.273,136.048,0.983935,-1,-1,-1
255,-1,62.4374,150.26,76.1286,125.026,0.973972,-1,-1,-1
255,-1,10.9913,126.665,101.454,246.906,0.903733,-1,-1,-1
255,-1,11.7374,136.69,45.7174,61.338,0.895883,-1,-1,-1
256,-1,183.373,165.648,56.463,166.661,0.991933,-1,-1,-1
256,-1,283.639,173.221,46.926,155.353,0.988725,-1,-1,-1
256,-1,58.3564,148.513,78.8636,142.222,0.93895,-1,-1,-1
256,-1,4.65445,124.273,43.859,69.551,0.92073,-1,-1,-1
256,-1,12.8423,140.118,96.0817,230.63,0.900632,-1,-1,-1
256,-1,333.103,190.728,39.973,130.205,0.823472,-1,-1,-1
257,-1,282.162,169.25,60.019,150.265,0.995746,-1,-1,-1
257,-1,179.474,159.796,44.469,185.094,0.978622,-1,-1,-1
257,-1,332.478,172.794,43.319,137.82,0.974836,-1,-1,-1
257,-1,56.1672,139.415,65.2638,151.273,0.967331,-1,-1,-1
257,-1,5.33602,142.298,57.4984,209.61,0.924903,-1,-1,-1
257,-1,0,123.029,42.6273,69.846,0.730492,-1,-1,-1
258,-1,283.884,175.939,56.351,149.923,0.99326,-1,-1,-1
258,-1,175.487,169.114,48.465,174.032,0.990459,-1,-1,-1
258,-1,6.15413,150.075,58.1553,180.961,0.954855,-1,-1,-1
258,-1,333.563,176.732,40.116,137.423,0.928209,-1,-1,-1
258,-1,51.0914,141.247,62.0326,129.45,0.912904,-1,-1,-1
258,-1,17.8394,126.874,105.429,257.669,0.586487,-1,-1,-1
259,-1,163.716,170.102,68.891,170.494,0.992522,-1,-1,-1
259,-1,285.154,178.637,49.307,150.975,0.991959,-1,-1,-1
259,-1,327.662,180.847,47.626,128.672,0.98147,-1,-1,-1
259,-1,38.7251,142.563,76.9089,128.952,0.977854,-1,-1,-1
260,-1,164.812,164.766,56.071,183.887,0.992274,-1,-1,-1
260,-1,283.564,186.996,51.884,143.725,0.983259,-1,-1,-1
260,-1,329.754,183.139,42.421,138.696,0.973216,-1,-1,-1
260,-1,39.3143,145.13,58.1282,120.904,0.970797,-1,-1,-1
260,-1,4.36912,169.937,38.5557,118.841,0.918458,-1,-1,-1
260,-1,16.7498,136.597,94.6452,266.64,0.584824,-1,-1,-1
261,-1,281.394,182.063,47.899,156.024,0.981419,-1,-1,-1
261,-1,11.9711,137.391,86.6956,176.027,0.969336,-1,-1,-1
261,-1,160.434,161.981,60.223,199.444,0.964823,-1,-1,-1
261,-1,334.433,183.174,39.655,145.773,0.883255,-1,-1,-1
262,-1,273.862,186.171,52.874,156.684,0.986868,-1,-1,-1
262,-1,162.719,163.802,60.806,214.212,0.983456,-1,-1,-1
262,-1,326.607,193.364,41.892,131.461,0.980918,-1,-1,-1
262,-1,7.81907,122.181,82.9721,309.471,0.975114,-1,-1,-1
262,-1,16.7667,148.565,58.8276,126.516,0.825913,-1,-1,-1
263,-1,0,119.84,91.7703,177.841,0.998105,-1,-1,-1
263,-1,275.767,187.383,47.22,148.702,0.990153,-1,-1,-1
263,-1,155.722,155.744,65.623,222.337,0.989505,-1,-1,-1
263,-1,328.677,190.543,39.18,132.564,0.971594,-1,-1,-1
264,-1,269.436,174.049,54.236,160.856,0.992827,-1,-1,-1
264,-1,328.074,191.687,38.771,130.995,0.984505,-1,-1,-1
264,-1,149.409,159.472,67.27,209.962,0.978037,-1,-1,-1
264,-1,0,144.088,91.1885,132.918,0.886729,-1,-1,-1
265,-1,265.286,187.092,57.503,139.72,0.995081,-1,-1,-1
265,-1,145.265,141.208,81.853,234.606,0.993344,-1,-1,-1
265,-1,327.276,187.622,42.354,126.163,0.982454,-1,-1,-1
265,-1,2.38127,141.035,82.3001,137.135,0.567802,-1,-1,-1
266,-1,269.673,178.46,56.487,150.741,0.99459,-1,-1,-1
266,-1,143.385,157.226,79.702,227.364,0.988818,-1,-1,-1
266,-1,327.147,187.116,44.428,140.381,0.977248,-1,-1,-1
266,-1,2.43674,132.6,80.4127,167.788,0.959989,-1,-1,-1
267,-1,134.855,144.729,85.524,247.715,0.994705,-1,-1,-1
267,-1,267.472,171.529,54.167,146.968,0.989914,-1,-1,-1
267,-1,327.372,184.367,40.838,137.13,0.968747,-1,-1,-1
267,-1,0.00691223,134.833,63.5383,169.129,0.897502,-1,-1,-1
268,-1,136.485,137.484,85.533,249.677,0.994779,-1,-1,-1
268,-1,264.135,179.35,59.669,145.239,0.991897,-1,-1,-1
268,-1,329.803,192.303,38.955,137.336,0.979994,-1,-1,-1
269,-1,321.186,191.798,40.828,133.632,0.991765,-1,-1,-1
269,-1,267.747,174.393,62.12,157.957,0.991613,-1,-1,-1
269,-1,129.764,121.802,83.054,271.936,0.987295,-1,-1,-1
270,-1,120.033,129.196,100.089,270.713,0.996663,-1,-1,-1
270,-1,268.998,172.97,52.667,151.492,0.987987,-1,-1,-1
270,-1,321.794,180.606,46.502,147.597,0.964528,-1,-1,-1
271,-1,115.833,106.538,98.457,301.228,0.995508,-1,-1,-1
271,-1,268.164,174.931,60.113,150.918,0.989668,-1,-1,-1
271,-1,321.254,187.362,48.642,134.699,0.987064,-1,-1,-1
272,-1,267.12,170.307,52.258,147.418,0.994415,-1,-1,-1
272,-1,112.979,122.251,93.733,284.677,0.993567,-1,-1,-1
272,-1,327.529,184.851,37.586,121.375,0.990107,-1,-1,-1
273,-1,108.089,107.7,101.804,306.051,0.996265,-1,-1,-1
273,-1,266.306,176.334,61.892,146.795,0.995769,-1,-1,-1
273,-1,321.982,178.677,41.953,134.928,0.992157,-1,-1,-1
274,-1,265.304,169.877,50.866,153.639,0.994646,-1,-1,-1
274,-1,98.2451,99.9966,96.8869,323.198,0.992091,-1,-1,-1
274,-1,316.536,181.11,53.979,136.474,0.963761,-1,-1,-1
275,-1,84.5114,103.262,110.452,318.875,0.995348,-1,-1,-1
275,-1,263.95,166.14,51.037,154.506,0.994063,-1,-1,-1
275,-1,319.954,178.444,55.947,122.445,0.974519,-1,-1,-1
276,-1,54.7686,85.5887,146.296,356.003,0.995928,-1,-1,-1
276,-1,261.988,166.007,52.615,156.851,0.995067,-1,-1,-1
276,-1,316.305,185.351,67.76,127.18,0.990097,-1,-1,-1
277,-1,261.521,174.8,52.548,154.078,0.996402,-1,-1,-1
277,-1,56.0534,77.9948,123.164,377.496,0.990166,-1,-1,-1
277,-1,316.38,178.121,52.625,145.969,0.986961,-1,-1,-1
278,-1,35.8347,63.2801,131.674,399.41,0.994542,-1,-1,-1
278,-1,263.431,173.847,49.931,158.937,0.994216,-1,-1,-1
278,-1,316.45,180.587,51.579,144.914,0.988137,-1,-1,-1
278,-1,144.644,165.796,54.835,126.394,0.707349,-1,-1,-1
279,-1,268.204,177.838,49.38,156.819,0.995555,-1,-1,-1
279,-1,19.9751,58.4686,150.212,406.009,0.991986,-1,-1,-1
279,-1,323.757,177.585,42.539,144.346,0.99085,-1,-1,-1
280,-1,265.634,163.883,51.593,156.87,0.993541,-1,-1,-1
280,-1,5.19229,43.943,157.002,409.054,0.992277,-1,-1,-1
280,-1,324.699,184.051,41.996,153.319,0.989275,-1,-1,-1
280,-1,508.273,195.318,47.502,113.086,0.791668,-1,-1,-1
281,-1,3.11981,54.7633,171.831,424.237,0.994287,-1,-1,-1
281,-1,266.073,166.426,59.887,148.334,0.992236,-1,-1,-1
281,-1,322.744,167.431,41.87,164.422,0.964818,-1,-1,-1
281,-1,201.176,211.914,18.21,52.472,0.77304,-1,-1,-1
281,-1,513.685,186.367,45.73,132.199,0.63491,-1,-1,-1
282,-1,264.649,174.221,52.738,145.851,0.995831,-1,-1,-1
282,-1,0,17.6552,164.293,461.345,0.986395,-1,-1,-1
282,-1,328.678,176.991,41.765,137.846,0.914071,-1,-1,-1
282,-1,522.658,188.554,40.715,91.517,0.579384,-1,-1,-1
283,-1,265.211,173.83,55.196,147.377,0.996249,-1,-1,-1
283,-1,324.654,182.337,43.449,140.722,0.988601,-1,-1,-1
283,-1,3.7647,92.1062,142.584,374.699,0.974934,-1,-1,-1
283,-1,196.991,213.529,22.205,52.592,0.846504,-1,-1,-1
283,-1,176.713,212.006,30.221,57.173,0.752825,-1,-1,-1
284,-1,263.982,176.255,63.701,151.397,0.992982,-1,-1,-1
284,-1,325.823,177.227,46.481,150.418,0.985864,-1,-1,-1
284,-1,2.14926,73.3249,123.129,402.915,0.954336,-1,-1,-1
284,-1,169.545,214.296,22.173,58.46,0.849766,-1,-1,-1
284,-1,193.994,220.99,21.511,50.03,0.812044,-1,-1,-1
285,-1,258.77,181.891,68.096,142.839,0.993361,-1,-1,-1
285,-1,324.588,189.919,54.44,137.473,0.986531,-1,-1,-1
285,-1,3.39724,72.8131,132.401,393.407,0.982388,-1,-1,-1
285,-1,174.04,223.4,22.339,48.954,0.86315,-1,-1,-1
285,-1,194.863,229.913,27.175,37.415,0.698497,-1,-1,-1
286,-1,261.167,182.992,61.192,146.795,0.997486,-1,-1,-1
286,-1,326.261,186.045,55.218,140.868,0.990734,-1,-1,-1
286,-1,0,60.7826,143.146,409.469,0.948229,-1,-1,-1
286,-1,173.882,226.636,24.765,57.971,0.896598,-1,-1,-1
286,-1,388.073,213.696,24.079,71.676,0.756898,-1,-1,-1
286,-1,185.375,219.174,27.225,56.391,0.572045,-1,-1,-1
287,-1,266.117,186.254,58.279,149.331,0.995989,-1,-1,-1
287,-1,330.016,189.223,44.808,140.927,0.98666,-1,-1,-1
287,-1,174.197,224.713,27.691,58.775,0.96692,-1,-1,-1
287,-1,382.713,222.115,27.252,70.782,0.877848,-1,-1,-1
287,-1,0,76.1562,122.301,345.486,0.847771,-1,-1,-1
287,-1,193.19,223.824,27.612,52.519,0.656933,-1,-1,-1
288,-1,335.656,185.755,42.892,142.808,0.991861,-1,-1,-1
288,-1,268.757,171.568,63.284,163.764,0.991207,-1,-1,-1
288,-1,389.26,213.433,26.203,75.724,0.901259,-1,-1,-1
288,-1,176.757,220.994,25.807,59.325,0.798063,-1,-1,-1
288,-1,4.03246,110.54,110.592,302.34,0.60385,-1,-1,-1
289,-1,277.167,176.477,61.087,156.122,0.997264,-1,-1,-1
289,-1,341.099,184.603,44.932,136.709,0.991129,-1,-1,-1
289,-1,189.601,221.627,20.449,57.337,0.886469,-1,-1,-1
289,-1,82.0117,212.983,25.1963,76.319,0.539101,-1,-1,-1
290,-1,279.907,168.083,60.482,163.529,0.996505,-1,-1,-1
290,-1,338.11,184.623,61.584,142.147,0.995177,-1,-1,-1
290,-1,90.2736,227.579,22.8594,57.626,0.933911,-1,-1,-1
290,-1,195.303,217.101,21.627,59.035,0.917499,-1,-1,-1
290,-1,407.674,212.486,23.58,70.214,0.59917,-1,-1,-1
290,-1,514.254,185.844,38.86,98.852,0.584457,-1,-1,-1
291,-1,287.384,168.185,50.749,155.479,0.994814,-1,-1,-1
291,-1,346.019,180.156,74.946,123.335,0.991044,-1,-1,-1
291,-1,94.0925,225.35,20.9945,51.841,0.944513,-1,-1,-1
291,-1,202.171,214.401,22.117,61.471,0.931762,-1,-1,-1
291,-1,143.549,217.763,20.481,55.087,0.549835,-1,-1,-1
291,-1,222.356,219.812,20.262,52.58,0.500982,-1,-1,-1
292,-1,291.058,176.695,48.588,153.277,0.994686,-1,-1,-1
292,-1,346.666,176.479,71.057,132.216,0.989349,-1,-1,-1
292,-1,198.719,218.748,26.351,60.745,0.958853,-1,-1,-1
292,-1,95.7936,218.493,26.0714,56.801,0.949226,-1,-1,-1
292,-1,135.537,225.038,20.674,42.105,0.750097,-1,-1,-1
293,-1,292.64,177.562,48.821,147.135,0.996633,-1,-1,-1
293,-1,197.395,219.125,27.808,54.746,0.98352,-1,-1,-1
293,-1,344.728,181.676,74.885,133.532,0.976448,-1,-1,-1
293,-1,136.904,223.737,21.333,46.118,0.935768,-1,-1,-1
293,-1,95.6541,212.508,30.6699,68.65,0.867927,-1,-1,-1
294,-1,293.111,155.077,60.507,169.715,0.995129,-1,-1,-1
294,-1,202.498,217.988,26.07,63.791,0.940352,-1,-1,-1
294,-1,94.531,211.378,25.04,62.687,0.915984,-1,-1,-1
294,-1,349.254,186.236,67.141,129.076,0.90855,-1,-1,-1
294,-1,145.428,220.691,20.663,46.397,0.835452,-1,-1,-1
295,-1,351.85,186.786,61.008,143.567,0.990682,-1,-1,-1
295,-1,291.643,168.821,56.208,161.363,0.988058,-1,-1,-1
295,-1,198.112,217.13,28.643,61.939,0.976728,-1,-1,-1
295,-1,98.0426,220.72,23.2404,56.334,0.934382,-1,-1,-1
295,-1,140.922,216.072,27.149,53.751,0.921384,-1,-1,-1
295,-1,221.426,217.926,20.341,58.798,0.727181,-1,-1,-1
295,-1,238.547,212.835,16.869,52.076,0.664015,-1,-1,-1
296,-1,298.935,169.36,56.778,161.183,0.993046,-1,-1,-1
296,-1,362.749,180.186,54.5,154.973,0.98704,-1,-1,-1
296,-1,204.978,221.045,21.404,61.59,0.950369,-1,-1,-1
296,-1,105.743,220.309,22.858,64.26,0.945122,-1,-1,-1
296,-1,217.182,211.67,21.935,61.62,0.851743,-1,-1,-1
296,-1,142.708,220.021,27.514,54.7,0.768679,-1,-1,-1
296,-1,235.49,216.367,18.384,47.584,0.655257,-1,-1,-1
297,-1,310.277,175.151,50.653,141.115,0.994826,-1,-1,-1
297,-1,368.389,176.153,46.943,152.698,0.973349,-1,-1,-1
297,-1,214.151,214.634,29.976,69.085,0.96455,-1,-1,-1
297,-1,106.247,216.744,24.945,58.301,0.913553,-1,-1,-1
297,-1,152.994,215.109,21.086,56.066,0.682096,-1,-1,-1
298,-1,374.322,169.454,51.515,159.777,0.992192,-1,-1,-1
298,-1,314.754,161.393,50.738,158.044,0.98417,-1,-1,-1
298,-1,213.786,213.962,27.614,61.37,0.972411,-1,-1,-1
298,-1,117.023,216.139,25.866,68.349,0.952744,-1,-1,-1
298,-1,154.417,220.546,19.871,50.829,0.876493,-1,-1,-1
298,-1,249.727,207.553,19.064,62.63,0.822946,-1,-1,-1
299,-1,317.352,181.987,51.644,140.821,0.994293,-1,-1,-1
299,-1,219.116,215.146,29.746,69.597,0.981183,-1,-1,-1
299,-1,113.398,221.929,26.023,62.58,0.964897,-1,-1,-1
299,-1,379.818,172.695,50.177,153.384,0.962448,-1,-1,-1
299,-1,148.14,215.415,23.404,60.837,0.938356,-1,-1,-1
299,-1,249.067,219.794,23.753,44.625,0.851725,-1,-1,-1
299,-1,207.012,209.795,23.009,78.36,0.519013,-1,-1,-1
299,-1,166.774,215.678,16.72,64.142,0.505629,-1,-1,-1
300,-1,320.896,178.985,51.551,137.753,0.99339,-1,-1,-1
300,-1,217.224,201.167,32.011,74.178,0.98006,-1,-1,-1
300,-1,375.949,175.928,56.185,137.345,0.946674,-1,-1,-1
300,-1,119.088,210.299,22.102,68.125,0.889703,-1,-1,-1
300,-1,151.082,211.522,27.218,54.915,0.866013,-1,-1,-1
300,-1,245.941,208.952,23.211,58.182,0.694873,-1,-1,-1
300,-1,168.231,219.355,17.401,52.83,0.677872,-1,-1,-1
300,-1,135.999,212.067,23.713,67.491,0.594073,-1,-1,-1
301,-1,326.616,170.005,53.436,156.551,0.995298,-1,-1,-1
301,-1,219.407,207.8,31.205,71.281,0.975941,-1,-1,-1
301,-1,385.561,181.649,46.8,146.719,0.966544,-1,-1,-1
301,-1,139.679,213.872,28.908,60.281,0.937565,-1,-1,-1
301,-1,563.833,183.655,39.764,132.725,0.891849,-1,-1,-1
301,-1,152.861,228.09,28.936,40.594,0.740112,-1,-1,-1
301,-1,245.231,218.538,24.873,50.145,0.673136,-1,-1,-1
301,-1,208.591,216.854,20.999,68.981,0.595232,-1,-1,-1
301,-1,124.457,216.3,23.274,67.049,0.589609,-1,-1,-1
302,-1,316.827,172.052,58.661,147.576,0.983612,-1,-1,-1
302,-1,222.709,211.405,30.312,67.509,0.976459,-1,-1,-1
302,-1,136.449,204.271,31.869,70.258,0.96211,-1,-1,-1
302,-1,571.691,187.89,45.977,117.864,0.934625,-1,-1,-1
302,-1,380.34,174.656,57.206,138.811,0.932932,-1,-1,-1
302,-1,207.035,209.844,24.016,75.588,0.855098,-1,-1,-1
302,-1,244.871,218.919,26.019,49.198,0.727013,-1,-1,-1
302,-1,261.422,212.191,18.211,46.691,0.611983,-1,-1,-1
302,-1,155.139,218.534,20.938,56.118,0.580215,-1,-1,-1
303,-1,328.383,168.553,52.397,150.35,0.991529,-1,-1,-1
303,-1,387.364,180.531,49.095,141.519,0.987921,-1,-1,-1
303,-1,137.68,208.751,33.997,68.237,0.980444,-1,-1,-1
303,-1,213.495,205.217,29.836,73.114,0.952624,-1,-1,-1
303,-1,257.067,216.853,23.13,52.45,0.869656,-1,-1,-1
303,-1,234.275,207.972,24.615,72.415,0.771397,-1,-1,-1
303,-1,574.044,172.05,41.992,161.62,0.734141,-1,-1,-1
304,-1,335.449,183.098,47.628,142.597,0.993803,-1,-1,-1
304,-1,395.432,188.62,50.361,139.513,0.989454,-1,-1,-1
304,-1,572.909,175.284,52.122,161.307,0.988423,-1,-1,-1
304,-1,147.265,213.659,26.822,65.346,0.957143,-1,-1,-1
304,-1,220.926,205.568,32.67,71.291,0.946886,-1,-1,-1
304,-1,207.515,208.609,25.993,76.133,0.843384,-1,-1,-1
304,-1,258.086,216.947,24.163,56.005,0.717436,-1,-1,-1
304,-1,243.107,213.058,26.543,63.205,0.571887,-1,-1,-1
305,-1,337.22,181.998,50.103,141.603,0.994736,-1,-1,-1
305,-1,230.67,209.806,31.363,68.861,0.979805,-1,-1,-1
305,-1,393.881,175.286,55.957,144.095,0.968591,-1,-1,-1
305,-1,154.915,211.804,25.562,65.546,0.965552,-1,-1,-1
305,-1,215.782,206.385,29.263,83.007,0.870372,-1,-1,-1
305,-1,578.93,179.531,40.128,134.926,0.772496,-1,-1,-1
305,-1,256.748,215.841,18.885,56.81,0.627093,-1,-1,-1
306,-1,343.755,177.941,61.804,135.401,0.99718,-1,-1,-1
306,-1,402.754,184.684,53.541,126.48,0.98983,-1,-1,-1
306,-1,156.211,210.646,27.522,70.123,0.978648,-1,-1,-1
306,-1,243.948,213.162,25.687,65.744,0.97752,-1,-1,-1
306,-1,220.333,209.808,29.488,83.012,0.939363,-1,-1,-1
306,-1,271,219.953,15.609,47.36,0.512562,-1,-1,-1
307,-1,410.005,174.68,53.379,148.268,0.995455,-1,-1,-1
307,-1,352.844,177.375,45.322,133.67,0.994864,-1,-1,-1
307,-1,155.219,212.442,26.596,69.086,0.984729,-1,-1,-1
307,-1,246.786,210.734,24.94,75.436,0.972457,-1,-1,-1
307,-1,216.644,202.11,33.35,86.649,0.941547,-1,-1,-1
307,-1,284.505,214.367,19.395,51.673,0.689678,-1,-1,-1
308,-1,365.281,159.967,47.927,167.057,0.994107,-1,-1,-1
308,-1,411.318,175.169,62.691,140.735,0.992519,-1,-1,-1
308,-1,248.425,211.924,28.263,73.466,0.975853,-1,-1,-1
308,-1,216.558,207.484,33.991,79.078,0.971024,-1,-1,-1
308,-1,159.959,215.399,25.827,64.063,0.966123,-1,-1,-1
308,-1,276.036,215.885,19,57.457,0.507924,-1,-1,-1
309,-1,360.926,178.717,54.928,142.997,0.993033,-1,-1,-1
309,-1,217.915,209.005,29.772,72.306,0.985617,-1,-1,-1
309,-1,425.491,177.985,49.214,151.735,0.983247,-1,-1,-1
309,-1,246.784,208.153,29.733,79.632,0.960037,-1,-1,-1
309,-1,162.402,215.907,23.749,67,0.917085,-1,-1,-1
310,-1,360.553,175.574,55.248,142.732,0.990072,-1,-1,-1
310,-1,245.959,205.33,33.832,86.377,0.974267,-1,-1,-1
310,-1,215.209,213.926,29.123,71.973,0.973106,-1,-1,-1
310,-1,427.035,180.793,52.368,149.069,0.970311,-1,-1,-1
310,-1,283.155,214.292,22.843,53.633,0.844678,-1,-1,-1
310,-1,163.114,218.383,23.427,62.376,0.762598,-1,-1,-1
310,-1,268.934,210.78,21.892,69.324,0.550329,-1,-1,-1
311,-1,369.677,183.343,54.298,144.496,0.995463,-1,-1,-1
311,-1,430.337,179.267,56.789,152.718,0.987132,-1,-1,-1
311,-1,252.787,211.227,30.506,75.435,0.968787,-1,-1,-1
311,-1,214.914,210.118,31.846,72.74,0.966787,-1,-1,-1
311,-1,160.275,218.547,27.091,59.563,0.950843,-1,-1,-1
311,-1,285.608,212.036,23.772,57.032,0.856834,-1,-1,-1
311,-1,233.095,205.787,31.676,93.525,0.804187,-1,-1,-1
312,-1,366.224,178.833,61.553,146.671,0.995723,-1,-1,-1
312,-1,435.527,185.627,55.296,155.648,0.989766,-1,-1,-1
312,-1,160.914,218.173,27.687,69.789,0.97732,-1,-1,-1
312,-1,223.689,203.268,33.074,91.781,0.938938,-1,-1,-1
312,-1,286.618,217.991,25.811,49.972,0.925974,-1,-1,-1
312,-1,247.422,207.406,28.478,81.533,0.800276,-1,-1,-1
312,-1,268.677,216.22,28.866,59.755,0.730408,-1,-1,-1
312,-1,535.809,219.087,21.795,72.467,0.593294,-1,-1,-1
313,-1,375.288,167.426,55.764,150.828,0.994297,-1,-1,-1
313,-1,428.499,172.482,67.973,166.051,0.989526,-1,-1,-1
313,-1,168.285,229.738,23.388,52.267,0.981699,-1,-1,-1
313,-1,222.859,210.13,31.532,81.754,0.946442,-1,-1,-1
313,-1,260.565,211.68,26.502,81.401,0.944267,-1,-1,-1
313,-1,288.786,214.021,24.195,54.755,0.824514,-1,-1,-1
314,-1,379.558,173.208,55.742,146.693,0.995812,-1,-1,-1
314,-1,435.446,177.322,62.383,142.392,0.989413,-1,-1,-1
314,-1,220.747,204.144,36.247,90.953,0.971227,-1,-1,-1
314,-1,165.437,219.338,24.661,57.55,0.950114,-1,-1,-1
314,-1,297.528,207.764,24.742,65.057,0.931967,-1,-1,-1
314,-1,151.911,220.707,22.604,63.029,0.546445,-1,-1,-1
314,-1,258.669,204.502,28.622,85.434,0.531729,-1,-1,-1
315,-1,445.712,174.987,55.038,145.451,0.997239,-1,-1,-1
315,-1,385.397,177.233,55.195,139.547,0.993361,-1,-1,-1
315,-1,294.88,210.357,29.275,63.695,0.949971,-1,-1,-1
315,-1,141.609,219.205,25.056,63.333,0.949037,-1,-1,-1
315,-1,173.923,216.396,21.32,65.094,0.846527,-1,-1,-1
315,-1,218.495,201.203,33.557,90.043,0.637708,-1,-1,-1
315,-1,259.235,205.16,26.684,84.844,0.612922,-1,-1,-1
316,-1,438.405,184.809,61.807,141.182,0.99225,-1,-1,-1
316,-1,387.955,176.832,46.956,143.115,0.989453,-1,-1,-1
316,-1,136.1,216.268,28.075,61.592,0.97942,-1,-1,-1
316,-1,288.875,205.34,28.93,63.631,0.942042,-1,-1,-1
316,-1,178.684,211.016,21.304,67.71,0.897326,-1,-1,-1
316,-1,256.902,205.874,27.538,80.919,0.702729,-1,-1,-1
316,-1,221.932,198.283,28.838,94.089,0.640269,-1,-1,-1
316,-1,158.852,209.46,20.486,71.895,0.527481,-1,-1,-1
317,-1,444.432,173.759,62.489,149.715,0.994969,-1,-1,-1
317,-1,386.014,176.797,56.066,143.897,0.994261,-1,-1,-1
317,-1,136.539,212.283,28.636,72.991,0.971375,-1,-1,-1
317,-1,250.573,202.811,37.262,88.447,0.969974,-1,-1,-1
317,-1,49.8563,153.728,32.5226,97.147,0.951382,-1,-1,-1
317,-1,290.586,198.164,27.788,71.429,0.876185,-1,-1,-1
317,-1,176.344,204.014,23.612,73.036,0.831847,-1,-1,-1
317,-1,233.607,203.489,30.621,92.488,0.532484,-1,-1,-1
318,-1,381.019,175.066,63.773,144.007,0.996105,-1,-1,-1
318,-1,253.969,204.768,35.086,86.571,0.970901,-1,-1,-1
318,-1,135.961,216.49,26.006,65.62,0.967373,-1,-1,-1
318,-1,175.338,200.855,25.758,74.959,0.9253,-1,-1,-1
318,-1,300.791,208.324,23.078,63.295,0.874354,-1,-1,-1
318,-1,53.821,162.444,32.1438,79.844,0.866448,-1,-1,-1
318,-1,448.836,179.901,59.233,143.205,0.823604,-1,-1,-1
318,-1,222.465,210.465,25.158,89.7,0.571754,-1,-1,-1
319,-1,384.906,181.603,64.214,143.014,0.997241,-1,-1,-1
319,-1,251.723,197.656,39.369,100.687,0.981092,-1,-1,-1
319,-1,131.03,215.095,27.849,69.694,0.96767,-1,-1,-1
319,-1,458.076,178.962,44.267,147.135,0.96063,-1,-1,-1
319,-1,304.44,211.732,18.95,62.212,0.756956,-1,-1,-1
319,-1,177.783,191.741,26.261,92.873,0.716613,-1,-1,-1
320,-1,387.858,187.208,59.932,141.999,0.997549,-1,-1,-1
320,-1,129.299,217.518,31.605,71.329,0.984404,-1,-1,-1
320,-1,455.416,187.749,52.54,144.606,0.980045,-1,-1,-1
320,-1,216.91,207.986,34.17,105.489,0.909927,-1,-1,-1
320,-1,249.343,206.549,39.784,98.578,0.884019,-1,-1,-1
320,-1,302.626,215.593,20.36,66.87,0.841382,-1,-1,-1
320,-1,179.59,203.459,26.381,79.627,0.725859,-1,-1,-1
320,-1,50.1241,169.235,39.5497,86.619,0.55937,-1,-1,-1
321,-1,392.726,185.332,55.667,143.592,0.99716,-1,-1,-1
321,-1,121.617,217.489,28.299,74.019,0.980805,-1,-1,-1
321,-1,452.899,181.196,54.415,141.938,0.962259,-1,-1,-1
321,-1,253.378,207.413,35.312,102.995,0.962046,-1,-1,-1
321,-1,216.314,207.689,33.121,102.615,0.951521,-1,-1,-1
321,-1,292.788,215.736,25.553,67.922,0.892428,-1,-1,-1
321,-1,39.5373,170.799,36.3073,80.934,0.874587,-1,-1,-1
321,-1,181.828,199.068,26.529,88.689,0.845141,-1,-1,-1
322,-1,393.14,174.983,58.415,144.54,0.994661,-1,-1,-1
322,-1,114.689,216.239,33.337,70.492,0.99158,-1,-1,-1
322,-1,251.47,201.436,35.858,104.752,0.971072,-1,-1,-1
322,-1,453.594,176.071,51.019,121.948,0.962482,-1,-1,-1
322,-1,217.783,213.115,28.798,98.728,0.949675,-1,-1,-1
322,-1,293.632,213.624,24.206,66.584,0.893018,-1,-1,-1
322,-1,188.241,220.789,18.4,67.27,0.818018,-1,-1,-1
323,-1,394.414,171.118,54.714,148.02,0.992941,-1,-1,-1
323,-1,110.504,212.074,38.356,78.311,0.989338,-1,-1,-1
323,-1,243.487,201.335,45.76,106.68,0.98433,-1,-1,-1
323,-1,460.574,180.187,57.66,154.797,0.977263,-1,-1,-1
323,-1,219.08,215.956,27.484,92.483,0.878091,-1,-1,-1
323,-1,187.601,220.554,22.14,63.006,0.876473,-1,-1,-1
323,-1,296.014,229.389,24.36,54.379,0.841723,-1,-1,-1
324,-1,395.743,174.01,52.856,151.872,0.994489,-1,-1,-1
324,-1,104.444,220.333,33.097,70.317,0.991614,-1,-1,-1
324,-1,238.456,193.97,50.304,118.997,0.98598,-1,-1,-1
324,-1,457.62,181.137,64.572,158.063,0.978668,-1,-1,-1
324,-1,201.346,216.232,27.442,88.598,0.899767,-1,-1,-1
324,-1,216.235,206.063,29.94,107.781,0.866346,-1,-1,-1
324,-1,298.038,219.711,19.482,62.873,0.827926,-1,-1,-1
324,-1,187.055,218.043,20.262,69.399,0.806362,-1,-1,-1
325,-1,397.65,181.487,52.349,147.772,0.995969,-1,-1,-1
325,-1,239.869,201.531,40.244,115.816,0.982794,-1,-1,-1
325,-1,453.068,179.044,70.523,146.736,0.970923,-1,-1,-1
325,-1,296.692,212.659,24.714,67.339,0.941479,-1,-1,-1
325,-1,100.534,213.507,27.973,56.206,0.831525,-1,-1,-1
325,-1,181.777,200.351,26.889,90.892,0.772732,-1,-1,-1
325,-1,206.511,204.734,30.566,114.012,0.514879,-1,-1,-1
326,-1,398.024,184.256,54.648,145.502,0.995788,-1,-1,-1
326,-1,236.403,194.193,48.355,125.784,0.983506,-1,-1,-1
326,-1,295.489,215.51,25.537,65.14,0.925997,-1,-1,-1
326,-1,455.217,166.468,79.71,160.309,0.907577,-1,-1,-1
326,-1,194.952,206.222,31.954,96.954,0.848481,-1,-1,-1
326,-1,267.528,204.001,30.08,82.65,0.528827,-1,-1,-1
327,-1,399.731,182.295,54.726,142.53,0.993859,-1,-1,-1
327,-1,236.594,191.322,44.958,123.216,0.974203,-1,-1,-1
327,-1,291.703,209.549,25.115,68.85,0.973678,-1,-1,-1
327,-1,463.995,178.939,60.667,146.856,0.971699,-1,-1,-1
327,-1,194.196,191.719,38.282,125.421,0.858993,-1,-1,-1
327,-1,271.255,201.454,25.297,83.83,0.534165,-1,-1,-1
328,-1,401.359,181.656,55.789,144.625,0.993944,-1,-1,-1
328,-1,471.975,184.477,47.67,155.766,0.993845,-1,-1,-1
328,-1,231.795,192.873,43.892,127.675,0.988153,-1,-1,-1
328,-1,196.418,193.192,42.714,120.885,0.965769,-1,-1,-1
328,-1,290.542,210.244,25.854,65.867,0.947235,-1,-1,-1
328,-1,277.461,199.859,24.684,85.829,0.536295,-1,-1,-1
329,-1,404.198,180.192,57.49,145.682,0.991638,-1,-1,-1
329,-1,237.108,184.619,42.379,124.447,0.990146,-1,-1,-1
329,-1,472.565,184.738,49.781,160.094,0.980798,-1,-1,-1
329,-1,185.315,194.662,46.91,121.01,0.95428,-1,-1,-1
329,-1,292.62,214.577,25.482,71.024,0.943363,-1,-1,-1
330,-1,472.291,184.603,50.95,156.383,0.99491,-1,-1,-1
330,-1,232.012,186.848,47.644,131.88,0.989322,-1,-1,-1
330,-1,407.962,179.226,52.683,140.113,0.987618,-1,-1,-1
330,-1,291.205,202.158,28.99,76.134,0.969511,-1,-1,-1
330,-1,185.799,196.691,37.537,126.987,0.674132,-1,-1,-1
331,-1,470.402,176.887,55.585,151.324,0.994634,-1,-1,-1
331,-1,404.974,179.352,53.638,138.806,0.991987,-1,-1,-1
331,-1,224.815,183.891,56.136,126.917,0.988176,-1,-1,-1
331,-1,288.79,206.377,30.932,81.128,0.988101,-1,-1,-1
331,-1,185.626,187.364,39.381,139.004,0.790337,-1,-1,-1
332,-1,404.529,177.835,54.44,144.481,0.993493,-1,-1,-1
332,-1,287.456,208.229,26.211,76.269,0.98621,-1,-1,-1
332,-1,220.609,178.567,60.283,134.647,0.982454,-1,-1,-1
332,-1,176.385,190.236,48.237,145.2,0.967402,-1,-1,-1
332,-1,466.616,174.451,60.075,155.058,0.954352,-1,-1,-1
333,-1,407.458,170.398,56.394,153.917,0.9898,-1,-1,-1
333,-1,215.007,182.383,60.691,127.679,0.985769,-1,-1,-1
333,-1,283.301,198.789,28.153,81.125,0.984782,-1,-1,-1
333,-1,173.497,179.677,44.578,148.576,0.984743,-1,-1,-1
333,-1,259.019,191.615,25.229,95.813,0.620409,-1,-1,-1
334,-1,405.042,175.697,56.181,137.952,0.990802,-1,-1,-1
334,-1,283.985,201.372,27.899,83.614,0.984276,-1,-1,-1
334,-1,223.113,177.818,42.14,130.235,0.974219,-1,-1,-1
334,-1,166.35,171.202,52.085,150.98,0.970398,-1,-1,-1
334,-1,587.176,219.112,33.115,94.584,0.948659,-1,-1,-1
334,-1,262.348,197.001,22.408,88.293,0.72029,-1,-1,-1
334,-1,470.995,191.265,53.132,144.152,0.561156,-1,-1,-1
335,-1,403.765,174.46,58.729,148.536,0.991906,-1,-1,-1
335,-1,149.029,173.457,57.615,163.193,0.989452,-1,-1,-1
335,-1,281.018,206.038,31.093,79.788,0.98239,-1,-1,-1
335,-1,213.841,169.417,45.693,152.219,0.981239,-1,-1,-1
335,-1,572.068,217.507,54.416,96.103,0.976227,-1,-1,-1
335,-1,473.811,179.268,51.173,141.758,0.858827,-1,-1,-1
335,-1,262.935,203.047,26.041,87.292,0.65757,-1,-1,-1
336,-1,583.317,209.472,42.349,97.067,0.994846,-1,-1,-1
336,-1,204.341,168.512,49.633,169.424,0.992562,-1,-1,-1
336,-1,404.731,172.999,58.452,144.87,0.992369,-1,-1,-1
336,-1,285.123,199.461,26.262,88.045,0.986303,-1,-1,-1
336,-1,153.731,178.778,57.931,166.622,0.984345,-1,-1,-1
336,-1,255.23,202.997,29.563,81.722,0.939879,-1,-1,-1
336,-1,474.97,180.967,49.893,137.829,0.61313,-1,-1,-1
337,-1,581.663,219.948,40.261,99.814,0.993364,-1,-1,-1
337,-1,404.446,171.35,57.089,158.464,0.992372,-1,-1,-1
337,-1,142.132,182.701,48.145,150.07,0.988545,-1,-1,-1
337,-1,192.516,162.478,57.836,187.47,0.97686,-1,-1,-1
337,-1,278.527,197.752,35.493,86.417,0.976307,-1,-1,-1
337,-1,250.217,198.687,31.78,85.072,0.968905,-1,-1,-1
337,-1,474.538,184.573,56.845,143.143,0.958243,-1,-1,-1
337,-1,3.40458,132.967,38.0808,114.418,0.508307,-1,-1,-1
338,-1,404.528,178.668,57.04,149.385,0.994481,-1,-1,-1
338,-1,580.042,217.342,38.651,98.847,0.994195,-1,-1,-1
338,-1,137.375,168.766,51.857,181.304,0.978242,-1,-1,-1
338,-1,279.397,206.096,28.45,87.647,0.974273,-1,-1,-1
338,-1,193.164,165.672,48.14,160.642,0.966059,-1,-1,-1
338,-1,478.788,189.809,50.074,140.004,0.950255,-1,-1,-1
338,-1,247.758,206.373,30.484,88.396,0.944812,-1,-1,-1
338,-1,1.18993,142.896,29.744,107.877,0.832736,-1,-1,-1
339,-1,391.308,186.018,84.491,133.689,0.996084,-1,-1,-1
339,-1,568.511,210.286,49.766,114.351,0.990653,-1,-1,-1
339,-1,278.107,203.254,31.014,95.052,0.979935,-1,-1,-1
339,-1,245.088,201.8,30.071,88.182,0.975958,-1,-1,-1
339,-1,477.152,191.416,52.001,134.334,0.96973,-1,-1,-1
339,-1,183.937,160.307,64.734,179.86,0.96792,-1,-1,-1
339,-1,133.51,168.08,54.123,180.601,0.899157,-1,-1,-1
340,-1,404.332,178.166,55.538,133.045,0.995395,-1,-1,-1
340,-1,567.556,208.764,48.034,110.78,0.993822,-1,-1,-1
340,-1,238.954,204.061,37.45,85.889,0.97701,-1,-1,-1
340,-1,277.534,203.255,29.175,94.756,0.976675,-1,-1,-1
340,-1,126.462,174.401,55.812,164.9,0.973483,-1,-1,-1
340,-1,169.239,161.593,75.383,179.914,0.963618,-1,-1,-1
340,-1,480.7,176.214,48.997,151.955,0.9107,-1,-1,-1
340,-1,137.648,167.098,44.98,61.735,0.639658,-1,-1,-1
341,-1,173.351,152.724,63.237,225.447,0.996346,-1,-1,-1
341,-1,403.195,172.232,58.377,146.904,0.995672,-1,-1,-1
341,-1,466.688,183.25,61.841,148.083,0.98073,-1,-1,-1
341,-1,240.755,202.755,30.692,89.915,0.980409,-1,-1,-1
341,-1,574.313,205.952,37.487,116.335,0.978209,-1,-1,-1
341,-1,276.149,193.382,29.209,100.357,0.969139,-1,-1,-1
341,-1,122.911,155.59,54.11,189.717,0.897964,-1,-1,-1
342,-1,566.067,203.254,54.51,105.747,0.997102,-1,-1,-1
342,-1,405.08,177.962,56.511,138.265,0.990936,-1,-1,-1
342,-1,235.593,200.684,30.871,99.448,0.987439,-1,-1,-1
342,-1,471.903,178.427,63.56,151.659,0.975852,-1,-1,-1
342,-1,154.974,147.627,80.705,240.747,0.959313,-1,-1,-1
342,-1,276.347,191.592,30.008,104.721,0.955069,-1,-1,-1
342,-1,101.603,138.263,60.469,221.804,0.884763,-1,-1,-1
342,-1,121.686,156.379,46.322,78.729,0.536698,-1,-1,-1
343,-1,565.367,197.046,54.223,111.695,0.996664,-1,-1,-1
343,-1,403.109,176.621,56.797,142.322,0.99114,-1,-1,-1
343,-1,233.428,193.391,30.53,98.115,0.987698,-1,-1,-1
343,-1,275.117,191.749,34.214,108.271,0.963948,-1,-1,-1
343,-1,154.068,139.005,62.888,225.946,0.940103,-1,-1,-1
343,-1,478.945,171.258,54.599,147.535,0.939287,-1,-1,-1
343,-1,97.8567,145.687,61.7783,235.308,0.765645,-1,-1,-1
344,-1,556.624,202.714,65.243,106.152,0.996178,-1,-1,-1
344,-1,404.242,174.388,58.959,145.494,0.992855,-1,-1,-1
344,-1,480.723,185.46,45.896,149.27,0.978803,-1,-1,-1
344,-1,238.158,190.271,31.466,102.622,0.977445,-1,-1,-1
344,-1,272.458,186.041,35.639,114.023,0.96281,-1,-1,-1
344,-1,156.485,132.434,69.358,231.372,0.885674,-1,-1,-1
344,-1,101.785,147.623,53.156,117.006,0.873892,-1,-1,-1
344,-1,87.4566,128.584,83.1054,259.581,0.826564,-1,-1,-1
345,-1,560.459,206.533,54.302,99.481,0.994283,-1,-1,-1
345,-1,405.292,180.856,58.286,120.95,0.993018,-1,-1,-1
345,-1,273.009,190.464,31.397,102.645,0.982216,-1,-1,-1
345,-1,475.87,174.987,52.707,170.214,0.978019,-1,-1,-1
345,-1,236.465,205.268,26.268,85.902,0.971361,-1,-1,-1
345,-1,136.434,114.25,82.43,309.957,0.914192,-1,-1,-1
345,-1,49.3737,248.517,40.4024,82.619,0.857991,-1,-1,-1
345,-1,90.0887,151.246,55.1103,205.671,0.822902,-1,-1,-1
346,-1,554.639,215.17,57.071,100.84,0.994608,-1,-1,-1
346,-1,415.056,178.158,55.784,141.04,0.994297,-1,-1,-1
346,-1,235.071,202.051,34.519,103.102,0.987533,-1,-1,-1
346,-1,272.815,187.892,33.779,111.094,0.986569,-1,-1,-1
346,-1,56.7124,137.652,88.1236,266.262,0.972846,-1,-1,-1
346,-1,478.066,179.096,50.211,158.447,0.972299,-1,-1,-1
346,-1,135.301,88.9917,89.874,333.532,0.92441,-1,-1,-1
346,-1,34.6762,249.098,47.958,97.354,0.689772,-1,-1,-1
346,-1,71.9045,136.703,56.1265,124.851,0.622829,-1,-1,-1
347,-1,556.231,200.43,46.963,115.18,0.995674,-1,-1,-1
347,-1,114.558,108.26,97.245,304.014,0.991368,-1,-1,-1
347,-1,404,186.972,61.912,126.465,0.990229,-1,-1,-1
347,-1,226.903,200.195,37.015,101.541,0.987124,-1,-1,-1
347,-1,476.401,180.936,54.201,152.37,0.984012,-1,-1,-1
347,-1,271.606,192.214,32.225,113,0.974156,-1,-1,-1
347,-1,44.1759,132.838,87.9011,273.844,0.974061,-1,-1,-1
347,-1,7.93187,245.521,39.5233,99.554,0.812642,-1,-1,-1
348,-1,81.4508,106.36,136.707,339.619,0.995107,-1,-1,-1
348,-1,399.674,182.722,63.083,131.079,0.992056,-1,-1,-1
348,-1,561.923,204.131,34.645,115.961,0.989509,-1,-1,-1
348,-1,222.494,200.964,36.473,104.057,0.988884,-1,-1,-1
348,-1,477.029,193.523,52.178,139.372,0.983257,-1,-1,-1
348,-1,267.477,194.483,33.076,110.049,0.978181,-1,-1,-1
348,-1,19.2243,103.306,106.088,329.093,0.927279,-1,-1,-1
348,-1,50.7516,123.298,53.5224,99.897,0.537594,-1,-1,-1
349,-1,549.184,206.785,37.679,106.414,0.996317,-1,-1,-1
349,-1,400.07,184.713,57.605,140.154,0.995326,-1,-1,-1
349,-1,258.48,187.091,42.006,122.088,0.990463,-1,-1,-1
349,-1,47.2701,92.5197,139.767,369.083,0.988627,-1,-1,-1
349,-1,214.758,200.037,33.925,103.53,0.981777,-1,-1,-1
349,-1,4.93206,103.096,97.3569,305.849,0.943512,-1,-1,-1
349,-1,19.6978,113.652,63.567,138.782,0.929711,-1,-1,-1
349,-1,466.052,185.921,54.278,130.26,0.665581,-1,-1,-1
350,-1,393.067,183.982,64.198,132.342,0.995623,-1,-1,-1
350,-1,544.92,206.399,35.764,101.908,0.991407,-1,-1,-1
350,-1,211.716,199.18,36.451,101.282,0.988512,-1,-1,-1
350,-1,63.9884,58.2871,111.264,409.456,0.98348,-1,-1,-1
350,-1,2.45722,83.1142,82.1601,377.626,0.980526,-1,-1,-1
350,-1,253.612,182.268,33.921,131.485,0.966096,-1,-1,-1
350,-1,13.6222,108.724,54.5984,140.586,0.921012,-1,-1,-1
350,-1,462.695,184.693,54.284,137.152,0.527484,-1,-1,-1
351,-1,543.744,213.755,37.008,107.046,0.994005,-1,-1,-1
351,-1,387.618,185.891,70.759,139.364,0.993842,-1,-1,-1
351,-1,17.4337,62.6203,151.663,415.559,0.992885,-1,-1,-1
351,-1,203.97,198.225,36.292,108.58,0.985468,-1,-1,-1
351,-1,254.344,182.635,33.165,123.703,0.958955,-1,-1,-1
351,-1,468.595,183.12,58.56,144.404,0.71214,-1,-1,-1
352,-1,540.389,215.765,42.676,108.65,0.995385,-1,-1,-1
352,-1,391.496,180.723,61.121,147.796,0.993767,-1,-1,-1
352,-1,245.193,182.994,40.565,125.879,0.992711,-1,-1,-1
352,-1,8.25779,6.12764,134.188,471.684,0.988124,-1,-1,-1
352,-1,202.857,194.969,37.384,109.309,0.986273,-1,-1,-1
352,-1,458.852,189.265,55.998,136.493,0.843589,-1,-1,-1
352,-1,11.0358,49.1718,108.667,127.876,0.562084,-1,-1,-1
353,-1,538.598,211.69,45.023,110.705,0.996267,-1,-1,-1
353,-1,384.85,184.334,72.478,143.005,0.996013,-1,-1,-1
353,-1,241.602,188.351,44.453,121.996,0.994062,-1,-1,-1
353,-1,200.772,192.766,39.523,117.041,0.984525,-1,-1,-1
353,-1,15.2917,7.64803,121.596,448.93,0.899299,-1,-1,-1
353,-1,455.019,189.049,64.749,143.973,0.887371,-1,-1,-1
354,-1,384.995,173.243,69.015,148.233,0.995949,-1,-1,-1
354,-1,540.428,213.736,44.507,100.581,0.994298,-1,-1,-1
354,-1,242.809,186.481,37.898,126.738,0.992053,-1,-1,-1
354,-1,6.8405,56.589,87.3932,350.018,0.982833,-1,-1,-1
354,-1,197.766,187.363,38.875,118.714,0.964319,-1,-1,-1
354,-1,455.795,187.245,66.737,146.014,0.912008,-1,-1,-1
354,-1,8.11687,8.93079,50.3608,82.6321,0.538718,-1,-1,-1
================================================
FILE: data/KITTI-13/det.txt
================================================
4,-1,748.744,152.562,32.441,55.121,0.672558,-1,-1,-1
5,-1,747.246,152.965,34.561,53.954,0.778875,-1,-1,-1
6,-1,748.641,148.834,36.75,59.915,0.74036,-1,-1,-1
7,-1,749.307,154.543,32.616,49.33,0.785546,-1,-1,-1
8,-1,752.551,155.509,31.128,54.674,0.513309,-1,-1,-1
9,-1,753.119,155.186,34.286,53.283,0.794882,-1,-1,-1
9,-1,773.655,161.69,39.325,57.74,0.518777,-1,-1,-1
11,-1,774.858,166.915,30.478,50.537,0.834827,-1,-1,-1
11,-1,760.029,151.341,31.082,55.422,0.760953,-1,-1,-1
12,-1,152.415,191.835,42.302,80.74,0.817165,-1,-1,-1
12,-1,770.034,158.027,32.983,57.26,0.755515,-1,-1,-1
12,-1,707.342,143.974,24.891,65.596,0.642924,-1,-1,-1
13,-1,772.371,152.651,37.152,68.625,0.768328,-1,-1,-1
13,-1,803.566,156.363,36.349,67.893,0.678682,-1,-1,-1
13,-1,711.861,140.141,26.274,60.681,0.54418,-1,-1,-1
14,-1,797.376,153.551,34.34,61.858,0.817447,-1,-1,-1
15,-1,159.523,150.178,40.793,90.864,0.768277,-1,-1,-1
15,-1,798.524,157.434,38.98,44.582,0.63912,-1,-1,-1
15,-1,67.7724,202.688,45.4466,73.471,0.555112,-1,-1,-1
16,-1,794.938,159.621,41.973,72.547,0.863212,-1,-1,-1
16,-1,819.651,161.193,34.762,52.196,0.659789,-1,-1,-1
17,-1,135.633,153.144,41.49,86.733,0.956905,-1,-1,-1
17,-1,808.606,163.96,35.347,82.649,0.797742,-1,-1,-1
18,-1,812.723,157.053,41.128,91.411,0.959443,-1,-1,-1
18,-1,119.39,140.098,35.673,86.591,0.855876,-1,-1,-1
18,-1,746.098,153.731,31.764,73.961,0.562936,-1,-1,-1
18,-1,365.71,135.083,32.465,79.015,0.525722,-1,-1,-1
19,-1,845.271,176.797,32.338,66.41,0.928207,-1,-1,-1
19,-1,872.699,178.616,36.876,67.415,0.891371,-1,-1,-1
20,-1,848.949,172.571,36.007,66.262,0.931839,-1,-1,-1
20,-1,896.779,177.094,32.736,70.255,0.865945,-1,-1,-1
20,-1,867.44,173.153,47.074,69.427,0.751045,-1,-1,-1
20,-1,741.765,161.398,36.971,67.257,0.519854,-1,-1,-1
21,-1,862.049,168.807,36.478,69.78,0.968138,-1,-1,-1
21,-1,908.617,155.248,41.186,83.717,0.923476,-1,-1,-1
22,-1,866.092,151.197,52.259,87.884,0.961027,-1,-1,-1
22,-1,927.238,161.261,36.511,86.647,0.910485,-1,-1,-1
22,-1,894.166,166.043,37.134,87.848,0.858234,-1,-1,-1
23,-1,905,169.985,39.552,93.144,0.964608,-1,-1,-1
23,-1,950.865,171.878,32.368,87.581,0.927545,-1,-1,-1
23,-1,14.3844,151.489,34.3745,77.745,0.798719,-1,-1,-1
24,-1,920.733,150.756,40.152,108.888,0.975966,-1,-1,-1
24,-1,967.972,161.386,52.978,93.662,0.966275,-1,-1,-1
25,-1,998.636,163.098,46.804,121.325,0.985889,-1,-1,-1
25,-1,938.081,167.052,46.145,98.605,0.985033,-1,-1,-1
26,-1,1039.71,161.036,52.66,134.575,0.985799,-1,-1,-1
26,-1,967.292,171.682,69.818,111.272,0.976018,-1,-1,-1
27,-1,1067.76,149.432,58.22,160.938,0.989987,-1,-1,-1
27,-1,991.907,151.36,84.533,140.021,0.969486,-1,-1,-1
28,-1,1112.75,156.955,61.94,155.409,0.989689,-1,-1,-1
28,-1,1046.26,150.753,55.14,144.618,0.984231,-1,-1,-1
29,-1,1101.67,134.773,72.46,184.894,0.99115,-1,-1,-1
29,-1,1190.58,140.167,50.42,176.518,0.966419,-1,-1,-1
30,-1,1148.01,135.801,79.32,210.078,0.996967,-1,-1,-1
32,-1,791.86,163.656,45.182,66.71,0.745345,-1,-1,-1
36,-1,358.675,168.444,42.541,52.843,0.722695,-1,-1,-1
37,-1,370.528,158.561,34.399,64.763,0.702973,-1,-1,-1
39,-1,351.273,165.974,36.52,75.344,0.946696,-1,-1,-1
40,-1,336.329,171.638,42.704,60.229,0.807638,-1,-1,-1
41,-1,325.819,170.206,41.149,58.926,0.770187,-1,-1,-1
42,-1,308.793,175.611,32.213,63.192,0.910014,-1,-1,-1
43,-1,298.91,179.948,34.764,61.686,0.960944,-1,-1,-1
43,-1,189.992,160.966,34.041,83.297,0.550861,-1,-1,-1
43,-1,602.48,130.973,35.131,55.837,0.513429,-1,-1,-1
44,-1,283.958,189.573,34.891,62.869,0.982689,-1,-1,-1
44,-1,162.367,150.922,41.934,85.054,0.747439,-1,-1,-1
44,-1,593.258,135.644,40.167,46.387,0.672412,-1,-1,-1
45,-1,264.25,174.994,39.351,79.949,0.985279,-1,-1,-1
45,-1,140.791,160.146,35.713,85.324,0.892299,-1,-1,-1
46,-1,234.423,186.787,36.928,80.315,0.982001,-1,-1,-1
46,-1,124.147,153.189,37.519,90.632,0.792147,-1,-1,-1
46,-1,598.021,141.783,39.653,47.802,0.556356,-1,-1,-1
47,-1,213.932,188.527,35.698,77.89,0.978796,-1,-1,-1
47,-1,101.322,162.234,38.992,83.118,0.962927,-1,-1,-1
47,-1,598.025,142.439,39.958,43.946,0.721953,-1,-1,-1
48,-1,190.753,184.647,43.734,87.484,0.987996,-1,-1,-1
48,-1,76.2089,141.612,40.6991,111.505,0.681593,-1,-1,-1
49,-1,162.365,180.29,48.461,98.152,0.984331,-1,-1,-1
49,-1,45.1315,159.589,43.1403,97.022,0.978247,-1,-1,-1
49,-1,591.41,135.294,44.006,46.346,0.873147,-1,-1,-1
50,-1,131.19,192.547,44.51,93.536,0.975515,-1,-1,-1
50,-1,13.9732,161.754,38.159,85.963,0.923275,-1,-1,-1
50,-1,587.844,134.133,44.47,42.605,0.691708,-1,-1,-1
51,-1,91.2313,178.729,60.3657,120.214,0.992598,-1,-1,-1
51,-1,583.325,145.309,53.65,56.243,0.859156,-1,-1,-1
51,-1,1209.63,193.364,29.47,129.929,0.850869,-1,-1,-1
52,-1,50.5561,194.691,54.6389,119.003,0.991923,-1,-1,-1
52,-1,586.462,131.392,45.981,65.645,0.889153,-1,-1,-1
53,-1,6.95132,186.663,57.0155,142.649,0.992524,-1,-1,-1
53,-1,587.015,143.475,51.346,50.087,0.945163,-1,-1,-1
53,-1,354.24,174.958,34.882,66.639,0.660008,-1,-1,-1
54,-1,590.113,128.212,45.607,72.881,0.71689,-1,-1,-1
54,-1,339.466,161.913,38.662,78.363,0.716031,-1,-1,-1
54,-1,210.296,189.4,49.934,41.603,0.66832,-1,-1,-1
55,-1,583.796,138.543,47.399,52.729,0.783002,-1,-1,-1
55,-1,200.899,192.017,44.208,52.462,0.724067,-1,-1,-1
55,-1,1210.89,169.96,28.71,133.781,0.56879,-1,-1,-1
55,-1,335.417,155.06,36.377,77.21,0.568348,-1,-1,-1
56,-1,322.723,153.963,37.204,83.541,0.598445,-1,-1,-1
57,-1,580.371,135.399,50.007,55.624,0.688715,-1,-1,-1
57,-1,321.528,158.956,44.32,75.191,0.57479,-1,-1,-1
57,-1,754.287,138.204,39.136,79.771,0.558958,-1,-1,-1
58,-1,570.575,130.316,56.11,71.611,0.891138,-1,-1,-1
58,-1,306.455,158.209,41.895,104.532,0.738981,-1,-1,-1
59,-1,287.469,165.77,39.855,86.484,0.879883,-1,-1,-1
59,-1,582.829,127.492,44.333,62.1,0.57735,-1,-1,-1
60,-1,256.528,172.511,48.133,85.698,0.972166,-1,-1,-1
60,-1,730.052,141.929,30.085,78.163,0.749969,-1,-1,-1
60,-1,571.03,137.599,43.724,54.822,0.676522,-1,-1,-1
61,-1,232.3,169.555,52.316,91.393,0.942508,-1,-1,-1
61,-1,576.22,138.759,45.098,52.833,0.902857,-1,-1,-1
61,-1,729.4,153.765,28.28,64.237,0.857582,-1,-1,-1
61,-1,782.54,154.97,28.163,74.82,0.711455,-1,-1,-1
61,-1,458.046,139.614,29.578,71.676,0.681246,-1,-1,-1
61,-1,439.119,133.135,30.743,79.501,0.535243,-1,-1,-1
62,-1,206.036,165.182,60.813,114.365,0.94615,-1,-1,-1
62,-1,572.072,129,38.837,66.522,0.928806,-1,-1,-1
62,-1,727.735,152.045,32.828,70.88,0.890766,-1,-1,-1
62,-1,778.407,161.518,35.819,76.606,0.869295,-1,-1,-1
62,-1,437.324,129.91,34.329,76.958,0.856984,-1,-1,-1
63,-1,181.217,163.921,52.895,108.212,0.991905,-1,-1,-1
63,-1,441.685,119.162,39.788,91.125,0.922111,-1,-1,-1
63,-1,563.739,136.507,48.539,66.898,0.77578,-1,-1,-1
63,-1,787.423,150.054,36.609,95.929,0.680451,-1,-1,-1
63,-1,729.637,157.06,34.549,69.806,0.607819,-1,-1,-1
63,-1,869.518,157.651,29.411,78.467,0.552038,-1,-1,-1
64,-1,151.218,151.241,62.094,141.666,0.991781,-1,-1,-1
64,-1,799.12,159.326,36.713,80.199,0.978511,-1,-1,-1
64,-1,428.245,126.203,35.791,82.425,0.931756,-1,-1,-1
64,-1,779.65,164.017,36.05,78.322,0.612054,-1,-1,-1
64,-1,743.935,158.443,35.791,64.159,0.599363,-1,-1,-1
64,-1,564.951,130.03,46.057,76.198,0.590103,-1,-1,-1
65,-1,118.723,160.78,56.036,139.048,0.980634,-1,-1,-1
65,-1,798.651,158.082,36.226,90.858,0.953829,-1,-1,-1
65,-1,427.352,124.854,37.931,90.025,0.877596,-1,-1,-1
65,-1,568.573,127.306,42.498,65.326,0.815463,-1,-1,-1
66,-1,63.9155,150.636,72.7125,141.832,0.983048,-1,-1,-1
66,-1,792.589,156.065,39.845,98.792,0.772148,-1,-1,-1
66,-1,417.003,126.275,41.214,88.098,0.745704,-1,-1,-1
66,-1,557.712,136.069,40.379,61.683,0.737384,-1,-1,-1
67,-1,33.3473,147.151,59.7858,148.665,0.970942,-1,-1,-1
67,-1,809.686,155.232,40.936,101.875,0.704994,-1,-1,-1
67,-1,557.289,130.571,39.488,59.492,0.700651,-1,-1,-1
68,-1,9.47021,146.732,49.8789,182.608,0.954444,-1,-1,-1
68,-1,550.22,122.747,56.035,69.178,0.795754,-1,-1,-1
68,-1,749.217,147.08,28.188,72.521,0.569354,-1,-1,-1
68,-1,321.559,154.52,39.927,84.054,0.545323,-1,-1,-1
68,-1,905.575,145.612,32.35,92.626,0.528991,-1,-1,-1
69,-1,918.459,164.084,29.605,78.151,0.903845,-1,-1,-1
69,-1,1105.72,145.776,53.34,96.434,0.856083,-1,-1,-1
69,-1,1007.54,208.922,51.94,82.471,0.817552,-1,-1,-1
69,-1,306.075,154.714,38.465,88.904,0.809773,-1,-1,-1
69,-1,384.079,157.063,29.739,69.202,0.793539,-1,-1,-1
69,-1,834.35,160.79,40.974,78.435,0.752213,-1,-1,-1
69,-1,547.156,135.109,47.197,66.706,0.619774,-1,-1,-1
70,-1,846.783,144.09,53.621,127.825,0.96839,-1,-1,-1
70,-1,1130.77,160.235,72.55,95.241,0.948039,-1,-1,-1
70,-1,760.093,153.407,32.273,80.521,0.879412,-1,-1,-1
70,-1,367.466,159.046,35.769,74.877,0.786903,-1,-1,-1
70,-1,277.221,165.357,45.356,65.507,0.761419,-1,-1,-1
70,-1,738.834,169.696,35.667,59.576,0.745546,-1,-1,-1
70,-1,1042.23,204.97,58.51,98.175,0.672778,-1,-1,-1
70,-1,909.606,152.436,53.997,87.347,0.66016,-1,-1,-1
71,-1,864.767,163.911,41.068,103.251,0.986856,-1,-1,-1
71,-1,1163.26,150.725,73.84,167.117,0.946941,-1,-1,-1
71,-1,288.252,163.692,28.64,74.21,0.943634,-1,-1,-1
71,-1,759.725,163.307,27.92,68.264,0.940219,-1,-1,-1
71,-1,947.093,163.059,35.855,86.936,0.882553,-1,-1,-1
71,-1,781.355,167.437,38.004,77.694,0.735804,-1,-1,-1
71,-1,739.332,175.803,36.729,67.418,0.710009,-1,-1,-1
72,-1,881.462,142.734,65.256,150.617,0.989745,-1,-1,-1
72,-1,747.348,160.614,52.611,86.915,0.98085,-1,-1,-1
72,-1,264.081,154.903,38.11,96.514,0.964022,-1,-1,-1
72,-1,352.477,169.694,29.88,58.945,0.935391,-1,-1,-1
72,-1,950.429,145.214,42.615,103.223,0.872057,-1,-1,-1
72,-1,1144.5,187.396,89.04,116.883,0.843947,-1,-1,-1
72,-1,1204.86,155.118,34.07,157.18,0.763933,-1,-1,-1
72,-1,973.717,150.298,38.963,105.111,0.533642,-1,-1,-1
73,-1,887.615,155.978,91.393,138.677,0.990084,-1,-1,-1
73,-1,1172.52,219.998,67.93,106.414,0.959029,-1,-1,-1
73,-1,749.063,155.435,42.811,87.721,0.949606,-1,-1,-1
73,-1,971.024,142.392,47.716,124.058,0.862283,-1,-1,-1
73,-1,338.545,168.782,40.531,76.054,0.835651,-1,-1,-1
73,-1,773.334,160.575,40.495,86.271,0.789951,-1,-1,-1
74,-1,937.761,152.196,65.199,147.278,0.989332,-1,-1,-1
74,-1,763.777,155.084,35.301,85.242,0.940203,-1,-1,-1
74,-1,244.882,164.624,36.692,100.145,0.933679,-1,-1,-1
74,-1,993.118,149.466,51.642,118.921,0.919812,-1,-1,-1
74,-1,323.798,171.853,30.966,71.3,0.914545,-1,-1,-1
75,-1,957.65,144.378,80.44,167.571,0.98952,-1,-1,-1
75,-1,1016.01,160.988,59.66,125.243,0.971565,-1,-1,-1
75,-1,224.291,159.262,38.95,106.303,0.941417,-1,-1,-1
75,-1,308.646,177.607,29.134,67.945,0.936099,-1,-1,-1
75,-1,767.177,168.928,31.319,77.442,0.930843,-1,-1,-1
75,-1,866.832,185.434,29.294,72.247,0.860436,-1,-1,-1
76,-1,982.536,149.136,105.434,172.369,0.992112,-1,-1,-1
76,-1,872.422,177.764,34.664,80.706,0.976539,-1,-1,-1
76,-1,205.978,170.135,40.125,86.816,0.965067,-1,-1,-1
76,-1,783.683,168.58,30.773,73.746,0.962307,-1,-1,-1
76,-1,1054.12,151.239,55.23,148.437,0.937427,-1,-1,-1
76,-1,886.306,166.055,47.309,101.732,0.741738,-1,-1,-1
77,-1,1040.83,153.596,101.48,189.221,0.997142,-1,-1,-1
77,-1,182.983,166.163,41.34,87.741,0.976072,-1,-1,-1
77,-1,781.272,156.489,56.922,95.248,0.919901,-1,-1,-1
77,-1,897.796,172.971,30.16,89.455,0.831098,-1,-1,-1
77,-1,844.94,171.535,30.735,84.788,0.780899,-1,-1,-1
78,-1,1068.84,170.62,128.04,184.494,0.995296,-1,-1,-1
78,-1,788.644,160.777,40.841,105.165,0.987967,-1,-1,-1
78,-1,168.194,168.462,39.586,88.177,0.977618,-1,-1,-1
78,-1,257.329,174.637,39.267,87.738,0.879471,-1,-1,-1
78,-1,904.693,172.513,37.269,97.162,0.652959,-1,-1,-1
79,-1,1150.31,146.688,90.69,227.312,0.985188,-1,-1,-1
79,-1,801.434,167.713,47.57,104.398,0.984509,-1,-1,-1
79,-1,138.082,165.584,54.291,98.695,0.96677,-1,-1,-1
79,-1,231.48,171.601,50.161,101.189,0.966306,-1,-1,-1
79,-1,1112.66,149.726,51.9,204.563,0.940922,-1,-1,-1
79,-1,866.811,178.299,32.954,89.847,0.823388,-1,-1,-1
79,-1,833.586,152.919,28.681,109.407,0.539478,-1,-1,-1
80,-1,1154.29,166.562,71.52,158.595,0.985738,-1,-1,-1
80,-1,818.321,175.044,44.991,115.397,0.983346,-1,-1,-1
80,-1,128.377,174.11,38.351,103.12,0.975216,-1,-1,-1
80,-1,203.58,174.13,49.748,108.501,0.939457,-1,-1,-1
80,-1,878.023,177.918,40.07,94.637,0.797992,-1,-1,-1
80,-1,450.212,160.172,36.979,57.631,0.756927,-1,-1,-1
80,-1,793.108,180.972,31.933,79.369,0.681346,-1,-1,-1
81,-1,98.8431,177.246,47.1729,96.131,0.990427,-1,-1,-1
81,-1,841.468,166.84,45.892,131.433,0.983293,-1,-1,-1
81,-1,175.491,183.085,39.466,94.384,0.874308,-1,-1,-1
81,-1,1214.91,163.429,26.09,170.183,0.794073,-1,-1,-1
81,-1,819.756,183.251,31.362,91.854,0.743015,-1,-1,-1
81,-1,434.197,159.566,36.31,64.312,0.635735,-1,-1,-1
81,-1,792.618,191.727,28.67,52.453,0.549123,-1,-1,-1
82,-1,61.6508,173.412,61.1012,119.119,0.990805,-1,-1,-1
82,-1,858.571,176.815,47.203,143.76,0.977752,-1,-1,-1
82,-1,818.611,198.13,28.799,82.366,0.900149,-1,-1,-1
82,-1,926.422,187.412,44.73,105.319,0.679277,-1,-1,-1
82,-1,839.408,181.395,28.887,98.946,0.673427,-1,-1,-1
82,-1,903.447,169.315,46.704,137.276,0.638374,-1,-1,-1
82,-1,146.884,174.106,42.731,108.73,0.617472,-1,-1,-1
83,-1,40.6761,186.173,47.2496,108.417,0.989897,-1,-1,-1
83,-1,876.97,158.092,47.744,175.407,0.984829,-1,-1,-1
83,-1,831.912,183.158,38.702,109.05,0.941465,-1,-1,-1
83,-1,422.928,158.921,29.988,56.861,0.643896,-1,-1,-1
83,-1,109.308,170.186,47.159,135.668,0.609661,-1,-1,-1
84,-1,900.75,145.223,64.72,211.44,0.982393,-1,-1,-1
84,-1,13.4311,167.984,59.273,131.126,0.969814,-1,-1,-1
84,-1,846.383,185.403,38.883,100.761,0.947336,-1,-1,-1
84,-1,55.5404,163.116,52.3086,139.316,0.886577,-1,-1,-1
84,-1,412.189,165.562,30.475,51.832,0.859416,-1,-1,-1
84,-1,784.9,162.689,35.813,39.495,0.575092,-1,-1,-1
85,-1,927.023,133.783,79.667,230.359,0.995426,-1,-1,-1
85,-1,19.5167,173.823,57.8277,152.54,0.966645,-1,-1,-1
85,-1,862.125,210.763,40.326,96.005,0.959627,-1,-1,-1
85,-1,408.968,154.515,32.839,76.511,0.951326,-1,-1,-1
85,-1,159.361,180.827,45.927,67.209,0.94196,-1,-1,-1
85,-1,389.965,162.266,30.695,58.091,0.683129,-1,-1,-1
86,-1,959.29,143.291,93.32,219.262,0.997518,-1,-1,-1
86,-1,386.641,162.426,33.831,72.591,0.954691,-1,-1,-1
86,-1,886.337,205.119,37.468,104.559,0.947926,-1,-1,-1
86,-1,136.921,172.781,48.528,74.759,0.875042,-1,-1,-1
86,-1,790.447,161.813,33.593,39.766,0.646983,-1,-1,-1
86,-1,913.121,185.81,32.027,118.363,0.579781,-1,-1,-1
87,-1,1017.19,135.73,110.18,231.398,0.993787,-1,-1,-1
87,-1,904.443,217.808,48.044,106.507,0.965718,-1,-1,-1
87,-1,386.69,157.534,36.664,73.464,0.934381,-1,-1,-1
87,-1,963.799,193.191,52.101,132.866,0.812771,-1,-1,-1
87,-1,121.208,177.421,43.913,74.018,0.793799,-1,-1,-1
88,-1,1053.78,131.585,160.73,237.474,0.992689,-1,-1,-1
88,-1,364.722,163.761,38.008,76.682,0.956832,-1,-1,-1
88,-1,935.904,183.599,59.814,171.35,0.931384,-1,-1,-1
88,-1,92.7214,173.007,45.6126,91.396,0.887574,-1,-1,-1
88,-1,990.858,200.648,50.362,142.114,0.866068,-1,-1,-1
88,-1,806.722,173.305,27.789,50.339,0.542678,-1,-1,-1
89,-1,976.397,222.627,82.723,140.951,0.981591,-1,-1,-1
89,-1,58.0955,174.513,51.1255,78.499,0.965952,-1,-1,-1
89,-1,1033.82,208.714,63.08,146.919,0.881981,-1,-1,-1
89,-1,340.85,171.02,38.054,78.385,0.829836,-1,-1,-1
89,-1,1195.6,113.397,45.4,162.307,0.733186,-1,-1,-1
89,-1,1150.2,127.816,80.79,205.681,0.646495,-1,-1,-1
89,-1,806.601,174.038,32.349,40.745,0.52721,-1,-1,-1
90,-1,1042.48,206.848,71.77,151.129,0.976617,-1,-1,-1
90,-1,1102.13,218.488,61.79,137.39,0.968862,-1,-1,-1
90,-1,33.27,174.338,53.6644,84.996,0.967261,-1,-1,-1
90,-1,316.257,178.409,41.699,77.595,0.943128,-1,-1,-1
90,-1,1152.95,226.306,85.87,100.049,0.799189,-1,-1,-1
90,-1,1201.12,199.131,39.88,77.344,0.575768,-1,-1,-1
91,-1,279.47,170.877,46.99,83.407,0.928609,-1,-1,-1
91,-1,1084.5,198.339,48.58,110.065,0.918067,-1,-1,-1
91,-1,323.669,175.694,32.292,60.459,0.873696,-1,-1,-1
91,-1,1186.19,251.643,54.81,109.173,0.86533,-1,-1,-1
91,-1,1123.96,253.673,79.18,106.362,0.852009,-1,-1,-1
92,-1,261.536,161.426,47.178,94.298,0.970649,-1,-1,-1
92,-1,891.688,160.757,25.774,57.133,0.826123,-1,-1,-1
92,-1,1108.27,202.82,65.9,107.617,0.81425,-1,-1,-1
92,-1,296.933,173.868,29.371,73.002,0.786137,-1,-1,-1
93,-1,216.925,170.52,67.374,105.145,0.975912,-1,-1,-1
93,-1,822.336,170.663,32.685,50.584,0.723947,-1,-1,-1
93,-1,1149.44,197.085,52.82,95.876,0.645801,-1,-1,-1
93,-1,279.39,180.806,40.675,86.203,0.628111,-1,-1,-1
94,-1,177.79,174.38,74.334,116.052,0.934304,-1,-1,-1
94,-1,905.845,161.953,29.209,55.755,0.909144,-1,-1,-1
94,-1,1195.65,200.083,45.35,106.415,0.907865,-1,-1,-1
94,-1,266.927,170.188,33.104,94.282,0.896325,-1,-1,-1
95,-1,134.377,165.095,71.578,143.678,0.971008,-1,-1,-1
95,-1,911.895,164.432,28.696,62.248,0.922031,-1,-1,-1
95,-1,216.524,176.98,59.362,90.995,0.901443,-1,-1,-1
96,-1,68.7829,146.606,78.4021,165.039,0.979665,-1,-1,-1
96,-1,986.181,168.928,33.389,77.19,0.918683,-1,-1,-1
96,-1,906.676,170.177,30.824,58.701,0.883687,-1,-1,-1
96,-1,922.89,157.624,23.457,57.577,0.860759,-1,-1,-1
96,-1,185.551,175.069,61.813,100.954,0.818987,-1,-1,-1
96,-1,830.211,174.532,36.181,58.958,0.729123,-1,-1,-1
97,-1,7.75435,154.632,70.3071,191.022,0.985975,-1,-1,-1
97,-1,127.925,182.133,65.819,92.724,0.905737,-1,-1,-1
97,-1,924.756,155.632,33.153,73.306,0.876376,-1,-1,-1
97,-1,834.746,185.099,51.836,52.245,0.799341,-1,-1,-1
97,-1,1157.81,190.119,63.18,127.347,0.592065,-1,-1,-1
98,-1,90.5865,171.713,65.4505,125.789,0.958606,-1,-1,-1
98,-1,931.61,146.909,30.29,89.73,0.948414,-1,-1,-1
98,-1,1022,176.68,27.51,72.942,0.931844,-1,-1,-1
98,-1,841.062,182.266,42.956,56.931,0.913397,-1,-1,-1
99,-1,1033.15,172.518,29.36,81.041,0.929158,-1,-1,-1
99,-1,16.2623,190.223,98.7517,109.056,0.859585,-1,-1,-1
99,-1,845.295,171.884,44.407,62.58,0.690643,-1,-1,-1
99,-1,944.927,147.334,25.238,86.769,0.603701,-1,-1,-1
100,-1,945.298,165.637,33.852,81.138,0.9543,-1,-1,-1
100,-1,1046.82,165.971,35.58,88.664,0.906048,-1,-1,-1
100,-1,1.35252,185.834,41.0045,143.224,0.855938,-1,-1,-1
100,-1,853.935,177.097,51.867,51.517,0.673903,-1,-1,-1
101,-1,960.433,157,31.19,78.918,0.970084,-1,-1,-1
101,-1,1062.11,165.153,45.16,97.659,0.958953,-1,-1,-1
101,-1,864.643,167.727,49.828,68.709,0.884027,-1,-1,-1
102,-1,1081.19,154.684,42.42,107.861,0.973524,-1,-1,-1
102,-1,967.625,158.624,32.855,81.043,0.952063,-1,-1,-1
102,-1,865.405,178.535,53.777,57.161,0.853297,-1,-1,-1
103,-1,1106.6,154.089,43.04,118.709,0.980035,-1,-1,-1
103,-1,978.588,170.191,30.652,61.524,0.955311,-1,-1,-1
103,-1,881.927,176.532,42.247,55.761,0.914413,-1,-1,-1
104,-1,1135.11,154.67,44.55,122.276,0.983673,-1,-1,-1
104,-1,983.692,166.857,41.838,76.073,0.950662,-1,-1,-1
104,-1,885.722,172.592,53.88,67.148,0.9178,-1,-1,-1
105,-1,1148.98,150.162,64.85,111.064,0.990981,-1,-1,-1
105,-1,999.202,166.048,38.938,84.095,0.955459,-1,-1,-1
105,-1,885.475,165.37,58.774,68.2,0.83167,-1,-1,-1
105,-1,226.427,157.691,35.379,73.049,0.762836,-1,-1,-1
106,-1,1018.55,159.653,37.47,89.015,0.973591,-1,-1,-1
106,-1,1185.81,163.872,45.14,99.943,0.972041,-1,-1,-1
106,-1,900.078,169.667,54.058,70.122,0.890775,-1,-1,-1
106,-1,203.874,167.836,32.362,69.198,0.804986,-1,-1,-1
107,-1,1021.32,168.728,43.42,89.686,0.969557,-1,-1,-1
107,-1,907.284,187.02,69.327,66.133,0.883291,-1,-1,-1
107,-1,187.848,165.261,34.528,66.362,0.746538,-1,-1,-1
107,-1,1045.81,162.969,34.96,88.574,0.629185,-1,-1,-1
108,-1,170.441,156.309,40.141,79.05,0.949765,-1,-1,-1
108,-1,1037.82,169.412,46.94,96.857,0.930328,-1,-1,-1
108,-1,914.945,179.259,79.142,71.807,0.913677,-1,-1,-1
109,-1,151.226,150.164,42.929,79.009,0.97387,-1,-1,-1
109,-1,930.633,179.811,73.577,77.848,0.906918,-1,-1,-1
109,-1,1059.56,165.814,43.72,105.421,0.897085,-1,-1,-1
110,-1,1077.58,151.829,43.29,86.945,0.957185,-1,-1,-1
110,-1,139.53,154.054,38.745,83.06,0.955141,-1,-1,-1
110,-1,935.419,184.606,89.381,75.645,0.810513,-1,-1,-1
111,-1,121.143,157.618,40.178,69.46,0.974168,-1,-1,-1
111,-1,1102.01,156.693,43.63,89.918,0.961634,-1,-1,-1
112,-1,1124.05,150.562,54.31,98.186,0.974512,-1,-1,-1
112,-1,90.3844,151.136,47.2296,86.864,0.955302,-1,-1,-1
113,-1,67.4546,149.602,50.1034,94.647,0.982215,-1,-1,-1
113,-1,1138.45,158.142,66.63,108.713,0.978656,-1,-1,-1
113,-1,464.255,168.033,27.457,56.716,0.551453,-1,-1,-1
114,-1,1169.72,161.926,51.32,93.651,0.969054,-1,-1,-1
114,-1,37.1905,149.268,51.6216,89.512,0.962479,-1,-1,-1
114,-1,454.069,165.031,28.903,68.298,0.886236,-1,-1,-1
115,-1,1197.36,152.411,43.64,103.443,0.957235,-1,-1,-1
115,-1,11.3238,155.142,48.5669,96.117,0.945833,-1,-1,-1
115,-1,451.184,173.953,30.896,65.132,0.939671,-1,-1,-1
115,-1,1015.67,187.26,56.65,97.918,0.939106,-1,-1,-1
115,-1,1075.86,180.074,74.65,129.436,0.869858,-1,-1,-1
115,-1,43.314,163.192,43.618,92.934,0.705022,-1,-1,-1
116,-1,441.03,171.314,27.776,76.626,0.921151,-1,-1,-1
116,-1,9.4081,161.975,40.5837,86.534,0.907899,-1,-1,-1
116,-1,1051.64,190.888,50.8,88.89,0.835955,-1,-1,-1
116,-1,693.074,144.053,26.658,80.629,0.604709,-1,-1,-1
117,-1,429.58,170.017,43.334,74.877,0.942502,-1,-1,-1
117,-1,1141.65,190.549,67.28,127.637,0.842515,-1,-1,-1
117,-1,1069.37,186.433,49.84,68.157,0.800473,-1,-1,-1
117,-1,1202.69,183.704,32.86,140.071,0.703244,-1,-1,-1
118,-1,428.476,173.412,37.611,91.826,0.936996,-1,-1,-1
118,-1,1193.95,187.832,47.05,114.899,0.877901,-1,-1,-1
119,-1,409.173,180.197,36.965,80.182,0.954062,-1,-1,-1
119,-1,1201.47,215.699,39.53,104.589,0.594523,-1,-1,-1
120,-1,404.907,179.213,41.222,73.611,0.975618,-1,-1,-1
121,-1,389.19,176.611,38.18,93.324,0.971872,-1,-1,-1
122,-1,378.278,180.08,41.905,99.157,0.981273,-1,-1,-1
122,-1,160.395,27.6246,67.781,75.8654,0.500922,-1,-1,-1
123,-1,366.794,182.248,40.264,87.605,0.982248,-1,-1,-1
124,-1,331.305,177.676,56.779,104.406,0.979312,-1,-1,-1
125,-1,331.001,186.07,40.704,98.88,0.973544,-1,-1,-1
125,-1,68.9718,12.3975,64.3222,90.8305,0.561877,-1,-1,-1
126,-1,307.75,183.398,43.414,105.153,0.990048,-1,-1,-1
126,-1,37.1898,31.5933,61.5619,74.8557,0.767372,-1,-1,-1
127,-1,287.344,183.826,49.024,122.471,0.995554,-1,-1,-1
128,-1,258.298,168.533,51.457,152.08,0.991281,-1,-1,-1
129,-1,222.324,186.188,62.792,147.408,0.991475,-1,-1,-1
130,-1,177.54,174.07,82.666,178.914,0.996939,-1,-1,-1
130,-1,2.14777,224.262,48.7959,139.417,0.655699,-1,-1,-1
131,-1,121.567,190.767,95.705,170.468,0.99472,-1,-1,-1
132,-1,72.3742,184.692,100.276,189.308,0.997209,-1,-1,-1
133,-1,7.21973,185.807,96.6833,188.193,0.996676,-1,-1,-1
134,-1,0,229.627,41.559,122.705,0.880457,-1,-1,-1
136,-1,356.874,165.579,53.337,76.079,0.512292,-1,-1,-1
137,-1,351.774,164.633,49.7,78.587,0.897323,-1,-1,-1
140,-1,669.648,158.154,30.581,104.942,0.801207,-1,-1,-1
141,-1,666.608,160.913,33.181,106.059,0.856503,-1,-1,-1
141,-1,54.9989,146.933,80.0921,133.732,0.686799,-1,-1,-1
142,-1,290.245,164.547,57.424,96.107,0.663914,-1,-1,-1
142,-1,24.1941,154.939,92.5269,128.201,0.593657,-1,-1,-1
142,-1,665.24,151.881,37.283,99.726,0.586144,-1,-1,-1
143,-1,277.353,166.148,55.11,98.605,0.658156,-1,-1,-1
143,-1,666.062,154.296,39.547,98.878,0.575099,-1,-1,-1
144,-1,671.557,157.618,34.03,97.752,0.831121,-1,-1,-1
145,-1,685.127,150.786,35.392,101.215,0.801728,-1,-1,-1
146,-1,678.529,138.465,38.89,113.679,0.93515,-1,-1,-1
146,-1,238.131,164.101,52.546,107.801,0.810128,-1,-1,-1
147,-1,681.849,137.336,44.305,125.333,0.978636,-1,-1,-1
147,-1,225.964,170.877,48.61,107.555,0.687421,-1,-1,-1
148,-1,698.492,157.614,39.451,92.624,0.982514,-1,-1,-1
148,-1,213.108,167.015,53.431,109.252,0.534584,-1,-1,-1
149,-1,692.392,146.986,35.981,109.39,0.797954,-1,-1,-1
150,-1,717.899,160.513,40.672,92.902,0.808106,-1,-1,-1
151,-1,123.895,144.715,135.915,170.939,0.635357,-1,-1,-1
155,-1,762.805,164.8,46.539,76.255,0.837488,-1,-1,-1
156,-1,775.246,156.753,48.775,94.64,0.942456,-1,-1,-1
157,-1,787.602,151.027,43.856,90.407,0.790535,-1,-1,-1
159,-1,825.357,139.814,55.246,94.115,0.948262,-1,-1,-1
159,-1,22.6254,95.7438,52.3589,180.779,0.91908,-1,-1,-1
160,-1,838.417,141.004,50.56,98.53,0.971228,-1,-1,-1
161,-1,848.576,155.046,65.893,95.71,0.892591,-1,-1,-1
164,-1,907.89,148.663,57.173,106.495,0.601917,-1,-1,-1
167,-1,973.032,148.5,75.598,103.498,0.85426,-1,-1,-1
168,-1,1005.92,162.111,71.52,65.358,0.801743,-1,-1,-1
169,-1,1038.27,153.346,72.52,121.105,0.931023,-1,-1,-1
169,-1,772.685,164.14,45.496,83.251,0.768753,-1,-1,-1
170,-1,1063.18,159.651,61.97,95.49,0.938523,-1,-1,-1
170,-1,12.4721,150.995,40.708,136.924,0.902885,-1,-1,-1
170,-1,776.218,176.594,44.869,71.524,0.887011,-1,-1,-1
171,-1,1088.48,163.083,62.96,82.45,0.791439,-1,-1,-1
172,-1,776.771,155.819,42.042,89.908,0.699934,-1,-1,-1
172,-1,1117.13,173.701,89.57,83.733,0.538594,-1,-1,-1
173,-1,1146.89,155.945,65.11,98.834,0.884571,-1,-1,-1
173,-1,781.721,161.558,39.12,80.317,0.710794,-1,-1,-1
175,-1,779.007,153.793,40.281,84.085,0.766883,-1,-1,-1
176,-1,775.82,165.897,37.579,76.598,0.534864,-1,-1,-1
186,-1,728.838,167.551,48.794,88.216,0.562515,-1,-1,-1
194,-1,1202.27,2.72335,36.34,172.619,0.747261,-1,-1,-1
209,-1,1031.59,158.009,33.6,67.063,0.546391,-1,-1,-1
210,-1,7.59586,152.717,56.9753,124.161,0.89631,-1,-1,-1
212,-1,423.337,132.994,36.063,90.154,0.702123,-1,-1,-1
217,-1,1149.3,6.88287,82.91,252.821,0.872819,-1,-1,-1
217,-1,743.41,160.671,31.302,76.294,0.749235,-1,-1,-1
218,-1,746.408,167.988,26.86,77.618,0.778755,-1,-1,-1
219,-1,746.615,164.223,30.784,85.13,0.938876,-1,-1,-1
220,-1,744.866,158.593,33.086,78.991,0.945277,-1,-1,-1
220,-1,32.0889,112.133,44.3867,104.349,0.849281,-1,-1,-1
221,-1,202.978,81.6005,63.412,133.096,0.983807,-1,-1,-1
221,-1,747.296,158.066,28.969,81.632,0.953587,-1,-1,-1
221,-1,1069.05,18.878,72.32,217.868,0.654245,-1,-1,-1
222,-1,749.952,159.256,32.62,93.595,0.944545,-1,-1,-1
222,-1,820.592,170.876,30.063,98.963,0.915275,-1,-1,-1
222,-1,1091.24,22.2195,68.05,204.506,0.742883,-1,-1,-1
223,-1,1121.1,23.8689,68.5,143.778,0.978969,-1,-1,-1
223,-1,743.316,156.682,44.464,97.275,0.935283,-1,-1,-1
223,-1,813.065,177.605,47.011,97.168,0.757528,-1,-1,-1
224,-1,753.282,162.919,36.438,101.504,0.957852,-1,-1,-1
224,-1,1155.04,18.9005,68.37,107.409,0.868863,-1,-1,-1
224,-1,833.783,171.407,35.058,74.471,0.749687,-1,-1,-1
225,-1,752.87,167.131,38.255,111.823,0.979896,-1,-1,-1
225,-1,836.513,160.934,47.496,110.342,0.947631,-1,-1,-1
226,-1,848.93,167.136,46.771,98.885,0.958642,-1,-1,-1
226,-1,762.547,166.013,42.544,104.718,0.940389,-1,-1,-1
226,-1,1035.29,263.386,36.35,77.961,0.80857,-1,-1,-1
227,-1,867.116,165.974,54.787,106.728,0.983153,-1,-1,-1
227,-1,763.008,165.687,48.827,119.372,0.955689,-1,-1,-1
227,-1,1091.7,273.173,50.95,90.368,0.94107,-1,-1,-1
228,-1,884.063,168.797,54.805,122.82,0.966363,-1,-1,-1
228,-1,775.605,183.413,58.818,106.559,0.922668,-1,-1,-1
228,-1,190.636,172.989,38.811,83.965,0.70316,-1,-1,-1
229,-1,796.623,179.422,67.398,131.242,0.983443,-1,-1,-1
229,-1,888.453,164.094,60.668,130.092,0.92885,-1,-1,-1
230,-1,908.26,160.666,83.649,148.27,0.987131,-1,-1,-1
230,-1,805.277,186.204,63.769,142.482,0.964056,-1,-1,-1
230,-1,95.8853,179.102,44.7437,96.591,0.895001,-1,-1,-1
231,-1,927.601,154.257,82.089,134.639,0.981265,-1,-1,-1
231,-1,825.259,199.538,60.178,125.578,0.873318,-1,-1,-1
231,-1,32.3089,177.426,40.5835,81.014,0.860498,-1,-1,-1
232,-1,967.049,152.231,89.481,125.58,0.97631,-1,-1,-1
232,-1,842.744,183.591,61.256,160.701,0.934704,-1,-1,-1
233,-1,969.633,160.844,126.117,170.08,0.991045,-1,-1,-1
233,-1,856.674,187.148,85.185,154.731,0.985386,-1,-1,-1
234,-1,1001.6,155.674,146.73,173.762,0.989453,-1,-1,-1
234,-1,865.798,191.65,99.651,147.828,0.981338,-1,-1,-1
234,-1,981.814,170.099,40.906,70.638,0.808623,-1,-1,-1
234,-1,571.601,168.56,32.874,44.604,0.581336,-1,-1,-1
235,-1,1050.71,149.068,151.62,182.521,0.993495,-1,-1,-1
235,-1,899.05,193.56,106.36,138.727,0.989993,-1,-1,-1
236,-1,1088.32,144.319,152.68,195.691,0.996345,-1,-1,-1
236,-1,937.979,193.244,140.341,164.884,0.995123,-1,-1,-1
236,-1,554.393,168.664,23.809,58.059,0.753856,-1,-1,-1
237,-1,1157.42,150.387,83.58,181.828,0.98185,-1,-1,-1
237,-1,1032.7,192.79,107.3,171.252,0.969277,-1,-1,-1
237,-1,995.15,170.25,64.23,158.354,0.807417,-1,-1,-1
237,-1,548.218,158.808,27.289,64.002,0.788789,-1,-1,-1
238,-1,1087.67,193.401,153.33,155.077,0.990944,-1,-1,-1
238,-1,1084.96,258.872,60.72,88.511,0.675153,-1,-1,-1
238,-1,727.809,160.372,30.221,35.833,0.614434,-1,-1,-1
239,-1,726.624,158.613,31.048,63.341,0.935448,-1,-1,-1
239,-1,1057.59,163.642,63.25,99.182,0.920546,-1,-1,-1
239,-1,536.173,159.557,27.97,58.128,0.751929,-1,-1,-1
239,-1,740.799,141.983,36.23,76.906,0.601723,-1,-1,-1
240,-1,733.079,158.122,28.345,64.925,0.935508,-1,-1,-1
240,-1,1079.73,154.081,52.01,104.205,0.903437,-1,-1,-1
240,-1,725.896,145.935,21.86,58.386,0.621325,-1,-1,-1
240,-1,709.858,164.963,34.241,56.106,0.597203,-1,-1,-1
241,-1,1099.55,149.549,50.47,127.462,0.967146,-1,-1,-1
241,-1,733.286,163.581,28.774,60.822,0.912349,-1,-1,-1
241,-1,721.328,149.423,27.141,58.025,0.902943,-1,-1,-1
241,-1,1069,155.385,37.86,113.12,0.531945,-1,-1,-1
242,-1,1109.62,145.785,56.05,132.296,0.991671,-1,-1,-1
242,-1,717.4,158.933,29.606,58.871,0.839761,-1,-1,-1
242,-1,730.852,150.569,31.186,56.435,0.81895,-1,-1,-1
242,-1,507.32,157.443,30.463,76.047,0.640482,-1,-1,-1
243,-1,1127.79,148.367,62.97,129.22,0.991846,-1,-1,-1
243,-1,1061.3,285.853,35.05,74.457,0.931746,-1,-1,-1
243,-1,716.172,157.937,28.676,60.413,0.809044,-1,-1,-1
244,-1,1141.92,147.567,88.88,135.995,0.989916,-1,-1,-1
244,-1,488.526,184.149,35.339,46.211,0.913285,-1,-1,-1
244,-1,723.851,152.336,27.818,64.788,0.83084,-1,-1,-1
245,-1,1151.16,155.983,84.53,127.452,0.987718,-1,-1,-1
245,-1,467.245,165.347,31.875,69.227,0.951001,-1,-1,-1
245,-1,484.452,169.22,30.152,71.77,0.892884,-1,-1,-1
245,-1,722.717,156.153,28.368,62.061,0.538622,-1,-1,-1
246,-1,1165.85,156.088,75.15,144.954,0.992417,-1,-1,-1
246,-1,453.575,167.77,36.879,74.403,0.964131,-1,-1,-1
246,-1,483.066,175.418,32.517,61.619,0.610256,-1,-1,-1
247,-1,1204.97,159.08,36.03,142.627,0.957313,-1,-1,-1
247,-1,440.078,168.471,45.88,67.59,0.955984,-1,-1,-1
247,-1,710.416,152.521,29.336,64.439,0.75219,-1,-1,-1
247,-1,462.393,185.955,36.608,72.844,0.684899,-1,-1,-1
248,-1,421.909,170.844,49.715,69.931,0.956269,-1,-1,-1
248,-1,453.037,168.279,32.33,65.323,0.848423,-1,-1,-1
248,-1,705.668,158.814,28.871,62.772,0.762172,-1,-1,-1
249,-1,415.212,172.261,39.08,80.441,0.971537,-1,-1,-1
250,-1,400.05,167.746,33.57,88.112,0.983079,-1,-1,-1
250,-1,454.303,175.788,27.611,66.546,0.655825,-1,-1,-1
250,-1,442.473,169.773,24.522,80.909,0.628369,-1,-1,-1
250,-1,938.813,259.91,35.318,92.512,0.51127,-1,-1,-1
251,-1,383.065,175.701,32.921,83.15,0.972503,-1,-1,-1
251,-1,447.075,172.835,34.911,76.313,0.929592,-1,-1,-1
251,-1,4.95443,170.045,56.8462,103.324,0.57978,-1,-1,-1
252,-1,357.318,177.272,53.486,93.518,0.972418,-1,-1,-1
252,-1,431.746,163.921,30.717,87.735,0.948996,-1,-1,-1
252,-1,1044.77,274.897,42.05,78.707,0.672281,-1,-1,-1
253,-1,352.555,182.776,37.626,104.596,0.97589,-1,-1,-1
253,-1,425.128,175.112,31.654,89.988,0.960338,-1,-1,-1
253,-1,715.089,172.458,28.69,66.677,0.651369,-1,-1,-1
254,-1,330.035,169.976,41.199,124.87,0.986764,-1,-1,-1
254,-1,418.882,171.547,36.427,92.365,0.965278,-1,-1,-1
254,-1,353.023,182.801,31.038,99.634,0.838264,-1,-1,-1
254,-1,715.853,170.062,31.701,64.138,0.689233,-1,-1,-1
254,-1,400.107,174.223,30.458,86.073,0.640692,-1,-1,-1
255,-1,325.353,182.083,33.867,113.712,0.988289,-1,-1,-1
255,-1,393.499,173.681,63.961,94.635,0.968545,-1,-1,-1
255,-1,733.43,170.491,27.708,70.742,0.928253,-1,-1,-1
255,-1,703.272,156.603,43.448,90.331,0.518467,-1,-1,-1
256,-1,280.734,167.304,66.055,164.95,0.976393,-1,-1,-1
256,-1,388.824,179.316,40.258,89.783,0.960362,-1,-1,-1
256,-1,728.106,172.184,27.032,68.783,0.930659,-1,-1,-1
256,-1,742.247,175.146,32.523,70.207,0.820393,-1,-1,-1
256,-1,350.285,177.638,24.074,95.322,0.712589,-1,-1,-1
256,-1,709.038,161.154,29.116,85.363,0.609531,-1,-1,-1
256,-1,361.796,195.866,35.951,78.753,0.523863,-1,-1,-1
257,-1,259.61,172.072,54.63,172.19,0.98596,-1,-1,-1
257,-1,376.643,168.552,62.99,130.314,0.974033,-1,-1,-1
257,-1,737.123,178.364,28.851,68.776,0.965729,-1,-1,-1
257,-1,332.72,177.82,29.334,99.298,0.941755,-1,-1,-1
257,-1,351.939,185.804,30.782,84.412,0.879738,-1,-1,-1
258,-1,230.67,164.305,57.644,187.206,0.987946,-1,-1,-1
258,-1,370.259,176.136,50.742,111.911,0.98452,-1,-1,-1
258,-1,740.659,179.502,33.068,72.881,0.965123,-1,-1,-1
258,-1,318.375,181.483,32.597,102.164,0.944546,-1,-1,-1
258,-1,343.501,187.199,46.886,97.056,0.682397,-1,-1,-1
259,-1,187.389,160.529,81.788,205.15,0.995612,-1,-1,-1
259,-1,354.818,186.857,50.283,117.705,0.987106,-1,-1,-1
259,-1,748.369,173.915,48.266,78.295,0.970992,-1,-1,-1
259,-1,281.265,184.109,76.448,102.699,0.956821,-1,-1,-1
259,-1,334.713,183.04,35.959,112.918,0.654308,-1,-1,-1
260,-1,162.94,156.121,67.532,203.855,0.990253,-1,-1,-1
260,-1,343.693,185.962,43.064,124.894,0.981829,-1,-1,-1
260,-1,767.937,164.109,40.743,103.107,0.972264,-1,-1,-1
260,-1,387.074,182.446,30.859,97.553,0.922534,-1,-1,-1
260,-1,275.875,190.126,67.84,108.565,0.910076,-1,-1,-1
260,-1,746.481,169.377,39.512,90.429,0.892399,-1,-1,-1
260,-1,259.801,202.553,38.355,90.23,0.865787,-1,-1,-1
260,-1,405.08,175.687,33.631,91.648,0.807673,-1,-1,-1
260,-1,364.242,202.08,36.015,82.494,0.807427,-1,-1,-1
261,-1,103.159,155.393,90.775,218.607,0.994985,-1,-1,-1
261,-1,318.303,182.347,62.347,147.857,0.986252,-1,-1,-1
261,-1,385.918,176.987,34.261,108.832,0.96033,-1,-1,-1
261,-1,773.871,157.467,33.84,98.523,0.951058,-1,-1,-1
261,-1,236.281,187.807,51.517,117.037,0.940745,-1,-1,-1
261,-1,275.05,180.044,45.194,124.045,0.938168,-1,-1,-1
261,-1,789.233,167.506,44.677,84.737,0.807666,-1,-1,-1
261,-1,421.177,185.546,31.304,86.605,0.765841,-1,-1,-1
261,-1,361.539,170.863,31.071,131.43,0.662173,-1,-1,-1
262,-1,13.857,154.762,102.007,216.861,0.998218,-1,-1,-1
262,-1,307.137,164.439,63.942,179.445,0.988773,-1,-1,-1
262,-1,358.671,176.2,67.83,120.728,0.983096,-1,-1,-1
262,-1,786.945,156.473,37.546,106.067,0.946363,-1,-1,-1
262,-1,253.98,167.478,47.829,144.698,0.899118,-1,-1,-1
262,-1,809.822,160.33,37.827,100.35,0.89533,-1,-1,-1
262,-1,227.232,205.829,40.288,103.064,0.860756,-1,-1,-1
262,-1,118.987,205.096,84.775,141.606,0.700252,-1,-1,-1
262,-1,281.583,172.767,52.179,147.327,0.545158,-1,-1,-1
263,-1,274.703,166.873,69.383,187.778,0.990386,-1,-1,-1
263,-1,352.166,182.501,63.078,116.937,0.98353,-1,-1,-1
263,-1,826.087,152.183,43.375,114.056,0.970254,-1,-1,-1
263,-1,0,193.621,28.4905,180.379,0.905651,-1,-1,-1
263,-1,247.873,166.971,39.262,152.622,0.87922,-1,-1,-1
263,-1,198.029,206.649,41.964,108.331,0.823275,-1,-1,-1
263,-1,804.633,167.933,28.411,89.319,0.780067,-1,-1,-1
263,-1,88.5941,211.033,92.4039,152.477,0.657282,-1,-1,-1
264,-1,235.805,169.335,82.301,204.665,0.992447,-1,-1,-1
264,-1,356.382,171.271,45.146,135.771,0.984711,-1,-1,-1
264,-1,858.507,164.884,40.835,115.605,0.978264,-1,-1,-1
264,-1,815.147,161.571,47.385,105.744,0.974777,-1,-1,-1
264,-1,334.395,179.427,41.68,113.607,0.768834,-1,-1,-1
264,-1,172.385,205.026,54.523,128.281,0.633278,-1,-1,-1
264,-1,414.056,187.358,31.261,86.401,0.567758,-1,-1,-1
265,-1,200.181,160.933,75.975,213.067,0.993649,-1,-1,-1
265,-1,330.664,179.779,77.25,143.395,0.993509,-1,-1,-1
265,-1,879.339,157.677,47.037,136.028,0.984376,-1,-1,-1
265,-1,838.766,167.124,41.373,109.882,0.979042,-1,-1,-1
265,-1,135.883,203.572,64.212,147.116,0.961891,-1,-1,-1
265,-1,411.428,187.132,35.885,91.197,0.699444,-1,-1,-1
266,-1,315.639,169.853,85.861,140.727,0.986442,-1,-1,-1
266,-1,117.23,169.492,123.672,198.788,0.986289,-1,-1,-1
266,-1,917.266,163.573,47.635,128.241,0.98106,-1,-1,-1
266,-1,848.22,154.55,55.357,139.781,0.973849,-1,-1,-1
266,-1,398.905,181.428,40.553,96.216,0.882594,-1,-1,-1
266,-1,91.5269,175.838,65.7601,176.187,0.658584,-1,-1,-1
267,-1,311.293,177.343,75.288,172.947,0.990596,-1,-1,-1
267,-1,49.1775,153.919,119.064,208.019,0.988245,-1,-1,-1
267,-1,886.356,153.846,55.758,156.273,0.982418,-1,-1,-1
267,-1,945.605,165.018,55.025,152.113,0.97729,-1,-1,-1
267,-1,399.417,173.84,46.801,115.858,0.955767,-1,-1,-1
268,-1,981.67,150.313,65.02,167.579,0.99018,-1,-1,-1
268,-1,281.774,172.652,68.571,199.655,0.988705,-1,-1,-1
268,-1,915.221,157.592,49.399,159.438,0.986903,-1,-1,-1
268,-1,388.43,171.138,43.622,113.27,0.944123,-1,-1,-1
268,-1,0,164.965,69.4481,209.035,0.939403,-1,-1,-1
268,-1,51.1172,149.042,75.7278,197.926,0.809931,-1,-1,-1
269,-1,248.099,171.142,83.306,188.809,0.995784,-1,-1,-1
269,-1,950.766,143.663,65.934,202.42,0.991518,-1,-1,-1
269,-1,1030.93,150.482,63.24,184.037,0.988191,-1,-1,-1
269,-1,382.375,182.728,34.751,102.699,0.987353,-1,-1,-1
269,-1,0,148.674,75.7108,194.865,0.91759,-1,-1,-1
270,-1,1071.99,150.582,89.28,183.701,0.997984,-1,-1,-1
270,-1,188.461,170.503,112.494,203.497,0.996615,-1,-1,-1
270,-1,370.941,166.05,44.623,133.711,0.990507,-1,-1,-1
270,-1,984.627,146.298,73.953,202.152,0.985605,-1,-1,-1
271,-1,125.698,168.015,120.379,198.369,0.997292,-1,-1,-1
271,-1,1043.27,144.287,74.92,205.536,0.995562,-1,-1,-1
271,-1,1124.5,135.611,93.81,231.092,0.995352,-1,-1,-1
271,-1,368.115,179.059,40.469,114.035,0.990766,-1,-1,-1
271,-1,956.969,283.239,41.315,76.09,0.867492,-1,-1,-1
272,-1,1100.12,148.413,88.93,213.48,0.997709,-1,-1,-1
272,-1,25.3574,173.341,175.285,196.537,0.993104,-1,-1,-1
272,-1,348.809,167.361,43.838,145.376,0.986452,-1,-1,-1
272,-1,1031.35,294.167,47.48,71.92,0.883653,-1,-1,-1
273,-1,336.611,184.93,66.088,122.53,0.992103,-1,-1,-1
273,-1,0,202.251,110.257,161.588,0.987768,-1,-1,-1
273,-1,1167.94,120.148,73.06,232.082,0.968485,-1,-1,-1
273,-1,1120.28,133.994,58.27,163.156,0.761864,-1,-1,-1
274,-1,326.776,166.191,47.631,168.522,0.989204,-1,-1,-1
275,-1,313.725,159.59,56.354,187.649,0.980691,-1,-1,-1
275,-1,428.799,179.554,24.178,55.125,0.700601,-1,-1,-1
276,-1,293.898,176.866,68.886,175.17,0.98294,-1,-1,-1
276,-1,423.209,184.767,32.994,46.633,0.872636,-1,-1,-1
276,-1,894.113,261.994,34.791,95.365,0.54221,-1,-1,-1
277,-1,286.244,172.611,73.283,180.7,0.991613,-1,-1,-1
277,-1,425.722,174.942,33.576,69.891,0.95333,-1,-1,-1
277,-1,936.417,279.657,40.406,72.62,0.880629,-1,-1,-1
278,-1,261.153,177.119,84.093,178.626,0.991823,-1,-1,-1
278,-1,415.58,177.018,30.68,57.384,0.935282,-1,-1,-1
278,-1,1001.66,288.921,38.26,64.86,0.909994,-1,-1,-1
279,-1,224.474,176.76,90.599,189.777,0.9929,-1,-1,-1
279,-1,411.561,170.409,46.937,79.712,0.963964,-1,-1,-1
280,-1,188.618,188.464,102.114,177.248,0.995611,-1,-1,-1
280,-1,417.734,184.774,38.43,54.903,0.963148,-1,-1,-1
280,-1,404.118,173.938,28.695,60.91,0.809312,-1,-1,-1
281,-1,146.142,173.764,108.575,186.174,0.997764,-1,-1,-1
281,-1,417.539,172.846,34.513,73.872,0.968011,-1,-1,-1
281,-1,654.154,169.267,22.365,66.199,0.685171,-1,-1,-1
282,-1,94.9252,181.031,110.506,178.77,0.994727,-1,-1,-1
282,-1,1111.58,176.755,44.09,100.464,0.976253,-1,-1,-1
282,-1,407.396,170.414,39.638,77.233,0.903771,-1,-1,-1
282,-1,664.093,170.998,22.535,68.645,0.838864,-1,-1,-1
282,-1,676.455,175.935,23.764,65.662,0.761758,-1,-1,-1
283,-1,34.9872,181.442,120.849,173.666,0.996622,-1,-1,-1
283,-1,1157.89,173.372,56.67,128.7,0.990218,-1,-1,-1
283,-1,407.873,170.589,35.43,84.864,0.968264,-1,-1,-1
283,-1,666.693,177.268,29.82,75.035,0.881304,-1,-1,-1
283,-1,943.112,276.407,36.914,84.563,0.601262,-1,-1,-1
284,-1,2.3056,168.972,76.1553,190.083,0.980693,-1,-1,-1
284,-1,402.369,173.957,36.349,93.288,0.970643,-1,-1,-1
284,-1,1202.29,171.743,36.93,105.934,0.942902,-1,-1,-1
284,-1,672.341,181.486,25.809,72.734,0.879868,-1,-1,-1
284,-1,1000.67,286.922,42.41,65.109,0.852106,-1,-1,-1
284,-1,377.377,169.735,36.794,93.889,0.84341,-1,-1,-1
284,-1,1175.56,174.858,46.3,112.537,0.750412,-1,-1,-1
284,-1,656.277,164.777,31.133,74.656,0.545114,-1,-1,-1
284,-1,685.519,176.278,30.414,75.645,0.520293,-1,-1,-1
285,-1,407.072,183.912,30.332,85.462,0.967929,-1,-1,-1
285,-1,678.5,177.904,25.135,67.081,0.891193,-1,-1,-1
285,-1,375.601,176.297,30.81,86.558,0.81621,-1,-1,-1
286,-1,402,171.401,36.925,96.351,0.948269,-1,-1,-1
286,-1,372.776,185.498,44.054,81.72,0.941249,-1,-1,-1
286,-1,685.719,169.211,25,69.727,0.836554,-1,-1,-1
286,-1,356.237,169.849,25.863,105.043,0.502446,-1,-1,-1
287,-1,382.2,169.216,43.962,111.218,0.962555,-1,-1,-1
287,-1,685.744,168.619,30.187,83.547,0.90929,-1,-1,-1
287,-1,117.872,156.455,69.447,154.21,0.828269,-1,-1,-1
287,-1,358.478,177.287,38.217,96.008,0.796863,-1,-1,-1
287,-1,298.513,191.716,34.734,97.42,0.546791,-1,-1,-1
288,-1,379.558,176.533,43.604,97.576,0.985118,-1,-1,-1
288,-1,685.498,170.709,39.922,85.773,0.955354,-1,-1,-1
288,-1,347.601,180.956,47.228,96.685,0.916242,-1,-1,-1
289,-1,352.771,181.339,48.563,111.36,0.976561,-1,-1,-1
289,-1,696.578,175.27,39.427,89.773,0.973994,-1,-1,-1
289,-1,327.524,167.37,38.227,118.055,0.935908,-1,-1,-1
289,-1,383.011,183.072,32.222,92.982,0.607614,-1,-1,-1
290,-1,701.503,174.212,44.558,95.378,0.977218,-1,-1,-1
290,-1,334.251,173.958,50.593,123.343,0.972404,-1,-1,-1
290,-1,302.983,172.456,39.649,121.08,0.957905,-1,-1,-1
291,-1,710.707,162.157,51.132,92.891,0.985023,-1,-1,-1
291,-1,324.613,161.662,46.009,156.501,0.98139,-1,-1,-1
291,-1,283.806,155.897,39.172,155.383,0.954754,-1,-1,-1
292,-1,299.932,173.658,60.851,136.633,0.986566,-1,-1,-1
292,-1,711.984,168.895,57.877,117.915,0.986247,-1,-1,-1
292,-1,265.002,162.16,39.809,162.436,0.945723,-1,-1,-1
292,-1,2.47835,183.727,46.6213,153.64,0.701458,-1,-1,-1
293,-1,730.622,166.431,41.397,105.607,0.992986,-1,-1,-1
293,-1,278.258,167.941,52.52,183.891,0.977351,-1,-1,-1
293,-1,225.542,163.03,63.76,181.346,0.969558,-1,-1,-1
294,-1,238.889,171.873,74.821,201.204,0.989214,-1,-1,-1
294,-1,743.581,162.022,38.397,129.321,0.980498,-1,-1,-1
294,-1,190.164,150.304,58.126,216.233,0.964528,-1,-1,-1
295,-1,192.999,165.579,77.854,206.929,0.990921,-1,-1,-1
295,-1,751.583,150.752,54.711,146.246,0.98052,-1,-1,-1
295,-1,135.54,164.036,77.858,196.869,0.973065,-1,-1,-1
296,-1,153.725,170.348,72.217,185.012,0.987147,-1,-1,-1
296,-1,65.0882,163.503,108.423,193.356,0.986131,-1,-1,-1
296,-1,774.806,152.108,49.541,161.05,0.971064,-1,-1,-1
296,-1,951.535,255.345,44.938,92.175,0.855575,-1,-1,-1
296,-1,441.497,169.742,36.735,70.848,0.530673,-1,-1,-1
297,-1,0,168.693,102.89,203.331,0.989294,-1,-1,-1
297,-1,65.5492,166.393,105.531,189.715,0.988989,-1,-1,-1
297,-1,785.775,159.995,71.175,155.065,0.986735,-1,-1,-1
297,-1,1019.98,267.994,36.92,97.791,0.825747,-1,-1,-1
298,-1,808.753,150.202,62.398,189.012,0.992763,-1,-1,-1
298,-1,6.94198,170.145,78.7681,189.385,0.983411,-1,-1,-1
299,-1,837.695,146.985,71.62,206.215,0.992438,-1,-1,-1
299,-1,410.477,172.915,39.798,79.554,0.9082,-1,-1,-1
299,-1,771.552,164.779,24.335,61.004,0.658473,-1,-1,-1
300,-1,863.899,153.665,78.424,206.407,0.990634,-1,-1,-1
300,-1,404.738,171.805,37.435,83.061,0.949811,-1,-1,-1
301,-1,905.973,155.283,77.966,218.717,0.986792,-1,-1,-1
301,-1,390.952,163.706,36.883,106.934,0.862661,-1,-1,-1
301,-1,469.66,178.423,25.798,39.328,0.501759,-1,-1,-1
302,-1,954.335,150.098,85.425,223.875,0.993714,-1,-1,-1
302,-1,370.043,173.604,47.583,101.609,0.978458,-1,-1,-1
302,-1,453.503,168.133,34.107,73.452,0.596527,-1,-1,-1
303,-1,1012.03,145.421,109.34,221.754,0.997398,-1,-1,-1
303,-1,352.03,181.579,54.154,107.4,0.985487,-1,-1,-1
303,-1,448.573,169.72,36.274,76.02,0.920087,-1,-1,-1
303,-1,801.302,171.074,28.25,64.218,0.569454,-1,-1,-1
304,-1,1091.28,149.219,136.47,221.89,0.99598,-1,-1,-1
304,-1,337.755,167.035,42.534,130.022,0.968231,-1,-1,-1
304,-1,810.048,177.765,30.083,68.741,0.830371,-1,-1,-1
304,-1,799.667,168.167,25.359,64.605,0.767143,-1,-1,-1
304,-1,439.003,162.844,29.896,96.312,0.735959,-1,-1,-1
305,-1,313.343,162.999,51.644,136.144,0.977254,-1,-1,-1
305,-1,414.801,158.338,36.635,104.213,0.965099,-1,-1,-1
305,-1,818.69,177.493,26.569,59.567,0.839437,-1,-1,-1
306,-1,280.549,157.348,62.72,156.144,0.987646,-1,-1,-1
306,-1,405.159,160.924,48.981,108.01,0.958376,-1,-1,-1
306,-1,831.648,173.131,26.531,63.18,0.878532,-1,-1,-1
306,-1,516.316,170.519,28.527,48.635,0.724819,-1,-1,-1
307,-1,241.139,155.885,75.629,182.155,0.987298,-1,-1,-1
307,-1,390.566,147.499,45.628,136.701,0.984194,-1,-1,-1
307,-1,829.996,171.355,32.439,66.958,0.939132,-1,-1,-1
307,-1,510.184,173.149,31.495,49.145,0.880532,-1,-1,-1
308,-1,176.39,175.51,84.489,172.048,0.992747,-1,-1,-1
308,-1,369.245,142.003,56.002,154.989,0.98585,-1,-1,-1
308,-1,849.774,166.33,29.074,73.268,0.94854,-1,-1,-1
308,-1,516.144,170.381,28.116,55.342,0.946733,-1,-1,-1
309,-1,96.734,168.428,123.498,193.83,0.997523,-1,-1,-1
309,-1,325.619,143.728,79.346,170.376,0.993719,-1,-1,-1
309,-1,859.148,169.824,26.607,66.997,0.971318,-1,-1,-1
309,-1,1029.16,272.173,41.1,84.244,0.963938,-1,-1,-1
309,-1,510.043,167.028,30.369,58.774,0.782063,-1,-1,-1
310,-1,7.01126,169.193,124.133,192.181,0.996594,-1,-1,-1
310,-1,288.508,161.925,94.571,188.896,0.992015,-1,-1,-1
310,-1,866.484,172.178,29.67,76.28,0.945215,-1,-1,-1
310,-1,895.958,165.61,22.575,76.858,0.74512,-1,-1,-1
310,-1,1137.52,293.824,44.38,68.612,0.602932,-1,-1,-1
311,-1,236.694,156.218,87.128,196.476,0.981525,-1,-1,-1
311,-1,877.54,176.385,40.346,78.116,0.948137,-1,-1,-1
311,-1,503.372,158.003,33.106,66.674,0.783279,-1,-1,-1
312,-1,163.34,145.559,113.901,220.144,0.991012,-1,-1,-1
312,-1,889.373,170.518,42.209,94.346,0.98,-1,-1,-1
312,-1,502.879,175.143,23.889,51.804,0.795426,-1,-1,-1
312,-1,916.845,179.866,30.493,91.646,0.663248,-1,-1,-1
313,-1,8.93084,134.474,183.695,239.526,0.994524,-1,-1,-1
313,-1,923.203,165.936,38.053,126.029,0.984273,-1,-1,-1
313,-1,488.419,171.469,24.369,59.269,0.82342,-1,-1,-1
313,-1,503.402,170.15,28.852,70.361,0.675651,-1,-1,-1
314,-1,925.711,165.002,55.482,101.481,0.976418,-1,-1,-1
314,-1,497.811,169.087,27.585,71.989,0.849182,-1,-1,-1
314,-1,963.404,265.075,36.466,94.593,0.845712,-1,-1,-1
315,-1,959.795,148.02,43.725,125.943,0.984578,-1,-1,-1
315,-1,493.929,163.296,35.283,81.655,0.91011,-1,-1,-1
315,-1,1024.69,273.18,42.76,76.976,0.721583,-1,-1,-1
315,-1,474.63,173.944,41.268,50.71,0.569714,-1,-1,-1
316,-1,965.677,157.11,53.303,121.747,0.986207,-1,-1,-1
316,-1,1121.82,294.427,47.28,68.878,0.904895,-1,-1,-1
316,-1,491.218,167.941,25.649,53.717,0.900074,-1,-1,-1
317,-1,1001.14,147.075,48.01,132.682,0.993955,-1,-1,-1
317,-1,487.306,167.208,31.03,68.752,0.949142,-1,-1,-1
317,-1,473.062,170.857,22.544,57.429,0.534261,-1,-1,-1
318,-1,480.613,163.715,32.325,75.258,0.974545,-1,-1,-1
318,-1,1033.01,138.971,49.96,167.464,0.973979,-1,-1,-1
318,-1,1182.28,187.804,51.05,118.413,0.58722,-1,-1,-1
319,-1,473.899,171.879,33.168,69.952,0.984363,-1,-1,-1
319,-1,1061.17,142.256,61.96,159.266,0.971774,-1,-1,-1
319,-1,902.021,252.252,33.143,103.318,0.730995,-1,-1,-1
320,-1,1103.17,123.046,63.76,180.183,0.992873,-1,-1,-1
320,-1,471.279,169.68,37.154,81.223,0.96684,-1,-1,-1
320,-1,940.86,251.324,40.412,96.456,0.748324,-1,-1,-1
321,-1,1142.99,128.479,79.15,196.229,0.997021,-1,-1,-1
321,-1,1006.92,270.843,46.62,86.369,0.9663,-1,-1,-1
321,-1,475.259,181.725,40.841,51.983,0.909376,-1,-1,-1
321,-1,454.497,174.532,38.02,71.884,0.830912,-1,-1,-1
322,-1,461.625,177.086,37.999,56.598,0.947209,-1,-1,-1
322,-1,1098.1,282.902,49,76.809,0.888505,-1,-1,-1
322,-1,451.09,170.898,23.227,67.372,0.531006,-1,-1,-1
323,-1,456.509,173.972,34.927,86.329,0.962425,-1,-1,-1
323,-1,446.165,170.341,25.72,73.333,0.786636,-1,-1,-1
323,-1,717.256,167.444,21.879,62.928,0.657731,-1,-1,-1
324,-1,454.607,176.149,32.997,78.437,0.969711,-1,-1,-1
324,-1,721.809,166.181,31.627,87.237,0.813505,-1,-1,-1
324,-1,708.285,166.812,24.605,67.935,0.672521,-1,-1,-1
325,-1,451.036,169.345,36.612,99.207,0.957983,-1,-1,-1
325,-1,428.608,169.982,38.972,95.138,0.950704,-1,-1,-1
325,-1,871.199,232.886,31.229,87.336,0.682499,-1,-1,-1
325,-1,734.644,159.226,23.445,69.486,0.656459,-1,-1,-1
326,-1,461.171,170.175,40.901,98.936,0.950082,-1,-1,-1
326,-1,428.045,182.475,37.906,77.256,0.94764,-1,-1,-1
326,-1,723.424,156.51,34.486,95.224,0.937426,-1,-1,-1
326,-1,908.902,259.693,40.67,100.175,0.667526,-1,-1,-1
327,-1,443.706,181.97,43.254,100.451,0.963885,-1,-1,-1
327,-1,966.047,254.725,34.773,103.852,0.949458,-1,-1,-1
327,-1,727.295,170.056,32.643,69.708,0.941633,-1,-1,-1
327,-1,413.291,189.921,37.403,85.658,0.900128,-1,-1,-1
328,-1,445.179,178.668,45.512,102.029,0.976526,-1,-1,-1
328,-1,401.905,175.93,43.111,99.329,0.95474,-1,-1,-1
328,-1,731.34,155.799,44.663,95.526,0.944364,-1,-1,-1
328,-1,1018.98,267.07,38.96,90.077,0.692851,-1,-1,-1
328,-1,713.213,154.013,36.682,83.208,0.63735,-1,-1,-1
329,-1,431.002,182.294,41.052,109.65,0.977423,-1,-1,-1
329,-1,1109.8,290.831,45.69,68.635,0.962728,-1,-1,-1
329,-1,400.561,185.107,42.273,115.404,0.956826,-1,-1,-1
329,-1,751.616,162.83,28.163,89.154,0.855134,-1,-1,-1
330,-1,372.348,185.411,54.398,113.311,0.987169,-1,-1,-1
330,-1,420.694,181.594,49.266,119.67,0.98398,-1,-1,-1
330,-1,765.72,154.214,33.216,90.351,0.819916,-1,-1,-1
330,-1,741.972,162.649,30.673,94.343,0.749411,-1,-1,-1
331,-1,366.524,178.573,41.64,113.291,0.980361,-1,-1,-1
331,-1,409.838,183.261,48.267,113.522,0.977901,-1,-1,-1
331,-1,756.891,160.559,33.339,96.705,0.951641,-1,-1,-1
331,-1,383.191,161.983,53.034,159.51,0.666056,-1,-1,-1
332,-1,387.145,175.986,62.394,127.896,0.977244,-1,-1,-1
332,-1,756.721,158.201,47.061,105.596,0.972348,-1,-1,-1
332,-1,336.087,174.469,52.57,140.808,0.971069,-1,-1,-1
332,-1,903.998,242.009,34.113,104.024,0.908721,-1,-1,-1
332,-1,364.153,189.83,41.913,106.135,0.801974,-1,-1,-1
332,-1,736.224,161.3,37.896,93.063,0.639118,-1,-1,-1
332,-1,790.486,164.97,27.833,84.069,0.576139,-1,-1,-1
333,-1,372.902,174.728,58.466,157.008,0.973615,-1,-1,-1
333,-1,327.709,181.438,42.873,148.296,0.969587,-1,-1,-1
333,-1,774.81,155.308,43.975,117.189,0.967054,-1,-1,-1
333,-1,925.983,250.744,36.181,104.125,0.954166,-1,-1,-1
333,-1,890.311,164.288,49.391,78.512,0.719593,-1,-1,-1
333,-1,735.252,177.821,32.027,82.384,0.572984,-1,-1,-1
333,-1,751.414,167.325,36.638,105.729,0.513317,-1,-1,-1
334,-1,358.908,178.784,46.069,169.626,0.976653,-1,-1,-1
334,-1,785.701,156.787,49.472,129.836,0.966493,-1,-1,-1
334,-1,297.436,184.224,55.516,160.807,0.963153,-1,-1,-1
334,-1,983.883,274.369,39.037,86.545,0.934036,-1,-1,-1
334,-1,906.268,166.464,42.626,72.488,0.675405,-1,-1,-1
334,-1,751.745,169.304,27.964,86.893,0.631305,-1,-1,-1
335,-1,333.381,174.275,63.254,185.871,0.980824,-1,-1,-1
335,-1,1041.34,289.099,45.82,65.286,0.967167,-1,-1,-1
335,-1,803.931,161.956,42.271,130.194,0.930257,-1,-1,-1
335,-1,287.228,188.833,42.927,159.619,0.925312,-1,-1,-1
335,-1,759.365,169.854,41.835,89.727,0.834337,-1,-1,-1
335,-1,926.951,174.449,48.93,75.172,0.770715,-1,-1,-1
336,-1,303.844,186.132,75.016,169.332,0.97492,-1,-1,-1
336,-1,763.75,163.051,38.035,102.071,0.965448,-1,-1,-1
336,-1,815.529,155.97,42.933,129.505,0.912646,-1,-1,-1
336,-1,250.865,188.142,58.447,180.214,0.911233,-1,-1,-1
336,-1,933.369,175.704,35.19,72.614,0.884073,-1,-1,-1
336,-1,909.35,169.639,39.966,77.464,0.873233,-1,-1,-1
337,-1,272.205,177.33,74.397,194.485,0.982882,-1,-1,-1
337,-1,218.949,184.704,68.044,178.9,0.976111,-1,-1,-1
337,-1,832.8,147.343,44.537,137.668,0.961095,-1,-1,-1
337,-1,771.072,161.508,47.499,120.068,0.955929,-1,-1,-1
337,-1,931.261,169.554,32.876,85.165,0.928855,-1,-1,-1
337,-1,959.335,170.891,42.185,69.006,0.913654,-1,-1,-1
338,-1,253.269,183.838,67.667,186.15,0.9912,-1,-1,-1
338,-1,850.6,146.943,48.522,154.012,0.958671,-1,-1,-1
338,-1,945.854,173.207,37.451,85.367,0.955694,-1,-1,-1
338,-1,775.959,154.401,67.155,120.065,0.915547,-1,-1,-1
338,-1,185.407,163.795,64.228,199.055,0.890077,-1,-1,-1
338,-1,976.132,180.582,25.248,76.075,0.678133,-1,-1,-1
339,-1,215.437,170.402,78.078,190.566,0.992256,-1,-1,-1
339,-1,790.511,144.371,64.979,138.101,0.980998,-1,-1,-1
339,-1,869.466,148.92,52.135,195.599,0.950098,-1,-1,-1
339,-1,955.94,176.425,44.08,81.653,0.934038,-1,-1,-1
339,-1,148.177,166.61,56.285,143.54,0.797657,-1,-1,-1
339,-1,982.711,173.075,40.159,67.851,0.585985,-1,-1,-1
340,-1,800.019,139.713,65.685,162.962,0.98916,-1,-1,-1
340,-1,165.911,173.417,86.205,198.671,0.986945,-1,-1,-1
340,-1,881.722,140.292,45.963,170.431,0.983809,-1,-1,-1
340,-1,993.422,167.396,46.518,102.415,0.940571,-1,-1,-1
340,-1,92.4337,160.702,84.2883,174.359,0.885339,-1,-1,-1
================================================
FILE: data/KITTI-17/det.txt
================================================
1,-1,477.417,133.575,60.972,206.672,0.985314,-1,-1,-1
1,-1,387.83,158.467,100.509,182.139,0.97094,-1,-1,-1
2,-1,417.554,152.34,87.063,188.592,0.990937,-1,-1,-1
2,-1,499.257,139.014,65.487,203.564,0.990493,-1,-1,-1
3,-1,498.214,128.481,70.59,200.297,0.995258,-1,-1,-1
3,-1,424.154,153.412,82.495,189.499,0.986761,-1,-1,-1
4,-1,439.309,143.884,80.462,208.168,0.994842,-1,-1,-1
4,-1,518.468,130,55.275,219.953,0.987654,-1,-1,-1
5,-1,516.955,131.026,86.723,210.707,0.993197,-1,-1,-1
5,-1,460.852,141.261,60.075,210.584,0.983597,-1,-1,-1
6,-1,538.367,144.488,63.531,206.507,0.99477,-1,-1,-1
6,-1,457.382,156.632,89.806,185.123,0.989349,-1,-1,-1
7,-1,481.114,140.433,71.365,210.658,0.991944,-1,-1,-1
7,-1,551.227,140.883,64.373,200.49,0.985207,-1,-1,-1
8,-1,559.924,142.305,58.757,191.829,0.990819,-1,-1,-1
8,-1,492.365,155.3,70.165,180.783,0.975726,-1,-1,-1
9,-1,580.236,134.541,52.879,209.277,0.986716,-1,-1,-1
9,-1,506.963,158.328,67.037,192.508,0.963329,-1,-1,-1
10,-1,581.56,132.447,63.044,202.526,0.991309,-1,-1,-1
10,-1,520.272,150.418,76.956,194.572,0.985844,-1,-1,-1
11,-1,526.89,158.186,84.713,184.466,0.993296,-1,-1,-1
11,-1,243.122,136.767,55.327,160.776,0.966675,-1,-1,-1
11,-1,602.995,147.678,59.739,194.772,0.964845,-1,-1,-1
12,-1,545.382,151.221,84.428,198.4,0.990525,-1,-1,-1
12,-1,613.926,145.141,62.962,205.249,0.97402,-1,-1,-1
12,-1,243.57,138.252,64.629,158.576,0.950364,-1,-1,-1
12,-1,508.681,135.805,34.921,48.726,0.770134,-1,-1,-1
13,-1,552.147,151.93,109.293,207.661,0.988067,-1,-1,-1
13,-1,626.171,150.045,71.227,203.925,0.97436,-1,-1,-1
13,-1,254.982,133.642,67.075,155.124,0.968768,-1,-1,-1
13,-1,504.996,129.224,31.287,67.245,0.736315,-1,-1,-1
14,-1,646.888,146.608,53.491,215.831,0.982562,-1,-1,-1
14,-1,254.132,137.935,80.497,173.445,0.981753,-1,-1,-1
14,-1,576.705,158.945,80.038,196.511,0.979956,-1,-1,-1
14,-1,494.432,134.831,32.291,63.705,0.673853,-1,-1,-1
15,-1,596.462,144.982,78.02,216.909,0.992956,-1,-1,-1
15,-1,652.59,148.269,68.964,212.625,0.979891,-1,-1,-1
15,-1,273.951,144.053,73.923,143.043,0.970793,-1,-1,-1
15,-1,495.056,138.808,30.973,58.889,0.793536,-1,-1,-1
15,-1,239.144,132.457,35.489,65.558,0.701717,-1,-1,-1
15,-1,513.07,132.169,34.991,59.766,0.635846,-1,-1,-1
16,-1,658.277,144.896,72.702,217.059,0.994229,-1,-1,-1
16,-1,588.158,150.656,85.325,202.332,0.982293,-1,-1,-1
16,-1,280.721,138.012,79.465,190.828,0.959602,-1,-1,-1
16,-1,501.933,130.656,35.502,64.356,0.865727,-1,-1,-1
16,-1,248.412,133.759,35.067,80.21,0.668597,-1,-1,-1
17,-1,585.944,144.844,134.636,213.981,0.992635,-1,-1,-1
17,-1,294.363,111.71,84.954,227.787,0.983005,-1,-1,-1
17,-1,675.009,145.081,79.413,208.379,0.97805,-1,-1,-1
17,-1,250.117,122.537,56.361,181.917,0.892538,-1,-1,-1
17,-1,502.042,128.3,32.999,74.613,0.888704,-1,-1,-1
18,-1,611.526,146.596,95.772,216.648,0.990819,-1,-1,-1
18,-1,692.732,147.877,72.097,217.009,0.988203,-1,-1,-1
18,-1,306.292,122.575,96.147,211.919,0.93201,-1,-1,-1
18,-1,515.683,132.887,29.373,69.346,0.882139,-1,-1,-1
18,-1,270.158,138.546,49.195,88.054,0.736707,-1,-1,-1
18,-1,492.035,131.088,35.295,72.246,0.691443,-1,-1,-1
18,-1,531.568,133.657,34.314,58.537,0.607998,-1,-1,-1
19,-1,1137.03,152.72,75.94,200.635,0.992521,-1,-1,-1
19,-1,627.896,154.608,90.639,208.011,0.986729,-1,-1,-1
19,-1,699.173,147.827,72.027,204.524,0.984407,-1,-1,-1
19,-1,513.547,146.26,40.269,40.626,0.903117,-1,-1,-1
19,-1,298.742,97.7595,114.26,232.805,0.632553,-1,-1,-1
19,-1,269.32,168.094,49.147,162.952,0.580045,-1,-1,-1
20,-1,1110.97,147.083,93.93,204.555,0.989922,-1,-1,-1
20,-1,655.651,150.686,71.216,204.238,0.988635,-1,-1,-1
20,-1,717.646,133.151,64.105,204.442,0.982856,-1,-1,-1
20,-1,341.731,139.206,69.428,173.432,0.966457,-1,-1,-1
20,-1,501.043,139.33,38.015,56.837,0.92032,-1,-1,-1
20,-1,270.223,136.66,73.055,205.994,0.900745,-1,-1,-1
20,-1,527.618,128.109,29.106,76.934,0.826132,-1,-1,-1
21,-1,1065.35,137.664,109.9,204.279,0.994954,-1,-1,-1
21,-1,661.086,144.409,80.13,223.942,0.986304,-1,-1,-1
21,-1,352.263,126.622,74.738,210.318,0.986061,-1,-1,-1
21,-1,262.748,129.176,86.378,201.011,0.978803,-1,-1,-1
21,-1,715.351,137.086,89.3,229.777,0.955809,-1,-1,-1
21,-1,505.778,131.401,41.021,69.075,0.947781,-1,-1,-1
21,-1,488.333,141.133,38.818,47.775,0.618705,-1,-1,-1
22,-1,1020.95,156.635,124.72,212.365,0.998364,-1,-1,-1
22,-1,360.28,139.031,78.158,202.284,0.99343,-1,-1,-1
22,-1,672.848,152.484,125.333,202.009,0.992134,-1,-1,-1
22,-1,287.509,141.523,75.143,195.33,0.984796,-1,-1,-1
22,-1,502.857,130.311,41.631,71.539,0.910746,-1,-1,-1
23,-1,988.488,153.99,128.762,215.01,0.997118,-1,-1,-1
23,-1,694.397,150.384,116.378,212.948,0.992191,-1,-1,-1
23,-1,389.495,129.369,83.391,199.016,0.972051,-1,-1,-1
23,-1,303.499,125.414,70.802,208.935,0.971455,-1,-1,-1
23,-1,770.41,151.174,64.048,178.105,0.939877,-1,-1,-1
23,-1,514.385,126.464,40.932,71.341,0.903706,-1,-1,-1
24,-1,972.444,152.777,100.536,216.223,0.997928,-1,-1,-1
24,-1,702.512,143.946,123.666,225.054,0.987845,-1,-1,-1
24,-1,395.217,148.407,79.41,175.846,0.986072,-1,-1,-1
24,-1,780.052,145.273,73.945,211.387,0.985581,-1,-1,-1
24,-1,311.56,138.404,82.799,192.662,0.983229,-1,-1,-1
24,-1,516.884,137.63,24.976,64.221,0.902676,-1,-1,-1
25,-1,729.324,144.667,84.494,213.094,0.993443,-1,-1,-1
25,-1,788.849,146.521,78.937,211.443,0.992757,-1,-1,-1
25,-1,320.087,117.802,88.738,221.897,0.990407,-1,-1,-1
25,-1,940.321,154.884,95.799,198.341,0.98638,-1,-1,-1
25,-1,386.62,135.074,93.712,190.873,0.985291,-1,-1,-1
25,-1,520.736,127.93,27.358,62.127,0.865737,-1,-1,-1
26,-1,926.931,148.619,77.109,216.247,0.996362,-1,-1,-1
26,-1,748.49,144.39,89.364,211.453,0.989616,-1,-1,-1
26,-1,335.219,127.673,73.016,203.758,0.983305,-1,-1,-1
26,-1,815.872,140.195,65.675,209.279,0.979055,-1,-1,-1
26,-1,435.049,145.554,67.023,178.154,0.949972,-1,-1,-1
26,-1,502.273,143.12,46.092,45.576,0.867716,-1,-1,-1
26,-1,533.604,127.301,27.433,66.101,0.604577,-1,-1,-1
27,-1,743.485,148.442,120.698,206.747,0.996165,-1,-1,-1
27,-1,441.556,134.29,65.14,198.513,0.994304,-1,-1,-1
27,-1,337.845,128.873,80.866,204.999,0.991101,-1,-1,-1
27,-1,898.43,147.046,92.126,219.091,0.987951,-1,-1,-1
27,-1,828.334,130.409,72.911,229.751,0.981773,-1,-1,-1
27,-1,512.341,129.576,26.788,74.707,0.869709,-1,-1,-1
27,-1,532.829,130.121,30.182,68.35,0.665174,-1,-1,-1
28,-1,748.634,162.24,137.411,186.881,0.997454,-1,-1,-1
28,-1,344.589,126.85,91.976,218.63,0.993603,-1,-1,-1
28,-1,442.262,142.387,80.652,187.248,0.993461,-1,-1,-1
28,-1,865.642,153.789,85.54,212.906,0.992316,-1,-1,-1
28,-1,518.638,136.811,30.306,71.435,0.88073,-1,-1,-1
29,-1,762.447,163.491,145.149,193.519,0.995288,-1,-1,-1
29,-1,468.135,144.483,64.049,189.614,0.993769,-1,-1,-1
29,-1,868.531,139.971,77.598,215.89,0.990386,-1,-1,-1
29,-1,374.811,126.193,69.982,212.189,0.977368,-1,-1,-1
29,-1,525.647,133.665,35.183,58.551,0.798725,-1,-1,-1
29,-1,511.892,143.208,28.809,65.25,0.513312,-1,-1,-1
30,-1,382.504,133.699,69.255,212.322,0.990416,-1,-1,-1
30,-1,878.396,143.56,85.858,202.131,0.989074,-1,-1,-1
30,-1,805.042,156.973,85.717,203.859,0.988266,-1,-1,-1
30,-1,489.141,134.497,62.357,210.521,0.96237,-1,-1,-1
31,-1,390.194,137.987,82.269,216.46,0.991865,-1,-1,-1
31,-1,867.058,147.418,131.861,204.437,0.988828,-1,-1,-1
31,-1,498.253,148.267,58.864,190.287,0.981512,-1,-1,-1
31,-1,800.032,168.723,82.96,177.158,0.974406,-1,-1,-1
32,-1,389.901,131.531,85.163,205.883,0.996101,-1,-1,-1
32,-1,765.883,171.614,84.49,185.265,0.993425,-1,-1,-1
32,-1,507.498,144.881,54.033,185.281,0.992058,-1,-1,-1
32,-1,840.814,142.029,123.886,226.545,0.991394,-1,-1,-1
32,-1,918.373,146.86,76.194,166.791,0.907112,-1,-1,-1
33,-1,424.416,131.801,70.769,204.587,0.995888,-1,-1,-1
33,-1,751.619,157.832,72.877,211.017,0.994081,-1,-1,-1
33,-1,868.265,142.329,119.326,226.671,0.99356,-1,-1,-1
33,-1,525.025,141.447,55.195,205.208,0.992997,-1,-1,-1
33,-1,942.308,142.163,81.842,224.503,0.957417,-1,-1,-1
34,-1,532.358,144.919,81.585,189.841,0.997954,-1,-1,-1
34,-1,887.07,143.79,171.59,225.21,0.996937,-1,-1,-1
34,-1,436.256,127.446,63.382,213.095,0.99496,-1,-1,-1
34,-1,738.448,152.243,69.452,207.5,0.991548,-1,-1,-1
35,-1,707.22,154.089,90.47,202.049,0.995786,-1,-1,-1
35,-1,925.908,145.876,147.292,219.278,0.995388,-1,-1,-1
35,-1,544.032,143.082,77.202,203.875,0.994122,-1,-1,-1
35,-1,440.362,118.205,76.234,227.972,0.983383,-1,-1,-1
36,-1,942.39,138.025,161.9,230.975,0.997991,-1,-1,-1
36,-1,454.249,124.12,83.205,229.849,0.995744,-1,-1,-1
36,-1,561.419,152.062,68.536,190.918,0.994899,-1,-1,-1
36,-1,680.844,154.073,97.462,191.754,0.99227,-1,-1,-1
37,-1,968.99,140.467,140.87,228.533,0.99535,-1,-1,-1
37,-1,675.849,165.272,66.87,194.889,0.991089,-1,-1,-1
37,-1,468.679,133.923,75.469,208.105,0.987769,-1,-1,-1
37,-1,581.011,157.905,60.337,203.258,0.987422,-1,-1,-1
38,-1,997.483,150.978,135.027,205.389,0.997767,-1,-1,-1
38,-1,586.995,154.427,73.444,195.013,0.990785,-1,-1,-1
38,-1,486.675,137.87,68.312,209.231,0.98775,-1,-1,-1
38,-1,653.762,154.102,63.101,189.665,0.986379,-1,-1,-1
39,-1,1011.26,138.367,172.94,226.287,0.997312,-1,-1,-1
39,-1,499.05,139.897,68.148,211.013,0.996044,-1,-1,-1
39,-1,600.548,148.505,96.849,209.797,0.993612,-1,-1,-1
40,-1,1057.39,146.303,148.7,215.955,0.996407,-1,-1,-1
40,-1,522.413,134.241,70.71,191.788,0.994969,-1,-1,-1
40,-1,616.444,156.134,90.486,187.179,0.987612,-1,-1,-1
41,-1,1068.75,145.787,154.25,201.555,0.998598,-1,-1,-1
41,-1,524.907,149.078,79.776,217.432,0.994079,-1,-1,-1
41,-1,637.447,145.925,78.934,199.364,0.992091,-1,-1,-1
41,-1,591.065,151.068,52.421,182.831,0.833123,-1,-1,-1
42,-1,1107.31,136.34,115.69,228.602,0.999023,-1,-1,-1
42,-1,531.8,143.894,116.306,210.931,0.995722,-1,-1,-1
42,-1,648.454,146.365,67.038,198.678,0.994891,-1,-1,-1
43,-1,672.193,156.895,67.921,201.577,0.995798,-1,-1,-1
43,-1,549.815,146.834,85.677,197.886,0.992412,-1,-1,-1
43,-1,1142.75,157.674,80.25,197.761,0.966967,-1,-1,-1
44,-1,664.2,143.295,104.465,222.849,0.99581,-1,-1,-1
44,-1,599.835,139.36,56.164,201.788,0.985223,-1,-1,-1
44,-1,527.615,158.161,87.116,196.663,0.98484,-1,-1,-1
44,-1,1170.61,133.584,52.39,226.25,0.560709,-1,-1,-1
45,-1,691.284,159.42,88.546,194.804,0.998416,-1,-1,-1
45,-1,591.165,125.296,85.368,242.417,0.993842,-1,-1,-1
45,-1,510.245,151.442,65.342,174.842,0.960311,-1,-1,-1
46,-1,706.798,152.322,90.844,205.441,0.998464,-1,-1,-1
46,-1,620.12,139.133,73.071,214.819,0.992269,-1,-1,-1
46,-1,494.915,136.342,67.32,195.538,0.977863,-1,-1,-1
46,-1,562.174,152.628,26.421,71.81,0.85485,-1,-1,-1
47,-1,717.099,150.498,90.195,214.998,0.997254,-1,-1,-1
47,-1,633.931,119.265,77.598,243.723,0.997102,-1,-1,-1
47,-1,488.178,148.003,53.256,176.662,0.976217,-1,-1,-1
47,-1,559.84,148.612,29.018,64.534,0.925171,-1,-1,-1
47,-1,597.467,153.221,32.613,53.993,0.558801,-1,-1,-1
48,-1,630.278,138.088,112.607,222.466,0.997115,-1,-1,-1
48,-1,735.071,140.816,83.664,223.865,0.995783,-1,-1,-1
48,-1,454.795,132.81,62.723,203.719,0.945832,-1,-1,-1
48,-1,559.51,147.494,25.872,79.694,0.904358,-1,-1,-1
48,-1,574.452,143.956,24.929,66.003,0.851921,-1,-1,-1
48,-1,588.797,144.91,24.624,69.027,0.841466,-1,-1,-1
48,-1,533.806,144.233,19.845,71.179,0.662942,-1,-1,-1
48,-1,548.394,140.58,21.41,84.429,0.589504,-1,-1,-1
49,-1,668.334,123.71,87.174,245.29,0.996213,-1,-1,-1
49,-1,416.018,152.786,103.779,171.755,0.993063,-1,-1,-1
49,-1,755.935,138.66,88.104,220.974,0.981243,-1,-1,-1
49,-1,572.487,143.751,27.706,64.24,0.895957,-1,-1,-1
49,-1,550.33,136.128,31.468,74.17,0.836923,-1,-1,-1
49,-1,530.424,141.267,22.285,65.133,0.774813,-1,-1,-1
49,-1,591.873,141.278,25.24,80.423,0.715537,-1,-1,-1
50,-1,766.261,136.971,93.724,220.035,0.995611,-1,-1,-1
50,-1,685.558,120.277,78.265,246.681,0.992815,-1,-1,-1
50,-1,410.098,147.151,79.725,183.971,0.972143,-1,-1,-1
50,-1,578.095,144.506,30.575,70.431,0.914374,-1,-1,-1
50,-1,520.567,139.448,24.057,66.929,0.899085,-1,-1,-1
50,-1,594.672,146.489,30.741,59.498,0.806166,-1,-1,-1
50,-1,536.372,138.439,23.81,78.919,0.80524,-1,-1,-1
51,-1,794.526,133.007,85.322,235.608,0.997255,-1,-1,-1
51,-1,695.415,114.435,98.371,253.983,0.975761,-1,-1,-1
51,-1,383.425,126.011,86.676,205.861,0.949157,-1,-1,-1
51,-1,582.245,135.844,33.273,70.602,0.887017,-1,-1,-1
51,-1,534.313,136.536,37.751,85.175,0.836034,-1,-1,-1
51,-1,524.289,133.755,25.181,74.838,0.802809,-1,-1,-1
51,-1,564.675,139.489,24.284,73.977,0.748594,-1,-1,-1
52,-1,703.688,105.948,112.8,263.052,0.997783,-1,-1,-1
52,-1,828.156,142.905,78.301,215.034,0.995528,-1,-1,-1
52,-1,367.055,143.016,83.904,191.641,0.985572,-1,-1,-1
52,-1,578.341,145.712,36.82,77.48,0.949827,-1,-1,-1
52,-1,535.956,135.051,35.922,82.551,0.84673,-1,-1,-1
52,-1,564.779,139.075,27.248,73.332,0.730768,-1,-1,-1
52,-1,599.034,148.015,30.139,56.98,0.715715,-1,-1,-1
52,-1,511.359,134.151,29.752,73.584,0.585065,-1,-1,-1
53,-1,726.978,118.022,101.212,244.741,0.995348,-1,-1,-1
53,-1,850.706,136.374,80.494,221.563,0.995169,-1,-1,-1
53,-1,318.497,111.191,131.789,236.28,0.948754,-1,-1,-1
53,-1,579.058,151.016,32.942,74.502,0.910853,-1,-1,-1
53,-1,528.146,138.538,31.072,69.678,0.872469,-1,-1,-1
53,-1,593.676,145.814,38.03,62.231,0.845746,-1,-1,-1
53,-1,565.1,143.672,23.575,67.548,0.668562,-1,-1,-1
53,-1,512.566,139.762,28.05,65.914,0.536471,-1,-1,-1
54,-1,745.983,124.023,102.145,244.977,0.997919,-1,-1,-1
54,-1,870.653,134.054,75.538,216.489,0.995822,-1,-1,-1
54,-1,310.242,99.166,128.243,237.819,0.962206,-1,-1,-1
54,-1,530.274,131.939,25.136,68.32,0.879063,-1,-1,-1
54,-1,583.6,142.075,28.632,67.676,0.857445,-1,-1,-1
54,-1,540.941,138.053,34.679,82.585,0.843777,-1,-1,-1
54,-1,563.426,138.679,30.664,80.509,0.614124,-1,-1,-1
54,-1,514.766,141.941,26.131,61.739,0.503103,-1,-1,-1
55,-1,769.858,107.945,102.217,261.055,0.997446,-1,-1,-1
55,-1,882.91,140.764,121.02,205.868,0.996003,-1,-1,-1
55,-1,521.771,130.491,37.499,81.474,0.924019,-1,-1,-1
55,-1,590.268,136.244,38.261,82.9,0.830351,-1,-1,-1
55,-1,318.106,108.897,80.215,214.366,0.737786,-1,-1,-1
55,-1,557.657,138.009,24.747,74.703,0.629271,-1,-1,-1
56,-1,899.947,148.34,148.363,209.051,0.997479,-1,-1,-1
56,-1,788.471,117.302,117.823,233.653,0.997273,-1,-1,-1
56,-1,311.72,139.538,71.491,190.195,0.99477,-1,-1,-1
56,-1,530.251,137.539,28.929,68.805,0.956887,-1,-1,-1
56,-1,600.824,142.103,35.107,77.989,0.875682,-1,-1,-1
56,-1,547.446,132.487,31.236,77.447,0.826384,-1,-1,-1
56,-1,580.754,138.847,36.525,67.971,0.625784,-1,-1,-1
57,-1,819.915,106.998,104.566,262.002,0.997379,-1,-1,-1
57,-1,932.856,135.16,116.724,227.899,0.996656,-1,-1,-1
57,-1,281.032,130.045,91.085,195.839,0.985281,-1,-1,-1
57,-1,535.044,140.647,37.902,83.108,0.9303,-1,-1,-1
57,-1,598.533,146.675,32.67,75.117,0.91543,-1,-1,-1
57,-1,557.46,140.02,36.731,87.04,0.635052,-1,-1,-1
57,-1,580.164,143.982,31.669,65.662,0.517928,-1,-1,-1
58,-1,961.707,145.285,133.873,197.583,0.998042,-1,-1,-1
58,-1,845.245,107.066,95.13,261.012,0.99724,-1,-1,-1
58,-1,274.905,137.502,88.692,199.365,0.978221,-1,-1,-1
58,-1,533.033,133.183,34.643,78.65,0.921729,-1,-1,-1
58,-1,600.818,142.017,35.51,82.449,0.879731,-1,-1,-1
58,-1,554.945,133.698,38.526,88.521,0.795551,-1,-1,-1
58,-1,581.23,142.788,36.94,67.136,0.520343,-1,-1,-1
59,-1,999.051,129.547,94.239,205.522,0.996783,-1,-1,-1
59,-1,855.987,116.014,127.586,244.632,0.996181,-1,-1,-1
59,-1,262.583,130.475,74.561,214.264,0.987222,-1,-1,-1
59,-1,540.516,129.632,35.967,78.384,0.943728,-1,-1,-1
59,-1,600.625,144.584,31.864,75.516,0.809646,-1,-1,-1
60,-1,902.047,104.474,103.113,264.526,0.997961,-1,-1,-1
60,-1,1035.4,142.667,83.44,193.376,0.993725,-1,-1,-1
60,-1,250.727,142.001,73.609,173.266,0.992396,-1,-1,-1
60,-1,544.754,141.008,36.756,81.468,0.949773,-1,-1,-1
60,-1,601.386,142.208,36.163,87.953,0.808993,-1,-1,-1
60,-1,573.333,141.632,37.051,70.16,0.668701,-1,-1,-1
61,-1,924.877,97.7567,123.493,263.338,0.998709,-1,-1,-1
61,-1,1061.66,146.278,87.62,178.913,0.995757,-1,-1,-1
61,-1,541.092,131.498,35.785,77.753,0.944162,-1,-1,-1
61,-1,606.545,150.135,33.47,79.974,0.839865,-1,-1,-1
61,-1,576.546,144.592,29.962,78.257,0.71402,-1,-1,-1
62,-1,1099.53,147.434,88.72,186.917,0.996306,-1,-1,-1
62,-1,947.615,97.7506,116.465,268.017,0.995907,-1,-1,-1
62,-1,614.086,157.72,37.111,73.738,0.935915,-1,-1,-1
62,-1,557.626,138.363,33.138,81.839,0.864147,-1,-1,-1
62,-1,542.072,131.627,30.623,81.063,0.593382,-1,-1,-1
63,-1,981.419,89.2527,133.391,278.249,0.996812,-1,-1,-1
63,-1,1132.98,127.26,90.02,228.502,0.993643,-1,-1,-1
63,-1,541.336,140.813,34.365,72.155,0.942259,-1,-1,-1
63,-1,606.831,154.104,43.971,85.722,0.939383,-1,-1,-1
63,-1,575.272,155.886,33.356,61.747,0.591051,-1,-1,-1
64,-1,1018.74,102.729,120.44,265.196,0.994183,-1,-1,-1
64,-1,1166.79,132.34,56.21,232.583,0.992251,-1,-1,-1
64,-1,550.058,137.777,33.132,82.226,0.935987,-1,-1,-1
64,-1,619.789,150.946,33.714,79.074,0.910749,-1,-1,-1
64,-1,566.901,138.776,40.517,92.279,0.850669,-1,-1,-1
64,-1,530.121,141.056,31.708,69.493,0.544124,-1,-1,-1
65,-1,1045.98,97.8839,134.98,271.116,0.995377,-1,-1,-1
65,-1,542.282,138.03,32.937,72.674,0.909059,-1,-1,-1
65,-1,561.354,134.64,32.358,73.38,0.882666,-1,-1,-1
65,-1,622.936,141.5,42.527,99.509,0.505498,-1,-1,-1
66,-1,1080.9,96.2023,142.1,258.015,0.996625,-1,-1,-1
66,-1,626.89,151.208,46.554,99.93,0.941827,-1,-1,-1
66,-1,568.385,139.31,31.259,86.274,0.929489,-1,-1,-1
66,-1,549.254,136.818,32.294,83.468,0.910696,-1,-1,-1
67,-1,1132.48,115.64,90.52,253.36,0.983466,-1,-1,-1
67,-1,632.658,147.922,53.97,101.454,0.980625,-1,-1,-1
67,-1,570.915,140.71,30.199,80.849,0.947375,-1,-1,-1
67,-1,543.621,140.406,40.053,77.973,0.889698,-1,-1,-1
68,-1,636.335,149.298,46.891,107.579,0.984139,-1,-1,-1
68,-1,1173.02,155.116,49.98,212.538,0.94388,-1,-1,-1
68,-1,564.02,130.024,35.144,90.963,0.911028,-1,-1,-1
68,-1,547.656,138.762,30.17,75.929,0.873519,-1,-1,-1
69,-1,636.281,142.603,49.68,117.004,0.985381,-1,-1,-1
69,-1,557.126,137.461,36.877,87.9,0.847137,-1,-1,-1
69,-1,540.961,139.333,26.896,79.399,0.552473,-1,-1,-1
70,-1,642.763,144.576,48.086,112.445,0.988713,-1,-1,-1
70,-1,550.616,138.93,27.603,70.242,0.841119,-1,-1,-1
70,-1,571.3,139.054,37.614,87.891,0.778405,-1,-1,-1
70,-1,593.199,147.587,31.063,80.218,0.566084,-1,-1,-1
71,-1,646.492,150.295,47.819,108.389,0.986628,-1,-1,-1
71,-1,547.705,136.677,28.626,72.633,0.91078,-1,-1,-1
71,-1,568.856,131.044,39.56,96.536,0.825951,-1,-1,-1
71,-1,595.562,154.669,32.026,71.598,0.657272,-1,-1,-1
72,-1,649.906,152.669,47.516,107.076,0.983221,-1,-1,-1
72,-1,539.016,142.354,28.552,68.253,0.883516,-1,-1,-1
72,-1,557.269,143.097,30.208,78.13,0.839922,-1,-1,-1
72,-1,598.516,153.791,28.409,69.451,0.766545,-1,-1,-1
72,-1,577.131,131.926,28.209,90.454,0.637434,-1,-1,-1
73,-1,655.947,151.935,48.564,104.215,0.991031,-1,-1,-1
73,-1,548.063,137.922,30.003,71.708,0.83926,-1,-1,-1
73,-1,591.058,146.006,29.388,78.916,0.829215,-1,-1,-1
74,-1,659.99,151.303,52.953,108.713,0.989688,-1,-1,-1
74,-1,594.672,139.563,28.973,77.715,0.768182,-1,-1,-1
74,-1,542.78,136.862,51.949,97.593,0.754138,-1,-1,-1
75,-1,671.963,153.689,48.971,99.237,0.974804,-1,-1,-1
75,-1,598.139,141.329,27.745,68.673,0.918353,-1,-1,-1
75,-1,553.026,134.749,35.439,81.864,0.891484,-1,-1,-1
76,-1,673.82,147.678,55.561,118.795,0.983847,-1,-1,-1
76,-1,600.14,148.823,32.633,67.8,0.948514,-1,-1,-1
76,-1,553.984,139.594,39.571,91.332,0.932204,-1,-1,-1
77,-1,688.474,159.334,54.741,109.011,0.984013,-1,-1,-1
77,-1,553.918,145.54,32.185,81.059,0.970857,-1,-1,-1
77,-1,598.461,157.012,30.859,75.439,0.939432,-1,-1,-1
78,-1,689.907,156.46,50.789,113.282,0.976419,-1,-1,-1
78,-1,551.819,136.928,41.667,87.221,0.974012,-1,-1,-1
78,-1,609.405,143.372,27.771,65.526,0.958913,-1,-1,-1
79,-1,699.926,146.418,46.174,142.917,0.978794,-1,-1,-1
79,-1,553.272,134.296,37.167,96.473,0.971058,-1,-1,-1
79,-1,607.33,139.691,34.081,73.011,0.945,-1,-1,-1
79,-1,670.111,150.023,31.969,82.845,0.649826,-1,-1,-1
80,-1,698.942,153.656,64.629,124.252,0.986537,-1,-1,-1
80,-1,559.362,139.515,36.191,90.556,0.958294,-1,-1,-1
80,-1,663.059,148.6,41.02,93.134,0.900167,-1,-1,-1
80,-1,604.929,149.629,34.642,76.225,0.86652,-1,-1,-1
81,-1,709.675,153.762,54.559,134.541,0.984462,-1,-1,-1
81,-1,557.339,131.079,37.949,101.88,0.966391,-1,-1,-1
81,-1,674.824,159.005,29.508,84.866,0.889064,-1,-1,-1
81,-1,618.981,147.77,30.088,74.474,0.877249,-1,-1,-1
82,-1,703.327,141.126,74.091,164.636,0.984548,-1,-1,-1
82,-1,547.114,134.465,61.025,104.567,0.949922,-1,-1,-1
82,-1,620.995,153.257,31.135,71.572,0.944156,-1,-1,-1
82,-1,680.338,149.184,32.72,86.316,0.770752,-1,-1,-1
83,-1,719.446,152.799,60.055,140.649,0.986426,-1,-1,-1
83,-1,547.987,131.092,62.305,93.957,0.952284,-1,-1,-1
83,-1,616.814,134.089,38.101,96.17,0.851617,-1,-1,-1
83,-1,675.841,140.711,31.458,87.937,0.645096,-1,-1,-1
84,-1,735.708,131.118,60.958,176.803,0.988403,-1,-1,-1
84,-1,625.38,150.357,30.227,83.827,0.917445,-1,-1,-1
84,-1,684.736,149.532,29.111,81.657,0.9095,-1,-1,-1
84,-1,554.205,125.757,43.253,110.001,0.757334,-1,-1,-1
85,-1,732.717,127.852,75.079,167.785,0.986208,-1,-1,-1
85,-1,560.835,131.66,44.91,104.489,0.975554,-1,-1,-1
85,-1,635.501,154.667,31.233,72.515,0.940865,-1,-1,-1
85,-1,674.92,151.275,38.783,76.814,0.892694,-1,-1,-1
85,-1,614.369,146.393,35.787,79.586,0.585745,-1,-1,-1
86,-1,738.349,140.039,62.879,178.244,0.989647,-1,-1,-1
86,-1,550.883,136.964,59.522,102.061,0.965281,-1,-1,-1
86,-1,626.562,151.267,40.384,89.635,0.964573,-1,-1,-1
86,-1,682.604,162.645,36.059,70.705,0.922638,-1,-1,-1
86,-1,653.654,145.007,26.904,82.269,0.511496,-1,-1,-1
87,-1,753.372,137.504,60.975,173.911,0.990948,-1,-1,-1
87,-1,574.209,127.306,40.472,111.504,0.988132,-1,-1,-1
87,-1,633.102,145.374,33.687,90.099,0.972985,-1,-1,-1
87,-1,689.849,140.446,36.718,97.899,0.861611,-1,-1,-1
88,-1,758.468,139.094,67.162,168.459,0.988624,-1,-1,-1
88,-1,571.437,120.784,40.121,109.523,0.965277,-1,-1,-1
88,-1,634.949,148.354,37.751,89.53,0.963649,-1,-1,-1
88,-1,690.453,151.616,33.785,77.63,0.933231,-1,-1,-1
89,-1,773.43,138.612,59.61,177.032,0.984012,-1,-1,-1
89,-1,695.334,152.716,35.471,92.685,0.96068,-1,-1,-1
89,-1,567.897,122.833,44.139,120.337,0.958825,-1,-1,-1
89,-1,638.529,145.676,34.799,87.919,0.953511,-1,-1,-1
90,-1,789.827,144.146,57.859,182.375,0.989305,-1,-1,-1
90,-1,567.579,130.542,50.966,113.71,0.980857,-1,-1,-1
90,-1,684.049,148.853,47.762,85.01,0.939045,-1,-1,-1
90,-1,630.123,151.245,33.476,95.305,0.879198,-1,-1,-1
91,-1,779.031,143.52,71.174,183.654,0.993431,-1,-1,-1
91,-1,576.744,132.585,42.816,109.469,0.986212,-1,-1,-1
91,-1,708.63,151.461,38.007,78.276,0.938992,-1,-1,-1
91,-1,640.758,146.873,34.669,92.122,0.833459,-1,-1,-1
92,-1,797.405,140.931,60.239,192.696,0.990967,-1,-1,-1
92,-1,572.597,136.29,54.747,111.532,0.987429,-1,-1,-1
92,-1,638.117,144.1,39.616,98.722,0.864331,-1,-1,-1
92,-1,700.525,142.881,34.418,83.75,0.703711,-1,-1,-1
93,-1,813.072,143.874,63.319,193.922,0.991621,-1,-1,-1
93,-1,707.345,160.354,39.664,82.912,0.980087,-1,-1,-1
93,-1,577.221,135.674,56.974,109.662,0.979199,-1,-1,-1
93,-1,636.005,146.776,38.28,100.61,0.914976,-1,-1,-1
94,-1,586.379,130.334,49.466,117.255,0.985393,-1,-1,-1
94,-1,823.628,141.122,73.818,192.471,0.98313,-1,-1,-1
94,-1,712.873,156.799,50.181,80.861,0.957801,-1,-1,-1
94,-1,632.668,156.988,39.664,74.691,0.767599,-1,-1,-1
95,-1,839.686,134.079,72.547,194.68,0.987511,-1,-1,-1
95,-1,588.028,133.166,48.895,108.939,0.981221,-1,-1,-1
95,-1,714.929,154.66,39.606,86.693,0.939747,-1,-1,-1
95,-1,641.11,148.759,39.963,95.254,0.879061,-1,-1,-1
96,-1,852.643,147.416,78.851,194.369,0.994956,-1,-1,-1
96,-1,593.76,136.876,44.087,113.766,0.983705,-1,-1,-1
96,-1,637.614,151.691,42.621,101.51,0.97586,-1,-1,-1
96,-1,717.524,146.6,39.34,103.31,0.921816,-1,-1,-1
97,-1,852.848,153.949,90.16,190.29,0.985474,-1,-1,-1
97,-1,592.898,129.74,44.709,122.129,0.984277,-1,-1,-1
97,-1,728.481,152.233,42.243,106.13,0.980086,-1,-1,-1
97,-1,646.148,153.807,37.889,100.447,0.968226,-1,-1,-1
98,-1,877.911,139.452,74.027,215.719,0.991114,-1,-1,-1
98,-1,598.994,126.541,42.926,127.119,0.985908,-1,-1,-1
98,-1,731.704,152.444,39.754,88.65,0.983724,-1,-1,-1
98,-1,641.978,147.71,35.514,102.548,0.964437,-1,-1,-1
99,-1,902.77,153.341,68.621,192.818,0.989579,-1,-1,-1
99,-1,641.889,151.007,43.651,105.785,0.969977,-1,-1,-1
99,-1,600.013,143.143,39.303,103.943,0.969326,-1,-1,-1
99,-1,731.216,160.743,45.056,92.857,0.949957,-1,-1,-1
100,-1,912.866,150.211,68.484,199.903,0.995878,-1,-1,-1
100,-1,595.423,128.074,54.26,127.575,0.968553,-1,-1,-1
100,-1,736.496,159.963,41.026,85.976,0.965925,-1,-1,-1
100,-1,643.46,135.422,42.074,121.798,0.956654,-1,-1,-1
101,-1,909.911,154.895,92.459,194.59,0.997635,-1,-1,-1
101,-1,605.487,136.37,46.751,130.172,0.973259,-1,-1,-1
101,-1,653,153.628,41.547,113.574,0.970898,-1,-1,-1
101,-1,752.864,157.921,39.072,86.183,0.929102,-1,-1,-1
102,-1,926.038,154.175,105.292,210.026,0.996549,-1,-1,-1
102,-1,604.917,128.148,52.578,133.349,0.982595,-1,-1,-1
102,-1,742.184,155.761,53.127,93.452,0.961152,-1,-1,-1
102,-1,656.445,148.399,39.607,121.284,0.958055,-1,-1,-1
103,-1,957.384,140.887,88.766,223.035,0.996853,-1,-1,-1
103,-1,607.377,143.021,44.876,117.184,0.980245,-1,-1,-1
103,-1,666.325,152.334,44.213,112.678,0.976145,-1,-1,-1
103,-1,750.933,163.671,45.367,85.186,0.926382,-1,-1,-1
104,-1,984.29,135.628,81.07,224.55,0.997315,-1,-1,-1
104,-1,748.091,162.778,58.388,88.318,0.989759,-1,-1,-1
104,-1,614.849,127.689,49.755,148.042,0.980918,-1,-1,-1
104,-1,668.226,143.259,36.29,124.698,0.975547,-1,-1,-1
105,-1,991.901,142.328,93.829,226.672,0.996825,-1,-1,-1
105,-1,606.403,127.9,52.84,141.064,0.986047,-1,-1,-1
105,-1,759.468,147.463,46.758,97.447,0.985685,-1,-1,-1
105,-1,667.855,146.287,46.092,130.599,0.977189,-1,-1,-1
106,-1,1004.47,144.628,112.56,224.301,0.998228,-1,-1,-1
106,-1,606.581,131.322,53.144,129.343,0.983274,-1,-1,-1
106,-1,669.252,139.272,60.942,155.155,0.981359,-1,-1,-1
106,-1,760.705,150.087,46.874,103.308,0.96745,-1,-1,-1
107,-1,1023.51,143.429,117.9,225.571,0.998017,-1,-1,-1
107,-1,624.186,126.087,48.822,147.691,0.981708,-1,-1,-1
107,-1,677.115,155.588,48.535,123.655,0.97732,-1,-1,-1
107,-1,768.485,143.855,44.597,119.625,0.975743,-1,-1,-1
108,-1,1054.49,147.304,111.34,221.696,0.997482,-1,-1,-1
108,-1,680.036,146.336,43.22,126.656,0.986771,-1,-1,-1
108,-1,618.683,131.142,53.202,151.426,0.986437,-1,-1,-1
108,-1,777.456,145.007,40.034,109.958,0.961837,-1,-1,-1
109,-1,1101.33,143.258,87.2,209.39,0.997119,-1,-1,-1
109,-1,782.738,160.657,51.927,108.185,0.985711,-1,-1,-1
109,-1,683.593,143.343,48.728,148.043,0.981819,-1,-1,-1
109,-1,619.444,123.631,56.583,171.693,0.979817,-1,-1,-1
110,-1,1127.51,142.049,91.5,226.135,0.997502,-1,-1,-1
110,-1,677.308,150.853,60.913,138.322,0.987526,-1,-1,-1
110,-1,625.181,111.598,49.692,191.489,0.973644,-1,-1,-1
110,-1,785.6,151.634,47.642,112.398,0.970089,-1,-1,-1
111,-1,1129.54,142.019,93.46,226.981,0.995785,-1,-1,-1
111,-1,692.915,161.959,44.773,130.261,0.988051,-1,-1,-1
111,-1,790.486,157.113,43.538,108.975,0.982624,-1,-1,-1
111,-1,627.937,135.306,60.29,166.353,0.963975,-1,-1,-1
112,-1,630.164,131.159,53.623,169.017,0.991356,-1,-1,-1
112,-1,698.249,137.993,55.877,161.09,0.984513,-1,-1,-1
112,-1,798.254,163.46,53.441,98.108,0.976576,-1,-1,-1
112,-1,1167.94,157.928,55.06,210.979,0.925301,-1,-1,-1
113,-1,637.84,131.513,48.163,177.381,0.991551,-1,-1,-1
113,-1,700.489,144.07,48.709,164.994,0.978426,-1,-1,-1
113,-1,797.573,161.918,58.172,106.175,0.974386,-1,-1,-1
114,-1,639.605,133.079,60.9,181.195,0.972864,-1,-1,-1
114,-1,814.559,153.894,49.816,126.543,0.969086,-1,-1,-1
114,-1,704.659,135.858,59.785,175.838,0.964789,-1,-1,-1
115,-1,711.291,145.477,54.692,166.436,0.990968,-1,-1,-1
115,-1,640.967,115.534,63.166,198.435,0.983963,-1,-1,-1
115,-1,812.131,151.877,53.792,116.252,0.98247,-1,-1,-1
116,-1,827.835,156.064,49.489,123.557,0.988564,-1,-1,-1
116,-1,706.171,145.507,60.719,173.347,0.985844,-1,-1,-1
116,-1,634.835,138.404,72.079,166.047,0.979988,-1,-1,-1
117,-1,645.506,142.435,67.591,167.308,0.988588,-1,-1,-1
117,-1,832.702,158.722,45.769,110.149,0.983729,-1,-1,-1
117,-1,719.002,153.655,67.812,173.689,0.978206,-1,-1,-1
118,-1,652.121,135.337,65.374,180.296,0.988726,-1,-1,-1
118,-1,847.791,164.866,51.047,102.929,0.988388,-1,-1,-1
118,-1,723.581,150.938,53.047,168.118,0.988311,-1,-1,-1
119,-1,848.717,158.054,50.357,131.655,0.98802,-1,-1,-1
119,-1,733.021,144.89,51.132,187.974,0.9879,-1,-1,-1
119,-1,660.609,130.77,57.717,210.327,0.98725,-1,-1,-1
120,-1,662.439,126.709,62.992,190.127,0.981553,-1,-1,-1
120,-1,852.672,144.98,56.455,153.948,0.978729,-1,-1,-1
120,-1,732.789,153.765,57.051,180.235,0.97628,-1,-1,-1
121,-1,863.41,153.98,54.228,137.033,0.9866,-1,-1,-1
121,-1,667.177,131.238,56.334,195.032,0.97746,-1,-1,-1
121,-1,738.285,145.599,58.638,191.521,0.977047,-1,-1,-1
122,-1,870.015,156.14,75.307,139.005,0.990668,-1,-1,-1
122,-1,743.049,149.082,55.836,189.255,0.988898,-1,-1,-1
122,-1,675.199,125.674,64.587,208.172,0.977401,-1,-1,-1
123,-1,752.569,154.044,61.706,188.859,0.986982,-1,-1,-1
123,-1,888.707,155.697,57.407,131.114,0.984583,-1,-1,-1
123,-1,674.257,144.151,65.664,190.443,0.971462,-1,-1,-1
124,-1,752.98,150.031,58.484,202.161,0.99103,-1,-1,-1
124,-1,688.34,126.331,56.142,221.724,0.980714,-1,-1,-1
124,-1,900.027,157.211,58.667,154.468,0.979578,-1,-1,-1
125,-1,691.745,133.87,74.414,217.028,0.99139,-1,-1,-1
125,-1,760.021,153.074,77.918,203.824,0.990494,-1,-1,-1
125,-1,900.838,159.354,74.1,146.94,0.982236,-1,-1,-1
126,-1,776.685,159.948,59.627,195.368,0.989655,-1,-1,-1
126,-1,927.549,156.346,46.07,163.923,0.987393,-1,-1,-1
126,-1,696.101,117.967,75.882,224.789,0.971032,-1,-1,-1
127,-1,775.15,163.176,70.186,201.061,0.99064,-1,-1,-1
127,-1,932.887,148.146,61.753,158.286,0.988912,-1,-1,-1
127,-1,699.253,148.368,89.608,193.98,0.987366,-1,-1,-1
128,-1,711.36,120.749,69.828,243.254,0.994068,-1,-1,-1
128,-1,792.175,160.581,73.244,193.721,0.989942,-1,-1,-1
128,-1,941.561,159.984,71.569,150.851,0.988087,-1,-1,-1
129,-1,789.472,163.836,71.088,202.161,0.994044,-1,-1,-1
129,-1,707.035,119.434,83.717,244.868,0.99294,-1,-1,-1
129,-1,957.599,154.005,64.071,171.105,0.990424,-1,-1,-1
130,-1,805.025,163.985,64.13,205.015,0.995356,-1,-1,-1
130,-1,975.555,158.933,55.525,140.852,0.986612,-1,-1,-1
130,-1,730.829,131.91,70.146,225.39,0.984378,-1,-1,-1
131,-1,976.5,148.328,70.7,174.846,0.995624,-1,-1,-1
131,-1,808.432,156.127,69.884,212.873,0.993558,-1,-1,-1
131,-1,731.126,128.042,75.908,230.596,0.990217,-1,-1,-1
132,-1,823.697,157.175,68.286,211.825,0.994272,-1,-1,-1
132,-1,987.198,153.35,87.712,153.783,0.993616,-1,-1,-1
132,-1,737.791,119.346,78.64,249.654,0.990758,-1,-1,-1
133,-1,750.6,132.092,80.748,236.908,0.996865,-1,-1,-1
133,-1,997.755,153.216,88.415,183.16,0.99401,-1,-1,-1
133,-1,823.344,155.124,103.279,212.404,0.993695,-1,-1,-1
134,-1,757.384,118.975,87.457,250.025,0.995278,-1,-1,-1
134,-1,844.412,163.445,85.025,205.555,0.99485,-1,-1,-1
134,-1,1034.73,158.359,68.25,148.558,0.971422,-1,-1,-1
135,-1,860.56,153.496,100.413,215.235,0.995368,-1,-1,-1
135,-1,775.125,137.638,82.854,226.482,0.994246,-1,-1,-1
135,-1,1040.89,154.383,69.76,182.547,0.977356,-1,-1,-1
136,-1,878.021,156.356,79.014,200.085,0.997339,-1,-1,-1
136,-1,780.665,122.728,95.617,237.771,0.996334,-1,-1,-1
136,-1,1052.81,158.194,85.66,150.904,0.99268,-1,-1,-1
137,-1,781.629,136.669,88.33,231.726,0.996705,-1,-1,-1
137,-1,894.631,161.582,80.705,201.005,0.994971,-1,-1,-1
137,-1,1079.33,169.051,68.23,131.286,0.984561,-1,-1,-1
138,-1,770.678,131.603,117.404,230.73,0.997497,-1,-1,-1
138,-1,922.204,160.247,61.452,206.543,0.996467,-1,-1,-1
138,-1,1090.86,156.437,76.7,190.165,0.993924,-1,-1,-1
139,-1,926.768,164.4,82.932,191.865,0.997593,-1,-1,-1
139,-1,772.353,117.656,152.962,251.344,0.996666,-1,-1,-1
139,-1,1114.6,147.474,78.67,203.087,0.990613,-1,-1,-1
140,-1,805.743,107.966,99.805,255.522,0.996183,-1,-1,-1
140,-1,932.781,167.755,108.129,192.497,0.99568,-1,-1,-1
140,-1,1121,151.023,94.06,175.061,0.993705,-1,-1,-1
141,-1,955.251,166.473,117.489,202.302,0.998231,-1,-1,-1
141,-1,817.565,100.061,119.05,268.939,0.998025,-1,-1,-1
141,-1,1139.55,160.503,83.45,170.559,0.991625,-1,-1,-1
142,-1,988.013,157,97.847,209.636,0.996576,-1,-1,-1
142,-1,841.185,110.382,114.048,258.618,0.995297,-1,-1,-1
142,-1,1172.14,146.151,50.86,174.271,0.976974,-1,-1,-1
143,-1,861.648,119.426,103.946,249.574,0.998594,-1,-1,-1
143,-1,1008.64,152.233,102.2,216.767,0.998092,-1,-1,-1
144,-1,882.772,119.686,118.038,249.314,0.997924,-1,-1,-1
144,-1,1046.74,164.052,111.32,204.948,0.997535,-1,-1,-1
145,-1,904.717,101.387,120.923,267.613,0.998596,-1,-1,-1
145,-1,1084.97,149.669,109.72,219.331,0.994309,-1,-1,-1
================================================
FILE: data/PETS09-S2L1/det.txt
================================================
1,-1,649.441,231.502,44.417,86.13,0.995474,-1,-1,-1
1,-1,252.783,207.732,35.813,96.641,0.991175,-1,-1,-1
1,-1,499.296,156.205,33.338,76.362,0.985592,-1,-1,-1
2,-1,498.542,153.754,30.551,79.168,0.984268,-1,-1,-1
2,-1,633.383,247.002,43.721,76.75,0.98362,-1,-1,-1
2,-1,252.013,223.62,43.415,81.78,0.982979,-1,-1,-1
3,-1,256.7,216.18,45.484,85.707,0.983902,-1,-1,-1
3,-1,497.294,158.18,31.138,78.946,0.980818,-1,-1,-1
3,-1,625.138,249.739,33.795,73.369,0.979809,-1,-1,-1
4,-1,611.756,240.358,41.681,76.937,0.988554,-1,-1,-1
4,-1,490.123,157.939,35.257,77.901,0.987064,-1,-1,-1
4,-1,274.225,212.047,36.887,95.431,0.98503,-1,-1,-1
5,-1,284.675,197.705,36.358,102.008,0.992261,-1,-1,-1
5,-1,485.492,156.441,37.664,87.504,0.983221,-1,-1,-1
5,-1,599.924,241.012,53.688,81.695,0.982438,-1,-1,-1
6,-1,278.497,201.618,36.88,89.362,0.993578,-1,-1,-1
6,-1,484.615,160.625,34.079,74.051,0.983689,-1,-1,-1
6,-1,598.247,235.197,46.883,92.476,0.957897,-1,-1,-1
7,-1,589.709,240.003,35.435,78.571,0.995673,-1,-1,-1
7,-1,470.68,159.388,56.459,84.34,0.994079,-1,-1,-1
7,-1,287.805,209.49,40.311,91.3,0.992613,-1,-1,-1
8,-1,576.8,239.803,40.047,80.948,0.990974,-1,-1,-1
8,-1,296.803,206.15,41.722,90.682,0.989542,-1,-1,-1
8,-1,478.086,166.483,33.483,73.823,0.987859,-1,-1,-1
9,-1,570.47,236.01,37.063,84.342,0.994246,-1,-1,-1
9,-1,289.35,203.131,42.918,87.76,0.993182,-1,-1,-1
9,-1,469.704,160.794,31.497,78.25,0.983017,-1,-1,-1
10,-1,468.702,165.182,38.327,74.138,0.993128,-1,-1,-1
10,-1,300.677,208.303,39.886,89.985,0.992434,-1,-1,-1
10,-1,555.508,234.876,62.657,86.039,0.98861,-1,-1,-1
11,-1,467.012,168.64,36.48,74.414,0.991057,-1,-1,-1
11,-1,299.558,198.631,58.518,102.761,0.987862,-1,-1,-1
11,-1,544.87,238.544,37.49,80.355,0.977245,-1,-1,-1
12,-1,458.635,169.103,34.441,77.319,0.983514,-1,-1,-1
12,-1,310.824,204.617,55.351,85.22,0.977094,-1,-1,-1
12,-1,534.319,240.627,38.197,78.137,0.976331,-1,-1,-1
12,-1,738.156,279.586,28.844,137.512,0.938942,-1,-1,-1
13,-1,326.139,201.3,42.842,83.013,0.991416,-1,-1,-1
13,-1,518.053,236.596,52.705,86.238,0.985239,-1,-1,-1
13,-1,458.985,172.521,33.409,75.955,0.983822,-1,-1,-1
13,-1,735.05,278.731,31.95,136.168,0.816294,-1,-1,-1
14,-1,511.586,234.726,46.087,81.545,0.995024,-1,-1,-1
14,-1,333.148,202.605,31.885,72.293,0.992198,-1,-1,-1
14,-1,451.824,173.222,31.648,82.636,0.980132,-1,-1,-1
14,-1,716.972,290.014,50.028,121.978,0.975699,-1,-1,-1
15,-1,331.105,197.898,39.837,79.067,0.992777,-1,-1,-1
15,-1,443.228,170.198,33.141,77.913,0.989094,-1,-1,-1
15,-1,507.858,235.299,33.259,80.586,0.987937,-1,-1,-1
15,-1,720.173,291.415,46.827,109.261,0.980862,-1,-1,-1
16,-1,434.297,166.443,35.975,81.592,0.990442,-1,-1,-1
16,-1,339.282,198.469,39.141,81.178,0.989498,-1,-1,-1
16,-1,709.475,279.511,57.525,121.661,0.98043,-1,-1,-1
16,-1,493.788,232.302,30.062,73.606,0.969803,-1,-1,-1
17,-1,336.651,201.858,46.305,94.628,0.990614,-1,-1,-1
17,-1,484.622,237.124,47.12,89.625,0.99004,-1,-1,-1
17,-1,710.014,274.398,52.483,123.589,0.976406,-1,-1,-1
17,-1,428.458,170.651,42.41,76.488,0.958538,-1,-1,-1
18,-1,347.092,171.468,46.23,114.692,0.983187,-1,-1,-1
18,-1,466.424,232.969,38.305,75.016,0.982961,-1,-1,-1
18,-1,703.506,275.637,43.971,105.348,0.977892,-1,-1,-1
18,-1,731.098,277.53,30.909,102.352,0.890053,-1,-1,-1
18,-1,426.048,174.538,35.891,62.369,0.797913,-1,-1,-1
19,-1,349.367,193.17,41.58,83.791,0.992786,-1,-1,-1
19,-1,458.63,237.256,39.647,79.784,0.988486,-1,-1,-1
19,-1,699.472,282.199,48.924,102.656,0.977056,-1,-1,-1
19,-1,737.819,275.363,29.082,95.215,0.908963,-1,-1,-1
20,-1,349.7,193.393,50.994,76.245,0.995275,-1,-1,-1
20,-1,452.507,230.155,40.474,85.446,0.989158,-1,-1,-1
20,-1,691.899,272.602,39.93,103.171,0.969755,-1,-1,-1
20,-1,722.291,277.972,44.709,105.587,0.955497,-1,-1,-1
21,-1,351.311,191.78,49.356,88.04,0.994701,-1,-1,-1
21,-1,440.085,231.537,37.05,78.789,0.985813,-1,-1,-1
21,-1,729.622,267.654,35.536,96.928,0.971418,-1,-1,-1
21,-1,682.619,259.597,46.149,111.204,0.968826,-1,-1,-1
22,-1,359.318,193.123,46.08,74.512,0.988108,-1,-1,-1
22,-1,426.921,227.772,46.523,94.399,0.985095,-1,-1,-1
22,-1,676.31,268.187,41.534,109.177,0.984743,-1,-1,-1
22,-1,726.561,269.232,35.779,98.599,0.978706,-1,-1,-1
22,-1,697.713,261.968,45.545,115.463,0.566322,-1,-1,-1
23,-1,365.039,189.947,33.498,86.747,0.987909,-1,-1,-1
23,-1,671.565,269.03,43.343,105.404,0.984359,-1,-1,-1
23,-1,714.753,272.965,39.443,97.144,0.984312,-1,-1,-1
23,-1,426.183,227.201,32.568,81.871,0.976188,-1,-1,-1
24,-1,410.659,178.959,47.527,140.822,0.990764,-1,-1,-1
24,-1,362.959,187.767,32.562,81.559,0.988814,-1,-1,-1
24,-1,664.478,264.274,49.62,107.569,0.985828,-1,-1,-1
24,-1,703.18,269.773,42.415,106.545,0.983968,-1,-1,-1
24,-1,376.114,173.777,40.488,108.274,0.907335,-1,-1,-1
25,-1,690.286,267.281,42.643,96.959,0.986851,-1,-1,-1
25,-1,373.556,182.889,35.323,89.762,0.985176,-1,-1,-1
25,-1,656.924,256.223,42.461,109.935,0.970055,-1,-1,-1
25,-1,405.884,171.089,46.625,153.052,0.96496,-1,-1,-1
26,-1,372.329,176.603,35.175,96.103,0.984116,-1,-1,-1
26,-1,691.295,257.774,37.166,111.353,0.970256,-1,-1,-1
26,-1,651.621,254.133,43.29,109.681,0.95237,-1,-1,-1
26,-1,409.073,173.636,34.728,130.303,0.923537,-1,-1,-1
27,-1,374.643,181.06,33.538,97.523,0.983211,-1,-1,-1
27,-1,691.075,256.609,37.195,104.725,0.982984,-1,-1,-1
27,-1,651.967,260.53,39.354,99.467,0.981285,-1,-1,-1
27,-1,675.243,263.387,30.847,92.655,0.893283,-1,-1,-1
27,-1,405.75,170.007,35.903,129.919,0.825791,-1,-1,-1
28,-1,677.313,267.109,38.584,94.127,0.990874,-1,-1,-1
28,-1,644.414,259.679,37.969,93.937,0.982603,-1,-1,-1
28,-1,367.368,178.015,35.771,94.728,0.981803,-1,-1,-1
28,-1,396.074,166.761,44.835,146.225,0.876015,-1,-1,-1
29,-1,376.27,169.149,35.497,100.157,0.975886,-1,-1,-1
29,-1,676.048,247.462,38.998,103.341,0.974134,-1,-1,-1
29,-1,630.906,251.158,52.681,109.298,0.973076,-1,-1,-1
29,-1,399.9,179.332,50.11,125.378,0.946044,-1,-1,-1
30,-1,626.633,250.863,40.383,100.552,0.983741,-1,-1,-1
30,-1,669.643,246.545,39.721,93.247,0.97884,-1,-1,-1
30,-1,375.331,171.243,35.626,100.736,0.975238,-1,-1,-1
31,-1,624.773,252.714,40.322,99.443,0.982469,-1,-1,-1
31,-1,374.392,174.943,34.574,100.47,0.960796,-1,-1,-1
31,-1,663.769,251.524,37.752,100.92,0.933386,-1,-1,-1
31,-1,391.889,182.533,43.202,104.017,0.835551,-1,-1,-1
32,-1,621.401,251.653,34.481,94.814,0.981921,-1,-1,-1
32,-1,663.776,256.418,33.933,89.54,0.974883,-1,-1,-1
32,-1,375.961,174.22,32.067,101.4,0.973977,-1,-1,-1
32,-1,396.202,178.651,44.842,115.929,0.82248,-1,-1,-1
33,-1,611.931,246.061,44.388,114.826,0.984293,-1,-1,-1
33,-1,646.156,255.848,48.784,86.251,0.972234,-1,-1,-1
33,-1,377.882,168.679,32.616,112.407,0.955451,-1,-1,-1
33,-1,397.528,183.975,42.431,111.404,0.888336,-1,-1,-1
33,-1,364.707,187.211,28.39,71.671,0.686867,-1,-1,-1
34,-1,612.343,247.198,39.995,88.605,0.973975,-1,-1,-1
34,-1,639.85,252.456,29.964,82.745,0.968644,-1,-1,-1
34,-1,375.458,173.257,36.249,88.076,0.948046,-1,-1,-1
35,-1,605.05,239.027,47.2,102.009,0.982608,-1,-1,-1
35,-1,634.11,245.926,42.294,85.725,0.953707,-1,-1,-1
35,-1,374.86,183.222,33.734,83.746,0.930523,-1,-1,-1
36,-1,599.074,236.37,37.918,94.824,0.978252,-1,-1,-1
36,-1,626.817,250.681,38.072,93.287,0.975661,-1,-1,-1
36,-1,379.994,161.216,40.842,116.957,0.953482,-1,-1,-1
37,-1,404.466,188.918,46.762,92.708,0.975786,-1,-1,-1
37,-1,377.914,180.79,33.163,90.894,0.975718,-1,-1,-1
37,-1,594.468,241.651,41.599,90.862,0.975471,-1,-1,-1
37,-1,627.474,239.138,38.289,98.942,0.822509,-1,-1,-1
38,-1,584.099,234.664,40.551,101.948,0.976751,-1,-1,-1
38,-1,620.006,240.76,36.059,89.397,0.973962,-1,-1,-1
38,-1,375.863,184.411,29.985,75.174,0.971768,-1,-1,-1
38,-1,408.548,179.807,45.241,103.616,0.94403,-1,-1,-1
39,-1,373.654,184.701,33.299,83.454,0.984906,-1,-1,-1
39,-1,581.501,235.993,40.967,95.845,0.978982,-1,-1,-1
39,-1,413.392,176.359,40.083,98.251,0.95837,-1,-1,-1
39,-1,612.548,234.412,46.251,87.251,0.936601,-1,-1,-1
40,-1,571.759,235.562,37.303,92.006,0.985897,-1,-1,-1
40,-1,363.567,180.723,38.539,76.395,0.966991,-1,-1,-1
40,-1,406.772,186.753,47.536,87.008,0.965113,-1,-1,-1
40,-1,615.484,239.551,33.694,90.752,0.953982,-1,-1,-1
40,-1,386.668,183.823,38.233,82.351,0.587144,-1,-1,-1
40,-1,597.922,241.077,32.59,85.011,0.557752,-1,-1,-1
41,-1,429.642,184.184,38.521,82.385,0.99062,-1,-1,-1
41,-1,566.345,235.429,39.426,91.697,0.987188,-1,-1,-1
41,-1,598.173,238.002,34.929,90.4,0.961918,-1,-1,-1
41,-1,376.249,176.412,33.154,86.63,0.951128,-1,-1,-1
41,-1,401.801,178.163,41.085,86.034,0.868558,-1,-1,-1
41,-1,741.288,227.833,25.712,168.39,0.781106,-1,-1,-1
42,-1,417.624,182.467,49.61,98.051,0.989905,-1,-1,-1
42,-1,562.428,231.133,45.669,97.822,0.959144,-1,-1,-1
42,-1,374.334,180.933,31.295,77.676,0.957017,-1,-1,-1
42,-1,596.748,233.853,32.453,93.059,0.901834,-1,-1,-1
42,-1,734.914,256.351,32.086,150.88,0.889992,-1,-1,-1
43,-1,589.767,227.421,38.656,89.079,0.987241,-1,-1,-1
43,-1,374.341,181.618,34.798,77.529,0.975934,-1,-1,-1
43,-1,726.325,270.351,36.566,128.815,0.972967,-1,-1,-1
43,-1,422.852,177.071,42.188,84.125,0.952742,-1,-1,-1
43,-1,556.762,227.912,34.853,101.212,0.927955,-1,-1,-1
44,-1,706.907,263.231,56.215,132.711,0.991975,-1,-1,-1
44,-1,430.567,181.583,48.212,80.619,0.988126,-1,-1,-1
44,-1,584.301,227.135,34.255,95.252,0.979201,-1,-1,-1
44,-1,376.236,179.574,32.256,81.406,0.976156,-1,-1,-1
44,-1,556.117,234.418,33.899,77.147,0.895172,-1,-1,-1
44,-1,402.821,179.515,38.403,82.891,0.777214,-1,-1,-1
45,-1,578.326,231.136,35.536,90.979,0.988551,-1,-1,-1
45,-1,438.198,187.507,38.236,74.185,0.98669,-1,-1,-1
45,-1,375.418,181.692,32.37,82.486,0.980364,-1,-1,-1
45,-1,545.946,221.382,31.534,96.174,0.975022,-1,-1,-1
45,-1,711.259,266.34,47.849,114.278,0.962358,-1,-1,-1
45,-1,401.137,181.685,36.079,83.991,0.925344,-1,-1,-1
46,-1,438.683,181.611,38.864,81.007,0.992438,-1,-1,-1
46,-1,706.197,260.525,52.346,131.736,0.989947,-1,-1,-1
46,-1,535.247,226.034,36.101,95.245,0.98109,-1,-1,-1
46,-1,373.755,175.454,33.781,86.103,0.981027,-1,-1,-1
46,-1,565.532,214.051,48.696,107.643,0.969095,-1,-1,-1
46,-1,398.691,172.797,41.489,90.378,0.857079,-1,-1,-1
47,-1,443.844,181.76,32.913,72.565,0.991519,-1,-1,-1
47,-1,693.935,257.246,51.528,134.826,0.988834,-1,-1,-1
47,-1,567.307,225.352,51.127,91.573,0.988301,-1,-1,-1
47,-1,532.287,222.452,34.19,86.935,0.983425,-1,-1,-1
47,-1,365.578,176.517,40.6,82.306,0.978475,-1,-1,-1
47,-1,402.572,176.13,36.995,89.197,0.872681,-1,-1,-1
47,-1,555.243,220.242,28.868,93.874,0.584779,-1,-1,-1
48,-1,372.756,177.885,34.588,81.199,0.99007,-1,-1,-1
48,-1,439.527,178.797,30.598,78.859,0.989053,-1,-1,-1
48,-1,691.267,254.132,38.186,121.133,0.988818,-1,-1,-1
48,-1,522.477,220.811,31.731,82.42,0.988627,-1,-1,-1
48,-1,567.867,221.929,32.122,91.683,0.979749,-1,-1,-1
49,-1,517.023,221.764,32.589,84.018,0.991808,-1,-1,-1
49,-1,370.702,178.292,35.094,82.253,0.991346,-1,-1,-1
49,-1,685.418,253.151,43.602,122.558,0.989023,-1,-1,-1
49,-1,431.254,180.329,37.572,69.911,0.983589,-1,-1,-1
49,-1,562.496,220.214,38.949,85.848,0.979952,-1,-1,-1
49,-1,410.336,175.537,33.322,79.57,0.551008,-1,-1,-1
50,-1,369.159,178.382,35.781,81.342,0.992515,-1,-1,-1
50,-1,511.33,209.957,40.68,97.003,0.99251,-1,-1,-1
50,-1,557.084,219.802,42.319,84.229,0.986879,-1,-1,-1
50,-1,430.597,176.875,38.82,73.56,0.979476,-1,-1,-1
50,-1,683.136,251.775,37.573,128.447,0.976348,-1,-1,-1
51,-1,366.512,176.714,37.643,82.545,0.992348,-1,-1,-1
51,-1,511.271,218.055,35.975,83.586,0.989943,-1,-1,-1
51,-1,661.847,248.209,57.312,132.526,0.988924,-1,-1,-1
51,-1,551.069,217.695,27.711,73.512,0.982866,-1,-1,-1
52,-1,367.199,175.336,37.273,83.298,0.99269,-1,-1,-1
52,-1,549.262,217.777,30.913,83.05,0.985662,-1,-1,-1
52,-1,502.16,206.015,42.341,108.096,0.985606,-1,-1,-1
52,-1,664.565,249.472,43.852,121.583,0.983821,-1,-1,-1
53,-1,658.89,251.251,45.527,114.123,0.992488,-1,-1,-1
53,-1,367.485,174.594,36.855,81.334,0.99178,-1,-1,-1
53,-1,494.047,212.181,41.916,100.157,0.984856,-1,-1,-1
53,-1,535.271,216.475,38.599,86.334,0.9726,-1,-1,-1
54,-1,367.781,175.212,36.587,79.856,0.991099,-1,-1,-1
54,-1,651.662,240.221,47.53,124.547,0.989312,-1,-1,-1
54,-1,491.844,208.029,31.996,90.071,0.987243,-1,-1,-1
54,-1,546.366,215.557,26.126,84.817,0.975107,-1,-1,-1
55,-1,642.478,242.419,48.691,114.049,0.992581,-1,-1,-1
55,-1,368.292,177.12,36.258,79.443,0.990004,-1,-1,-1
55,-1,487.199,216.702,45.156,88.664,0.985207,-1,-1,-1
55,-1,526.695,213.037,40.414,78.79,0.981459,-1,-1,-1
56,-1,641.161,240.643,45.372,121.393,0.994522,-1,-1,-1
56,-1,370.608,176.902,35.114,78.111,0.989107,-1,-1,-1
56,-1,479.782,206.943,46.629,96.715,0.987701,-1,-1,-1
56,-1,522.769,204.509,39.99,103.972,0.97491,-1,-1,-1
57,-1,630.808,234.791,45.279,119.735,0.993901,-1,-1,-1
57,-1,367.503,179.334,35.772,75.612,0.986123,-1,-1,-1
57,-1,475.728,207.832,33.023,87.887,0.985848,-1,-1,-1
57,-1,521.817,210.927,31.766,77.984,0.966666,-1,-1,-1
58,-1,472.561,208.62,32.51,79.348,0.991529,-1,-1,-1
58,-1,374.075,174.576,34.204,89.851,0.987617,-1,-1,-1
58,-1,624.263,230.757,41.207,127.855,0.9868,-1,-1,-1
58,-1,518.415,216.728,29.257,70.207,0.967758,-1,-1,-1
59,-1,469.695,210.466,34.456,80.439,0.991344,-1,-1,-1
59,-1,623.002,244.545,40.788,101.902,0.990996,-1,-1,-1
59,-1,375.939,173.887,33.067,86.884,0.979316,-1,-1,-1
59,-1,513.997,205.781,46.632,89.106,0.966009,-1,-1,-1
60,-1,469.897,204.272,35.515,82.133,0.991146,-1,-1,-1
60,-1,616.42,232.534,40.227,110.936,0.990452,-1,-1,-1
60,-1,370.125,178.028,37.756,84.804,0.988843,-1,-1,-1
60,-1,507.502,199.412,39.072,95.369,0.931808,-1,-1,-1
61,-1,610.496,223.388,39.801,113.575,0.995436,-1,-1,-1
61,-1,367.965,178.973,37.075,81.019,0.9817,-1,-1,-1
61,-1,454.19,198.847,49.861,98.094,0.978699,-1,-1,-1
61,-1,502.917,208.818,33.513,72.552,0.972249,-1,-1,-1
62,-1,609.705,232.689,43.444,102.002,0.989499,-1,-1,-1
62,-1,465.569,203.027,34.881,87.129,0.984947,-1,-1,-1
62,-1,495.047,203.813,47.009,77.598,0.98068,-1,-1,-1
62,-1,365.976,169.889,40.161,80.785,0.951451,-1,-1,-1
62,-1,347.521,173.571,31.619,72.346,0.60146,-1,-1,-1
63,-1,608.345,223.796,45.552,111.824,0.995367,-1,-1,-1
63,-1,463.801,203.859,35.192,83.095,0.982811,-1,-1,-1
63,-1,495.498,199.964,33.667,92.351,0.981297,-1,-1,-1
63,-1,345.664,171.883,34.142,71.167,0.96985,-1,-1,-1
63,-1,364.656,178.592,39.435,81.388,0.948058,-1,-1,-1
64,-1,602.911,217.636,47.856,114.605,0.995565,-1,-1,-1
64,-1,460.537,204.4,39.07,81.502,0.978561,-1,-1,-1
64,-1,495.162,203.167,41.948,76.63,0.968254,-1,-1,-1
64,-1,338.091,173.534,35.453,68.45,0.959379,-1,-1,-1
64,-1,372.488,182.309,38.434,73.094,0.937885,-1,-1,-1
65,-1,597.994,218.035,39.446,119.333,0.992385,-1,-1,-1
65,-1,488.367,206.368,31.549,69.357,0.976229,-1,-1,-1
65,-1,453.277,206.435,36.259,80.282,0.974707,-1,-1,-1
65,-1,322.792,167.356,38.273,73.36,0.974404,-1,-1,-1
65,-1,365.576,176.556,35.991,76.392,0.973215,-1,-1,-1
66,-1,596.13,212.734,39.3,122.911,0.99133,-1,-1,-1
66,-1,373.025,179.327,31.173,78.193,0.982825,-1,-1,-1
66,-1,449.236,195.573,37.428,93.39,0.978925,-1,-1,-1
66,-1,326.923,173.11,30.04,67.437,0.975804,-1,-1,-1
66,-1,487.42,201.536,30.864,78.219,0.966253,-1,-1,-1
67,-1,596.26,208.538,41.694,113.56,0.994292,-1,-1,-1
67,-1,447.289,191.881,32.558,95.521,0.989066,-1,-1,-1
67,-1,369.136,178.941,33.869,77.988,0.988857,-1,-1,-1
67,-1,316.145,168.932,38.056,65.848,0.978484,-1,-1,-1
67,-1,491.699,197.337,29.11,75.123,0.944512,-1,-1,-1
68,-1,368.991,178.501,36.875,79.608,0.991969,-1,-1,-1
68,-1,590.879,212.544,34.83,101.168,0.990022,-1,-1,-1
68,-1,449.12,193.042,29.594,85.189,0.988293,-1,-1,-1
68,-1,305.165,165.339,45.866,64.368,0.970158,-1,-1,-1
68,-1,487.065,196.503,27.891,75.167,0.968319,-1,-1,-1
69,-1,588.73,208.156,40.504,113.561,0.995652,-1,-1,-1
69,-1,370.029,182.513,34.579,75.164,0.990869,-1,-1,-1
69,-1,443.746,191.306,35.325,87.333,0.981555,-1,-1,-1
69,-1,292.131,167.023,38.648,65.436,0.971679,-1,-1,-1
69,-1,485.755,202.877,23.961,80.383,0.940489,-1,-1,-1
70,-1,589.688,219.217,32.749,92.868,0.995982,-1,-1,-1
70,-1,376.405,174.939,30.358,80.149,0.987645,-1,-1,-1
70,-1,292.798,168.539,31.439,68.316,0.979852,-1,-1,-1
70,-1,454.09,193.502,27.255,76.062,0.976555,-1,-1,-1
70,-1,477.813,194.256,27.622,88.901,0.969381,-1,-1,-1
70,-1,414.659,183.778,56.998,80.58,0.612153,-1,-1,-1
71,-1,371.023,179.481,35.044,82.467,0.993932,-1,-1,-1
71,-1,584.413,207.45,35.013,99.906,0.993073,-1,-1,-1
71,-1,478.822,190.967,29.851,89.591,0.974392,-1,-1,-1
71,-1,287.842,161.276,36.943,70.607,0.97119,-1,-1,-1
71,-1,449.676,188.039,31.69,89.325,0.946091,-1,-1,-1
71,-1,411.13,181.96,60.124,84.212,0.69837,-1,-1,-1
72,-1,366.455,177.054,37.954,75.475,0.994377,-1,-1,-1
72,-1,582.328,202.079,36.543,107.129,0.988004,-1,-1,-1
72,-1,279.794,168.041,47.526,66.345,0.983111,-1,-1,-1
72,-1,441.651,188.275,34.216,90.219,0.968824,-1,-1,-1
72,-1,478.778,187.157,25.233,77.039,0.966726,-1,-1,-1
73,-1,369.454,178.207,35.327,80.979,0.994558,-1,-1,-1
73,-1,577.229,203.498,41.634,99.739,0.990419,-1,-1,-1
73,-1,270.912,173.797,42.241,66.75,0.979821,-1,-1,-1
73,-1,475.421,186.082,34.204,70.33,0.96676,-1,-1,-1
73,-1,437.92,182.628,34.164,92.596,0.950098,-1,-1,-1
74,-1,578.517,198.447,36.485,105.98,0.994179,-1,-1,-1
74,-1,371.851,175.884,34.306,79.33,0.992325,-1,-1,-1
74,-1,267.113,164.228,38.918,73.872,0.980005,-1,-1,-1
74,-1,479.684,185.841,30.957,84.697,0.966683,-1,-1,-1
74,-1,435.139,176.574,36.385,96.142,0.941606,-1,-1,-1
75,-1,365.853,178.422,38.241,79.684,0.99125,-1,-1,-1
75,-1,260.979,173.396,52.483,71.917,0.984408,-1,-1,-1
75,-1,574.397,192.792,38.804,112.67,0.978502,-1,-1,-1
75,-1,477.139,185.344,26.605,83.242,0.972981,-1,-1,-1
75,-1,438.758,187.98,30.978,70.201,0.941452,-1,-1,-1
76,-1,368.096,179.27,36.819,82.948,0.994389,-1,-1,-1
76,-1,574.096,201.325,39.207,94.214,0.991433,-1,-1,-1
76,-1,261.08,175.187,30.67,64.634,0.983761,-1,-1,-1
76,-1,429.946,178.518,35.833,86.635,0.971604,-1,-1,-1
76,-1,481.513,188.985,30.89,77.812,0.969344,-1,-1,-1
77,-1,365.736,178.511,38.034,81.823,0.993975,-1,-1,-1
77,-1,571.956,184.833,42.278,104.152,0.98865,-1,-1,-1
77,-1,254.206,174.419,34.26,63.05,0.98527,-1,-1,-1
77,-1,482.061,188.23,30.713,75.418,0.967404,-1,-1,-1
77,-1,428.4,178.515,37.424,85.059,0.953192,-1,-1,-1
78,-1,365.857,180.561,37.39,80.347,0.993225,-1,-1,-1
78,-1,562.517,198.894,47.271,96.358,0.990006,-1,-1,-1
78,-1,253.25,172.79,40.184,64.873,0.978454,-1,-1,-1
78,-1,432.44,178.671,36.305,88.659,0.977652,-1,-1,-1
78,-1,481.137,189.561,30.403,71.502,0.964737,-1,-1,-1
78,-1,412.607,173.685,37.112,80.993,0.637338,-1,-1,-1
78,-1,458.952,172.142,26.402,90.651,0.553104,-1,-1,-1
79,-1,368.13,179.201,36.5,82.883,0.994087,-1,-1,-1
79,-1,567.023,192.756,30.74,79.837,0.988299,-1,-1,-1
79,-1,250.876,173.965,41.654,76.643,0.987832,-1,-1,-1
79,-1,480.715,179.663,26.361,66.389,0.96595,-1,-1,-1
79,-1,432.029,180.48,34.868,83.983,0.943942,-1,-1,-1
79,-1,459.705,179.773,30.972,82.073,0.841862,-1,-1,-1
80,-1,365.139,182.315,39.463,75.162,0.993345,-1,-1,-1
80,-1,575.5,185.227,28.969,84.04,0.984412,-1,-1,-1
80,-1,254.369,167.637,33.787,72.039,0.983518,-1,-1,-1
80,-1,480.563,176.321,29.487,65.377,0.967525,-1,-1,-1
80,-1,439.216,177.263,29.463,73.31,0.950201,-1,-1,-1
80,-1,269.194,31.7008,24.323,53.4365,0.801101,-1,-1,-1
80,-1,459.287,173.884,26.457,79.355,0.758108,-1,-1,-1
81,-1,365.494,175.795,41.949,79.236,0.992458,-1,-1,-1
81,-1,566.624,181.786,40.918,101.246,0.985253,-1,-1,-1
81,-1,255.737,169.547,35.411,68.663,0.984041,-1,-1,-1
81,-1,480.136,171.071,27.227,69.196,0.971876,-1,-1,-1
81,-1,429.684,168.056,35.827,84.435,0.882718,-1,-1,-1
81,-1,450.286,177.179,30.281,66.45,0.857043,-1,-1,-1
82,-1,566.621,186.057,31.45,86.125,0.992967,-1,-1,-1
82,-1,367.62,177.798,39.604,79.53,0.992123,-1,-1,-1
82,-1,254.94,176.712,35.025,66.432,0.984602,-1,-1,-1
82,-1,472.113,175.666,28.727,64.256,0.950441,-1,-1,-1
82,-1,443.193,172.147,33.497,79.654,0.895406,-1,-1,-1
83,-1,366.876,176.702,40.36,83.405,0.99099,-1,-1,-1
83,-1,257.145,179.243,32.62,63.206,0.988525,-1,-1,-1
83,-1,562.557,175.272,36.993,101.657,0.988184,-1,-1,-1
83,-1,475.152,183.208,27.411,56.972,0.95059,-1,-1,-1
83,-1,443.514,174.73,30.666,72.94,0.949189,-1,-1,-1
83,-1,257.201,41.3316,27.041,37.9958,0.768679,-1,-1,-1
84,-1,558.061,175.537,35.341,103.709,0.994603,-1,-1,-1
84,-1,368.766,177.361,38.523,81.72,0.988974,-1,-1,-1
84,-1,265.591,180.481,31.912,71.752,0.984806,-1,-1,-1
84,-1,477.865,175.355,29.803,77.117,0.974622,-1,-1,-1
84,-1,448.907,175.728,33.069,74.013,0.9429,-1,-1,-1
84,-1,259.843,39.9777,30.548,44.002,0.925321,-1,-1,-1
85,-1,559.171,182.056,37.893,87.002,0.981701,-1,-1,-1
85,-1,259.775,170.593,35.598,72.541,0.98027,-1,-1,-1
85,-1,370.176,180.325,33.15,79.419,0.97874,-1,-1,-1
85,-1,443.969,162.381,36.013,85.178,0.955317,-1,-1,-1
85,-1,259.649,46.2292,25.99,38.5317,0.937804,-1,-1,-1
85,-1,481.434,171.873,25.28,79.535,0.921709,-1,-1,-1
85,-1,465.809,173.187,24.579,70.307,0.579122,-1,-1,-1
85,-1,496.37,172.404,25.09,68.311,0.516364,-1,-1,-1
86,-1,263.76,177.321,44.112,71.44,0.993806,-1,-1,-1
86,-1,371.455,181.021,36.996,77.897,0.986328,-1,-1,-1
86,-1,453.942,169.074,29.768,67.19,0.964707,-1,-1,-1
86,-1,473.82,172.325,31.899,71.814,0.955217,-1,-1,-1
86,-1,561.063,170.038,40.042,101.237,0.906892,-1,-1,-1
86,-1,251.728,45.0635,24.468,39.5076,0.738353,-1,-1,-1
86,-1,494.737,171.078,30.569,71.003,0.712313,-1,-1,-1
87,-1,560.202,169.346,35.023,94.762,0.991867,-1,-1,-1
87,-1,272.244,186.894,38.946,56.898,0.986365,-1,-1,-1
87,-1,371.324,175.201,37.438,81.772,0.980976,-1,-1,-1
87,-1,442.872,163.741,33.99,86.251,0.972194,-1,-1,-1
87,-1,482.16,175.334,27.03,63.529,0.958081,-1,-1,-1
87,-1,496.113,173.402,29.945,70.878,0.730154,-1,-1,-1
87,-1,254.644,48.9548,23.629,39.6795,0.506126,-1,-1,-1
88,-1,564.167,177.069,34.191,89.156,0.986614,-1,-1,-1
88,-1,371.537,184.315,37.489,82.492,0.981374,-1,-1,-1
88,-1,276.009,184.491,32.349,69.256,0.977511,-1,-1,-1
88,-1,443.097,165.96,31.445,82.577,0.956071,-1,-1,-1
88,-1,481.933,173.462,28.127,68.779,0.955072,-1,-1,-1
88,-1,250.877,44.9615,25.14,41.238,0.679493,-1,-1,-1
88,-1,463.266,168.146,28.041,71.24,0.663903,-1,-1,-1
89,-1,282.656,183.049,37.846,68.593,0.991519,-1,-1,-1
89,-1,563.853,178.279,33.794,74.641,0.991047,-1,-1,-1
89,-1,373.29,180.09,33.417,82.254,0.988699,-1,-1,-1
89,-1,444.185,163.983,31.346,85.12,0.95617,-1,-1,-1
89,-1,485.344,165.354,30.643,64.826,0.943414,-1,-1,-1
89,-1,460.16,163.816,28.525,64.311,0.856196,-1,-1,-1
89,-1,242.833,46.8152,27.786,41.0066,0.777143,-1,-1,-1
90,-1,566.776,175.932,32.071,73.858,0.988564,-1,-1,-1
90,-1,277.762,191.94,44.455,65.461,0.962438,-1,-1,-1
90,-1,369.37,185.242,32.115,72.653,0.937392,-1,-1,-1
90,-1,486.956,158.707,30.54,67.419,0.934773,-1,-1,-1
90,-1,244.548,51.6647,23.632,34.7221,0.918473,-1,-1,-1
90,-1,452.253,159.236,28.784,80.217,0.892383,-1,-1,-1
90,-1,468.872,165.536,29.276,74.117,0.839378,-1,-1,-1
91,-1,567.995,169.783,34.264,81.156,0.992345,-1,-1,-1
91,-1,285.658,190.605,31.143,63.778,0.99036,-1,-1,-1
91,-1,478.27,163.826,37.783,62.483,0.970589,-1,-1,-1
91,-1,242.844,53.1029,23.755,37.1514,0.934379,-1,-1,-1
91,-1,372.62,175.777,33.97,86.641,0.922151,-1,-1,-1
91,-1,460.785,163.29,32.273,67.377,0.868101,-1,-1,-1
92,-1,564.461,171.603,34.912,76.929,0.987697,-1,-1,-1
92,-1,293.97,190.006,33.671,75.886,0.985702,-1,-1,-1
92,-1,490.667,154.408,27.577,70.745,0.967299,-1,-1,-1
92,-1,375.301,189.317,26.452,75.315,0.96489,-1,-1,-1
92,-1,241.228,52.7893,23.476,37.1174,0.927231,-1,-1,-1
92,-1,459.225,163.844,29.883,71.429,0.913171,-1,-1,-1
93,-1,576.865,164.577,33.447,77.485,0.988909,-1,-1,-1
93,-1,288.717,185.967,55.746,83.879,0.987436,-1,-1,-1
93,-1,492.769,163.494,28.451,68.759,0.970387,-1,-1,-1
93,-1,468.662,158.459,27.501,69.53,0.925053,-1,-1,-1
93,-1,381.506,177.34,28.751,74.721,0.877962,-1,-1,-1
93,-1,239.665,49.4524,17.187,38.2711,0.804653,-1,-1,-1
94,-1,570.856,167.487,37.483,83.059,0.993038,-1,-1,-1
94,-1,290.535,194.092,55.94,80.793,0.990062,-1,-1,-1
94,-1,496.071,158.672,27.467,66.026,0.955638,-1,-1,-1
94,-1,376.43,182.399,39.988,80.342,0.934209,-1,-1,-1
94,-1,472.379,154.871,25.801,69.723,0.929731,-1,-1,-1
94,-1,229.069,47.2467,29.707,44.2195,0.800861,-1,-1,-1
94,-1,510.476,161.572,29.226,65.924,0.679008,-1,-1,-1
95,-1,573.53,162.445,36.538,81.152,0.981234,-1,-1,-1
95,-1,307.723,197.986,32.357,69.465,0.978896,-1,-1,-1
95,-1,379.949,178.918,31.225,78.342,0.965434,-1,-1,-1
95,-1,489.607,158.709,29.764,67.249,0.949086,-1,-1,-1
95,-1,237.564,54.3388,22.852,31.6762,0.846665,-1,-1,-1
95,-1,468.55,157.326,26.609,68.448,0.739254,-1,-1,-1
95,-1,508.77,159.263,29.378,66.209,0.664883,-1,-1,-1
96,-1,576.207,166.851,32.192,79.36,0.995105,-1,-1,-1
96,-1,378.47,181.148,42.012,86.598,0.985409,-1,-1,-1
96,-1,306.159,196.595,41.818,73.633,0.977671,-1,-1,-1
96,-1,496.946,157.04,27.904,70.473,0.947909,-1,-1,-1
96,-1,475.429,161.057,28.8,62.017,0.930498,-1,-1,-1
96,-1,229.303,54.8091,23.326,41.2615,0.872206,-1,-1,-1
96,-1,511.874,167.133,27.956,65.069,0.784198,-1,-1,-1
97,-1,577.913,163.038,35.146,85.185,0.990069,-1,-1,-1
97,-1,320.334,203.835,32.056,77.465,0.983281,-1,-1,-1
97,-1,469.624,152.421,58.183,80.139,0.979638,-1,-1,-1
97,-1,380.117,181.848,30.991,71.949,0.952749,-1,-1,-1
97,-1,224.137,55.1761,21.153,34.6155,0.936528,-1,-1,-1
97,-1,507.895,157.292,28.816,70.097,0.616302,-1,-1,-1
98,-1,575.284,158.509,40.093,85.348,0.991729,-1,-1,-1
98,-1,327.956,192.456,41.733,76.957,0.980227,-1,-1,-1
98,-1,481.913,146.924,37.59,86.24,0.972995,-1,-1,-1
98,-1,381.623,177.659,35.261,75.991,0.964756,-1,-1,-1
98,-1,226.701,55.6408,27.564,34.2005,0.920882,-1,-1,-1
98,-1,507.37,152.541,33.096,64.792,0.871276,-1,-1,-1
99,-1,322.665,190.566,51.044,94.421,0.987028,-1,-1,-1
99,-1,577.367,156.712,37.414,72.968,0.986751,-1,-1,-1
99,-1,487.846,140.816,35.888,87.199,0.956059,-1,-1,-1
99,-1,509.167,151.948,31.946,73.57,0.92936,-1,-1,-1
99,-1,384.941,181.257,31.556,77.187,0.921157,-1,-1,-1
99,-1,219.735,51.6026,33.156,38.5688,0.883205,-1,-1,-1
100,-1,340.705,199.44,34.311,73.577,0.984423,-1,-1,-1
100,-1,586.011,158.325,35.761,73.853,0.982685,-1,-1,-1
100,-1,504.535,143.277,30.503,77.003,0.963591,-1,-1,-1
100,-1,378.121,180.198,23.693,82.57,0.845799,-1,-1,-1
100,-1,219.617,59.1309,22.626,38.6658,0.804184,-1,-1,-1
100,-1,487.859,150.061,29.429,70.464,0.541469,-1,-1,-1
101,-1,589.348,157.416,34.684,66.743,0.987973,-1,-1,-1
101,-1,340.829,197.035,38.809,79.723,0.973019,-1,-1,-1
101,-1,498.615,147.719,37.857,73.931,0.961429,-1,-1,-1
101,-1,368.208,178.435,32.741,94.52,0.874821,-1,-1,-1
101,-1,216.749,52.2645,25.448,39.3633,0.848081,-1,-1,-1
102,-1,348.017,197.098,38.978,74.459,0.993059,-1,-1,-1
102,-1,586.676,145.29,40.139,86.575,0.983328,-1,-1,-1
102,-1,504.122,149.076,37.619,75.018,0.96542,-1,-1,-1
102,-1,206.25,56.9591,32.981,42.4875,0.899793,-1,-1,-1
102,-1,527.519,148.929,27.889,72.191,0.862784,-1,-1,-1
102,-1,481.369,146.384,38.602,75.094,0.599381,-1,-1,-1
103,-1,589.335,146.118,32.36,77.374,0.987288,-1,-1,-1
103,-1,355.159,192.094,40.425,88.281,0.986607,-1,-1,-1
103,-1,523.042,142.486,26.225,68.662,0.932371,-1,-1,-1
103,-1,499.085,144.817,38.882,74.495,0.921037,-1,-1,-1
103,-1,207.793,56.4314,30.355,46.5866,0.908944,-1,-1,-1
104,-1,362.115,182.908,38.002,100.773,0.993157,-1,-1,-1
104,-1,593.586,145.248,29.672,76.82,0.987508,-1,-1,-1
104,-1,520.652,145.996,26.836,71.418,0.959916,-1,-1,-1
104,-1,491.576,146.019,30.947,64.797,0.920609,-1,-1,-1
104,-1,204.892,53.1509,30.94,41.6021,0.906229,-1,-1,-1
105,-1,593.307,147.384,29.302,77.885,0.992884,-1,-1,-1
105,-1,370.127,183.854,39.706,101.554,0.99028,-1,-1,-1
105,-1,519.154,146.299,28.266,66.605,0.962672,-1,-1,-1
105,-1,207.423,64.4612,20.212,36.4708,0.943881,-1,-1,-1
105,-1,494.949,145.232,39.296,76.124,0.92681,-1,-1,-1
106,-1,374.976,176.954,42.323,111.015,0.975005,-1,-1,-1
106,-1,514.739,143.753,35.279,69.55,0.969237,-1,-1,-1
106,-1,601.545,140.77,29.207,88.691,0.950345,-1,-1,-1
106,-1,192.641,61.4749,23.12,38.6741,0.926093,-1,-1,-1
106,-1,539.019,145.753,23.876,65.181,0.860909,-1,-1,-1
106,-1,205.394,53.5948,24.867,36.4282,0.789026,-1,-1,-1
106,-1,490.796,142.955,30.023,68.813,0.553004,-1,-1,-1
107,-1,608.135,143.124,28.846,79.468,0.96457,-1,-1,-1
107,-1,511.335,139.442,36.47,74.974,0.957479,-1,-1,-1
107,-1,374.916,174.877,31.121,88.538,0.954212,-1,-1,-1
107,-1,536.403,139.119,28.61,70.016,0.909033,-1,-1,-1
107,-1,401.697,180.365,46.213,95.829,0.83572,-1,-1,-1
107,-1,195.765,59.2033,26.305,39.978,0.775641,-1,-1,-1
108,-1,606.318,146.406,30.472,75.583,0.978233,-1,-1,-1
108,-1,506.368,138.742,33.939,74.226,0.952027,-1,-1,-1
108,-1,364.119,188.079,36.765,72.2,0.93742,-1,-1,-1
108,-1,537.694,134.242,24.936,70.831,0.927405,-1,-1,-1
108,-1,193.411,61.1101,28.664,37.6869,0.888581,-1,-1,-1
108,-1,397.402,178.051,43.169,109.469,0.762976,-1,-1,-1
109,-1,369.376,178.798,34.119,77.632,0.988753,-1,-1,-1
109,-1,605.079,145.447,40.33,81.537,0.975947,-1,-1,-1
109,-1,535.231,135.296,29.832,76.26,0.955131,-1,-1,-1
109,-1,520.779,140.753,26.895,61.649,0.89327,-1,-1,-1
109,-1,408.371,169.377,43.61,120.722,0.889922,-1,-1,-1
109,-1,190.575,60.4793,25.47,40.8417,0.863406,-1,-1,-1
110,-1,371.248,177.997,34.42,75.129,0.99213,-1,-1,-1
110,-1,608.168,134.139,35.219,74.57,0.988467,-1,-1,-1
110,-1,522.713,148.363,30.643,60.842,0.946286,-1,-1,-1
110,-1,541.739,143.952,26.308,62.199,0.94341,-1,-1,-1
110,-1,189.732,56.9861,22.803,43.9599,0.891166,-1,-1,-1
110,-1,416.214,186.294,38.406,90.597,0.563918,-1,-1,-1
111,-1,368.688,177.015,35.739,79.288,0.99144,-1,-1,-1
111,-1,611.286,136.257,33.744,71.403,0.982491,-1,-1,-1
111,-1,530.07,140.297,33.708,67.528,0.9672,-1,-1,-1
111,-1,416.735,172.676,33.287,110.757,0.960944,-1,-1,-1
111,-1,191.717,68.7556,16.02,31.9094,0.940467,-1,-1,-1
111,-1,184.706,46.3851,34.034,47.4577,0.787204,-1,-1,-1
111,-1,181.882,67.3923,15.372,30.7648,0.557525,-1,-1,-1
112,-1,424.681,187.223,39.614,97.054,0.993306,-1,-1,-1
112,-1,366.096,175.023,35.95,84.509,0.991816,-1,-1,-1
112,-1,615.301,137.648,32.379,73.63,0.979112,-1,-1,-1
112,-1,187.666,63.6386,23.037,35.8964,0.94367,-1,-1,-1
112,-1,528.46,132.793,32.539,71.43,0.933896,-1,-1,-1
112,-1,545.775,146.319,27.606,60.22,0.917985,-1,-1,-1
112,-1,562.628,138.612,22.887,69.674,0.781427,-1,-1,-1
113,-1,431.923,209.469,49.262,86.781,0.993015,-1,-1,-1
113,-1,365.257,177.861,36.775,80.894,0.991071,-1,-1,-1
113,-1,622.969,136.013,31.6,71.04,0.965407,-1,-1,-1
113,-1,560.798,143.35,29.964,59.41,0.950928,-1,-1,-1
113,-1,528.793,133.771,32.73,64.655,0.949044,-1,-1,-1
113,-1,186.76,65.6299,23.752,39.3561,0.925537,-1,-1,-1
113,-1,178.202,54.5267,23.185,38.0228,0.758749,-1,-1,-1
114,-1,373.68,179.636,33.257,79.953,0.991994,-1,-1,-1
114,-1,449.197,202.454,39.666,82.424,0.983756,-1,-1,-1
114,-1,623.031,137.049,33.218,73.171,0.958917,-1,-1,-1
114,-1,558.067,142.742,25.594,60.319,0.934593,-1,-1,-1
114,-1,178.279,62.7295,26.043,37.5725,0.929914,-1,-1,-1
114,-1,542.721,134.05,28.685,62.167,0.925865,-1,-1,-1
115,-1,453.372,205.66,37.289,85.863,0.99023,-1,-1,-1
115,-1,368.081,189.283,30.584,73.991,0.985333,-1,-1,-1
115,-1,623.856,131.311,34.703,82.554,0.973275,-1,-1,-1
115,-1,534.611,135.584,31.331,62.024,0.949189,-1,-1,-1
115,-1,178.98,65.6655,24.26,35.6245,0.922182,-1,-1,-1
115,-1,558.144,135.186,26.795,69.405,0.919113,-1,-1,-1
116,-1,455.205,203.253,41.544,84.551,0.989357,-1,-1,-1
116,-1,366.738,174.269,39.586,90.704,0.984681,-1,-1,-1
116,-1,631.252,137.813,31.067,70.954,0.981271,-1,-1,-1
116,-1,544.565,141.793,45.021,72.612,0.959816,-1,-1,-1
116,-1,174.545,68.276,23.328,37.847,0.922834,-1,-1,-1
116,-1,726.502,210.057,39.637,105.335,0.724345,-1,-1,-1
117,-1,363.526,182.706,33.121,76.34,0.990974,-1,-1,-1
117,-1,458.762,204.177,53.806,82.98,0.985799,-1,-1,-1
117,-1,635.2,136.334,30.434,69.135,0.973894,-1,-1,-1
117,-1,541.981,134.715,29.129,61.603,0.958606,-1,-1,-1
117,-1,169.464,64.8835,35.373,36.1095,0.943624,-1,-1,-1
117,-1,558.072,144.369,26.315,54.916,0.920556,-1,-1,-1
117,-1,573.194,144.259,29.695,59.414,0.91779,-1,-1,-1
118,-1,368.218,183.485,38.699,79.184,0.992344,-1,-1,-1
118,-1,715.956,223.708,34.978,88.468,0.990662,-1,-1,-1
118,-1,480.972,211.521,33.424,80.982,0.976267,-1,-1,-1
118,-1,173.613,64.5682,22.535,37.1128,0.94815,-1,-1,-1
118,-1,635.846,134.764,32.575,70.07,0.945048,-1,-1,-1
118,-1,547.519,139.935,28.764,58.527,0.927972,-1,-1,-1
118,-1,564.128,145.043,25.377,59.848,0.910924,-1,-1,-1
118,-1,162.115,59.0474,22.682,33.5569,0.619393,-1,-1,-1
119,-1,368.379,183.037,37.888,73.136,0.991808,-1,-1,-1
119,-1,497.499,219.433,30.822,68.249,0.986559,-1,-1,-1
119,-1,702.762,214.583,50.535,90.249,0.981389,-1,-1,-1
119,-1,635.503,140.382,38.663,68.324,0.972672,-1,-1,-1
119,-1,567.601,145.578,27.914,59.384,0.953939,-1,-1,-1
119,-1,165.301,69.6936,33.189,43.7084,0.934952,-1,-1,-1
119,-1,549.448,133.41,32.679,69.325,0.892822,-1,-1,-1
119,-1,535.572,119.823,27.42,71.373,0.591531,-1,-1,-1
120,-1,367.688,179.648,38.034,75.781,0.992298,-1,-1,-1
120,-1,487.982,215.414,46.496,87.52,0.980061,-1,-1,-1
120,-1,695.677,207.227,42.501,98.668,0.978646,-1,-1,-1
120,-1,642.908,136.117,30.833,62.507,0.97792,-1,-1,-1
120,-1,565.837,131.257,36.165,71.851,0.94937,-1,-1,-1
120,-1,160.639,65.0552,26.808,36.9958,0.876223,-1,-1,-1
120,-1,550.19,142.195,29.799,68.267,0.7608,-1,-1,-1
121,-1,365.147,175.008,37.971,94.451,0.987773,-1,-1,-1
121,-1,504.763,220.486,28.376,75.073,0.985934,-1,-1,-1
121,-1,647.078,126.287,34.346,79.257,0.966122,-1,-1,-1
121,-1,686.839,183.328,45.5,124.866,0.94141,-1,-1,-1
121,-1,564.371,133.083,25.078,59.98,0.90666,-1,-1,-1
121,-1,580.438,143.891,24.782,56.911,0.883827,-1,-1,-1
121,-1,165.176,70.7183,22.193,32.6837,0.836629,-1,-1,-1
122,-1,365.352,183.112,38.044,88.752,0.990768,-1,-1,-1
122,-1,515.261,217.155,36.037,75.354,0.986414,-1,-1,-1
122,-1,584.232,139.539,24.731,59.218,0.958632,-1,-1,-1
122,-1,674.272,182.571,53.205,125.642,0.924482,-1,-1,-1
122,-1,654.872,128.601,25.156,68.003,0.923248,-1,-1,-1
122,-1,559.248,124.993,30.421,70.337,0.914753,-1,-1,-1
122,-1,162.521,69.2857,22.788,36.7443,0.910216,-1,-1,-1
122,-1,577.707,131.6,18.516,50.473,0.733921,-1,-1,-1
123,-1,518.648,214.874,56.693,90.458,0.993696,-1,-1,-1
123,-1,371.942,179.154,32.474,87.81,0.987567,-1,-1,-1
123,-1,572.825,128.771,39.931,66.261,0.929865,-1,-1,-1
123,-1,659.01,127.566,28.487,65.946,0.895632,-1,-1,-1
123,-1,145.804,61.6498,33.889,51.9852,0.839615,-1,-1,-1
123,-1,558.358,120.043,23.841,65.906,0.763283,-1,-1,-1
124,-1,373.625,176.479,33.208,85.579,0.988228,-1,-1,-1
124,-1,652.206,207.658,45.034,89.29,0.987214,-1,-1,-1
124,-1,531.795,213.48,43.043,85.432,0.983063,-1,-1,-1
124,-1,660.634,121.187,31.354,68.868,0.956722,-1,-1,-1
124,-1,149.504,67.6451,24.455,39.6799,0.940987,-1,-1,-1
124,-1,578.817,125.74,31.104,73.124,0.940645,-1,-1,-1
125,-1,530.857,218.292,45.029,89.999,0.991322,-1,-1,-1
125,-1,373.029,174.446,37.269,92.61,0.982773,-1,-1,-1
125,-1,647.209,204.687,34.246,97.154,0.979021,-1,-1,-1
125,-1,582.653,120.106,29.91,70.73,0.963891,-1,-1,-1
125,-1,660.744,128.53,33.6,66.664,0.96046,-1,-1,-1
125,-1,147.326,70.6656,25.7,39.9564,0.870752,-1,-1,-1
126,-1,546.696,214.791,32.631,82.269,0.989564,-1,-1,-1
126,-1,645.701,210.094,34.716,81.365,0.983465,-1,-1,-1
126,-1,374.038,177.796,35.797,89.381,0.980764,-1,-1,-1
126,-1,576.799,122.752,36.794,69.001,0.966069,-1,-1,-1
126,-1,665.915,124.821,29.789,72.216,0.944026,-1,-1,-1
126,-1,145.881,67.669,27.424,34.681,0.918851,-1,-1,-1
126,-1,600.087,132.376,25.984,57.034,0.604681,-1,-1,-1
127,-1,637.97,215.75,33.473,69.686,0.993402,-1,-1,-1
127,-1,374.36,177.301,35.375,87.391,0.980714,-1,-1,-1
127,-1,555.781,213.313,34.417,81.753,0.972231,-1,-1,-1
127,-1,580.656,124.428,37.84,70.252,0.964277,-1,-1,-1
127,-1,667.933,122.262,26.192,72.198,0.942235,-1,-1,-1
127,-1,138.986,69.6631,36.177,35.5499,0.920662,-1,-1,-1
128,-1,375.087,180.445,33.795,82.727,0.980783,-1,-1,-1
128,-1,564.746,227.671,38.956,80.179,0.979647,-1,-1,-1
128,-1,625.263,204.945,28.908,84.905,0.96858,-1,-1,-1
128,-1,590.322,130.399,37.137,54.767,0.967465,-1,-1,-1
128,-1,666.541,115.894,31.017,71.33,0.89819,-1,-1,-1
128,-1,136.328,70.5574,25.513,43.2576,0.854375,-1,-1,-1
128,-1,576.16,117.196,27.992,66.615,0.788695,-1,-1,-1
129,-1,375.356,179.898,32.611,81.649,0.982352,-1,-1,-1
129,-1,575.854,210.927,31.093,88.433,0.972263,-1,-1,-1
129,-1,588.314,128.192,35.732,57.347,0.9646,-1,-1,-1
129,-1,624.555,209.803,23.936,76.248,0.946635,-1,-1,-1
129,-1,671.891,123.289,33.902,71.321,0.919579,-1,-1,-1
129,-1,130.969,71.0584,22.733,35.9526,0.917118,-1,-1,-1
129,-1,141.076,82.628,20.224,34.345,0.59167,-1,-1,-1
130,-1,582.065,219.887,40.619,84.069,0.986621,-1,-1,-1
130,-1,374.91,181.044,32.244,82.617,0.981758,-1,-1,-1
130,-1,673.78,121.65,27.14,65.148,0.950219,-1,-1,-1
130,-1,593.031,124.25,31.483,58.695,0.945273,-1,-1,-1
130,-1,132.944,76.2629,26.392,41.1691,0.905522,-1,-1,-1
130,-1,610.929,208.679,36.688,84.949,0.786039,-1,-1,-1
131,-1,589.653,217.662,44.214,85.19,0.992031,-1,-1,-1
131,-1,372.452,175.383,33.929,92.219,0.974572,-1,-1,-1
131,-1,595.065,118.471,31.802,63.805,0.938276,-1,-1,-1
131,-1,685.275,116.212,27.927,73.883,0.926649,-1,-1,-1
131,-1,128.127,71.9208,18.635,46.0842,0.881531,-1,-1,-1
131,-1,617.806,124.145,29.515,52.81,0.801126,-1,-1,-1
132,-1,589.116,209.335,53.956,92.482,0.993619,-1,-1,-1
132,-1,372.94,178.769,34.405,85.558,0.980667,-1,-1,-1
132,-1,125.516,69.5019,20.705,37.5761,0.926706,-1,-1,-1
132,-1,596.702,124.453,32.377,65.185,0.919867,-1,-1,-1
132,-1,672.716,125.383,31.462,66.854,0.840831,-1,-1,-1
132,-1,686.942,109.545,33.52,94.802,0.78792,-1,-1,-1
133,-1,611.61,218.051,39.115,85.94,0.983199,-1,-1,-1
133,-1,578.75,206.418,36.137,76.962,0.979982,-1,-1,-1
133,-1,371.976,180.267,34.043,92.879,0.979959,-1,-1,-1
133,-1,591.541,111.697,31.458,65.552,0.947634,-1,-1,-1
133,-1,128.379,79.4759,19.175,35.3331,0.923557,-1,-1,-1
133,-1,116.116,71.9934,22.59,34.5976,0.79332,-1,-1,-1
133,-1,608.108,120.845,33.945,62.709,0.752172,-1,-1,-1
133,-1,686.159,119.589,37.151,78.078,0.740335,-1,-1,-1
133,-1,737.791,226.649,29.209,119.567,0.653885,-1,-1,-1
134,-1,371.205,174.9,34.337,93.583,0.981562,-1,-1,-1
134,-1,572.71,204.036,41.064,82.343,0.976586,-1,-1,-1
134,-1,616.377,217.739,33.298,81.52,0.972443,-1,-1,-1
134,-1,115.267,81.3615,30.058,46.5245,0.926891,-1,-1,-1
134,-1,590.69,114.312,29.432,72.237,0.92376,-1,-1,-1
134,-1,687.438,114.432,33.423,92.977,0.920152,-1,-1,-1
134,-1,731.472,234.888,35.528,123.073,0.909274,-1,-1,-1
134,-1,608.254,121.811,25.703,59.457,0.894452,-1,-1,-1
135,-1,722.696,247.801,42.703,107.601,0.985153,-1,-1,-1
135,-1,371.431,176.57,35.288,98.474,0.981879,-1,-1,-1
135,-1,627.07,223.858,40.939,83.275,0.980473,-1,-1,-1
135,-1,567.653,198.39,36.995,83.032,0.970249,-1,-1,-1
135,-1,609.207,117.98,32.477,68.267,0.946325,-1,-1,-1
135,-1,591.769,120.612,30.524,61.448,0.935048,-1,-1,-1
135,-1,682.981,119.032,36.055,81.333,0.908282,-1,-1,-1
135,-1,115.689,70.6945,26.866,46.9995,0.885031,-1,-1,-1
136,-1,628.18,227.9,42.01,81.475,0.993836,-1,-1,-1
136,-1,719.205,248.083,40.681,89.457,0.989033,-1,-1,-1
136,-1,372.068,176.338,34.088,94.982,0.982603,-1,-1,-1
136,-1,561.473,199.3,30.535,78.026,0.974515,-1,-1,-1
136,-1,609.298,122.072,43.289,63.836,0.950176,-1,-1,-1
136,-1,688.559,111.072,35.402,92.184,0.942865,-1,-1,-1
136,-1,116.416,78.1242,24.353,38.5438,0.928367,-1,-1,-1
136,-1,593.495,114.664,31.475,61.936,0.916118,-1,-1,-1
137,-1,641.755,224.319,39.45,82.989,0.993622,-1,-1,-1
137,-1,556.813,198.028,31.577,74.864,0.991634,-1,-1,-1
137,-1,710.873,233.019,40.594,108.784,0.988033,-1,-1,-1
137,-1,691.897,115.754,36.393,88.673,0.977669,-1,-1,-1
137,-1,376.48,177.454,29.181,89.021,0.977424,-1,-1,-1
137,-1,612.285,121.659,33.13,68.555,0.945142,-1,-1,-1
137,-1,115.746,81.134,24.782,45.586,0.933155,-1,-1,-1
137,-1,596.831,107.625,28.34,68.646,0.636042,-1,-1,-1
138,-1,698.977,236.342,42.995,109.075,0.990375,-1,-1,-1
138,-1,646.383,221.349,50.872,89.695,0.982129,-1,-1,-1
138,-1,377.809,181.367,30.037,89.582,0.974784,-1,-1,-1
138,-1,540.123,190.666,45.567,75.005,0.9585,-1,-1,-1
138,-1,605.422,107.902,39.408,74.251,0.952884,-1,-1,-1
138,-1,107.351,74.1206,25.941,48.1784,0.929859,-1,-1,-1
138,-1,691.631,122.568,32.109,58.485,0.895929,-1,-1,-1
138,-1,629.937,117.95,27.79,61.183,0.71922,-1,-1,-1
139,-1,687.672,232.54,46.505,105.525,0.987802,-1,-1,-1
139,-1,656.815,221.12,42.11,83.796,0.9782,-1,-1,-1
139,-1,371.557,184.354,32.719,77.213,0.978058,-1,-1,-1
139,-1,543.655,197.62,27.963,69.78,0.970492,-1,-1,-1
139,-1,609.637,115.354,30.623,61.776,0.949688,-1,-1,-1
139,-1,102.827,71.7288,26.119,46.2882,0.942059,-1,-1,-1
139,-1,701.657,111.351,29.81,75.171,0.897037,-1,-1,-1
139,-1,626.813,119.28,34.451,58.065,0.746328,-1,-1,-1
140,-1,669.806,230.977,64.098,114.186,0.988915,-1,-1,-1
140,-1,377.814,185.24,34.806,81.321,0.983754,-1,-1,-1
140,-1,527.716,188.803,33.892,83.455,0.983664,-1,-1,-1
140,-1,615.885,116.668,39.534,65.414,0.957266,-1,-1,-1
140,-1,101.756,80.1125,22.589,40.7945,0.943843,-1,-1,-1
140,-1,421.275,175.304,32.146,86.484,0.693501,-1,-1,-1
140,-1,697.331,115.337,34.924,69.87,0.672108,-1,-1,-1
140,-1,110.503,67.0132,28.518,43.4368,0.647408,-1,-1,-1
141,-1,516.459,185.732,36.43,70.931,0.992464,-1,-1,-1
141,-1,672.09,213.464,44.756,114.295,0.986923,-1,-1,-1
141,-1,374.854,185.258,34.299,72.903,0.982139,-1,-1,-1
141,-1,623.219,103.887,33.966,66.254,0.979943,-1,-1,-1
141,-1,102.435,74.7451,24.989,42.0019,0.951442,-1,-1,-1
141,-1,418.168,173.265,33.718,89.262,0.680574,-1,-1,-1
142,-1,514.863,191.908,38.938,73.121,0.994962,-1,-1,-1
142,-1,373.105,187.112,34.512,72.748,0.977415,-1,-1,-1
142,-1,663.14,245.053,38.761,87.429,0.976429,-1,-1,-1
142,-1,628.898,111.104,28.935,68.059,0.960392,-1,-1,-1
142,-1,686.241,223.664,40.345,90.595,0.95002,-1,-1,-1
142,-1,96.2868,74.1545,25.5892,42.5445,0.932325,-1,-1,-1
142,-1,609.395,103.881,30.925,71.208,0.781949,-1,-1,-1
142,-1,700.397,118.093,29.557,61.403,0.581618,-1,-1,-1
142,-1,415.436,177.094,34.73,86.206,0.532621,-1,-1,-1
143,-1,506.774,187.594,36.209,69.52,0.990398,-1,-1,-1
143,-1,692.691,235.721,38.254,87.429,0.988434,-1,-1,-1
143,-1,656.72,240.103,37.319,88.775,0.984269,-1,-1,-1
143,-1,373.921,178.66,31.279,85.917,0.977334,-1,-1,-1
143,-1,622.941,107.714,26.719,59.148,0.954094,-1,-1,-1
143,-1,96.0124,78.3066,20.1786,42.2444,0.932484,-1,-1,-1
143,-1,697.804,112.779,35.12,69.087,0.900952,-1,-1,-1
143,-1,677.437,233.246,31.099,84.417,0.823335,-1,-1,-1
143,-1,418.529,173.975,32.703,89.059,0.527978,-1,-1,-1
144,-1,496.785,182.541,33.567,86.252,0.992266,-1,-1,-1
144,-1,644.952,229.894,36.381,99.407,0.984297,-1,-1,-1
144,-1,378.045,188.082,31.15,86.834,0.983975,-1,-1,-1
144,-1,621.194,106.013,37.159,61.177,0.982737,-1,-1,-1
144,-1,706.035,231.089,47.144,81.901,0.969989,-1,-1,-1
144,-1,701.205,113.665,38.754,61.134,0.946385,-1,-1,-1
144,-1,89.1217,76.8449,27.4973,44.8111,0.937631,-1,-1,-1
144,-1,420.697,174.279,31.529,90.521,0.597397,-1,-1,-1
145,-1,639.583,238.745,34.053,94.267,0.991692,-1,-1,-1
145,-1,488.849,185.858,39.685,68.979,0.99048,-1,-1,-1
145,-1,717.219,231.022,36.693,83.089,0.988282,-1,-1,-1
145,-1,623.289,103.059,41.116,65.858,0.988003,-1,-1,-1
145,-1,373.701,186.549,35.648,81.715,0.981872,-1,-1,-1
145,-1,87.4207,73.8279,26.6273,42.3141,0.91048,-1,-1,-1
145,-1,699.736,109.374,37.066,54.871,0.89076,-1,-1,-1
146,-1,481.81,183.937,33.41,71.336,0.995372,-1,-1,-1
146,-1,630.122,225.6,44.272,113.369,0.986292,-1,-1,-1
146,-1,718.686,222.988,39.39,91.262,0.985739,-1,-1,-1
146,-1,632.841,104.046,29.035,69.714,0.985534,-1,-1,-1
146,-1,369.466,187.95,36.168,72.758,0.969555,-1,-1,-1
146,-1,81.9507,78.406,19.5593,46.155,0.946368,-1,-1,-1
146,-1,704.496,107.053,32.876,55.328,0.748337,-1,-1,-1
147,-1,467.465,182.618,33.284,80.192,0.993919,-1,-1,-1
147,-1,617.25,224.502,37.881,102.449,0.99167,-1,-1,-1
147,-1,636.285,104.168,28.823,61.705,0.98243,-1,-1,-1
147,-1,374.257,189.901,30.511,86.578,0.974021,-1,-1,-1
147,-1,717.475,225.527,49.525,90.689,0.961492,-1,-1,-1
147,-1,80.4434,78.9419,25.0266,50.7941,0.954075,-1,-1,-1
147,-1,705.798,112.819,30.291,52.304,0.81961,-1,-1,-1
147,-1,403.596,188.05,44.139,94.293,0.671995,-1,-1,-1
148,-1,462.663,179.268,35.72,78.462,0.991819,-1,-1,-1
148,-1,615.051,235.939,39.765,85.888,0.98581,-1,-1,-1
148,-1,634.968,102.255,29.775,65.501,0.978699,-1,-1,-1
148,-1,376.624,189.804,30.848,93.055,0.973512,-1,-1,-1
148,-1,77.7687,77.6326,22.9563,41.5084,0.934371,-1,-1,-1
148,-1,736.414,217.761,30.586,89.779,0.871566,-1,-1,-1
148,-1,404.043,186.773,39.769,93.987,0.854383,-1,-1,-1
148,-1,708.375,101.321,30.211,72.397,0.696773,-1,-1,-1
149,-1,454.21,180.992,43.646,79.36,0.995769,-1,-1,-1
149,-1,607.271,227.985,32.166,94.963,0.994062,-1,-1,-1
149,-1,378.68,191.216,35.36,87.37,0.961249,-1,-1,-1
149,-1,634.614,104.199,34.553,70.223,0.958891,-1,-1,-1
149,-1,70.4701,76.6727,30.3139,46.7903,0.94203,-1,-1,-1
149,-1,415.199,184.447,36.785,88.002,0.813784,-1,-1,-1
150,-1,593.881,222.827,40.599,91.149,0.99269,-1,-1,-1
150,-1,440.347,174.186,34.27,88.513,0.988099,-1,-1,-1
150,-1,649.823,107.53,32.405,66.973,0.978567,-1,-1,-1
150,-1,384.951,190.507,37.147,89.596,0.976429,-1,-1,-1
150,-1,65.5454,85.031,21.8901,47.799,0.909649,-1,-1,-1
150,-1,629.434,101.663,35.897,69.107,0.874099,-1,-1,-1
150,-1,416.847,185.666,30.568,89.018,0.772966,-1,-1,-1
151,-1,385.151,194.934,46.232,84.174,0.989229,-1,-1,-1
151,-1,579.936,222.215,51.901,92.033,0.984686,-1,-1,-1
151,-1,435.319,176.961,37.774,87.458,0.982525,-1,-1,-1
151,-1,638.223,102.536,32.997,70.089,0.961616,-1,-1,-1
151,-1,67.1665,77.5861,20.4187,43.8259,0.928943,-1,-1,-1
151,-1,411.989,188.68,39.089,95.956,0.77288,-1,-1,-1
152,-1,381.912,195.891,45.978,75.188,0.993543,-1,-1,-1
152,-1,436.49,192.389,34.121,75.244,0.990276,-1,-1,-1
152,-1,578.855,223.416,34.435,92.43,0.98681,-1,-1,-1
152,-1,648.188,112.14,23.756,51.827,0.96069,-1,-1,-1
152,-1,64.7329,84.5394,29.78,44.4536,0.923296,-1,-1,-1
152,-1,628.345,108.028,32.271,61.037,0.889242,-1,-1,-1
152,-1,411.182,193.435,36.278,83.837,0.66322,-1,-1,-1
153,-1,431.201,183.649,39.128,92.308,0.992381,-1,-1,-1
153,-1,570.122,227.333,32.405,84.134,0.984792,-1,-1,-1
153,-1,391.89,198.134,41.952,80.315,0.938067,-1,-1,-1
153,-1,649.236,113.41,22.797,55.664,0.932523,-1,-1,-1
153,-1,627.555,105.5,30.714,61.218,0.925933,-1,-1,-1
153,-1,54.7429,79.226,27.858,53.879,0.885229,-1,-1,-1
153,-1,699.583,116.493,28.578,71.559,0.686716,-1,-1,-1
154,-1,565.654,223.267,39.663,77.748,0.99346,-1,-1,-1
154,-1,434.481,183.067,37.805,86.138,0.991297,-1,-1,-1
154,-1,639.899,102.39,32.982,64.401,0.951933,-1,-1,-1
154,-1,52.6897,77.6721,28.0031,48.9159,0.895186,-1,-1,-1
154,-1,695.557,115.147,35.277,71.915,0.87056,-1,-1,-1
154,-1,554.203,231.052,26.466,64.3,0.736882,-1,-1,-1
155,-1,440.074,197.504,41.763,87.291,0.982524,-1,-1,-1
155,-1,562.165,222.686,26.8,87.982,0.978617,-1,-1,-1
155,-1,646.141,113.417,34.022,56.065,0.953805,-1,-1,-1
155,-1,48.8019,83.5791,31.5873,48.7059,0.944864,-1,-1,-1
155,-1,686.809,113.391,49.843,69.397,0.908392,-1,-1,-1
155,-1,399.903,187.095,48.35,100.713,0.829135,-1,-1,-1
156,-1,540.862,220.343,43.738,93.441,0.991036,-1,-1,-1
156,-1,442.912,201.11,39.2,94.783,0.981519,-1,-1,-1
156,-1,42.1184,86.3281,29.3736,46.9719,0.946817,-1,-1,-1
156,-1,399.72,181.052,45.903,102.182,0.926598,-1,-1,-1
156,-1,642.005,102.444,31.802,62.411,0.9096,-1,-1,-1
156,-1,664.005,110.601,30.59,60.591,0.834181,-1,-1,-1
156,-1,676.011,112.754,55.655,58.184,0.663819,-1,-1,-1
157,-1,538.786,220.164,39.885,81.267,0.991981,-1,-1,-1
157,-1,447.608,186.164,36.109,105.088,0.985266,-1,-1,-1
157,-1,641.584,102.373,30.57,62.36,0.931338,-1,-1,-1
157,-1,42.8009,85.9753,36.58,46.0257,0.92951,-1,-1,-1
157,-1,392.619,161.913,44.686,130.713,0.881558,-1,-1,-1
157,-1,676.765,116.782,30.886,58.925,0.880245,-1,-1,-1
158,-1,456.381,202.069,41.332,76.981,0.988538,-1,-1,-1
158,-1,528.568,215.072,33.248,89.499,0.98836,-1,-1,-1
158,-1,369.248,179.275,40.974,61.392,0.983874,-1,-1,-1
158,-1,38.5403,82.822,31.7345,59.395,0.940683,-1,-1,-1
158,-1,671.383,105.222,46.992,69.304,0.92416,-1,-1,-1
158,-1,414.353,176.236,34.59,112.876,0.733614,-1,-1,-1
158,-1,650.033,106.634,30.184,55.916,0.688071,-1,-1,-1
159,-1,364.612,175.286,39.874,74.562,0.99115,-1,-1,-1
159,-1,461.699,205.709,41.839,88.587,0.990514,-1,-1,-1
159,-1,526.244,219.78,29.988,80.616,0.988894,-1,-1,-1
159,-1,37.099,86.7269,27.5279,50.0381,0.926356,-1,-1,-1
159,-1,414.59,182.642,33.292,118.822,0.917835,-1,-1,-1
159,-1,673.144,107.782,37.74,70.268,0.88706,-1,-1,-1
159,-1,644.438,105.643,34.051,48.692,0.52305,-1,-1,-1
160,-1,463.907,200.155,45.545,95.323,0.981633,-1,-1,-1
160,-1,512.91,214.922,41.747,99.641,0.97428,-1,-1,-1
160,-1,26.8394,84.0879,35.0704,57.6101,0.967549,-1,-1,-1
160,-1,358.898,179.106,35.359,74.362,0.964322,-1,-1,-1
160,-1,419.904,191.306,30.064,111.412,0.918944,-1,-1,-1
160,-1,661.466,107.28,25.909,59.611,0.917224,-1,-1,-1
160,-1,648.045,97.6046,27.477,56.1124,0.786072,-1,-1,-1
161,-1,339.704,172.694,40.778,67.882,0.985596,-1,-1,-1
161,-1,419.616,187.97,38.716,120.084,0.980486,-1,-1,-1
161,-1,503.649,221.614,36.904,83.086,0.980216,-1,-1,-1
161,-1,28.8129,86.2492,34.9738,62.4358,0.963563,-1,-1,-1
161,-1,479.999,208.434,30.415,82.864,0.950337,-1,-1,-1
161,-1,660.27,104.633,28.111,66.666,0.944932,-1,-1,-1
161,-1,461.738,195.729,27.9,91.544,0.81845,-1,-1,-1
162,-1,421.186,204.936,38.458,94.676,0.991799,-1,-1,-1
162,-1,343.144,174.087,32.42,75.892,0.98575,-1,-1,-1
162,-1,484.835,201.57,37.92,93.235,0.975485,-1,-1,-1
162,-1,661.182,103.487,35.272,71.86,0.969014,-1,-1,-1
162,-1,27.3741,87.677,26.9635,57.745,0.944991,-1,-1,-1
163,-1,334.376,168.361,35.847,84.957,0.988993,-1,-1,-1
163,-1,481.169,202.349,40.926,108.653,0.98843,-1,-1,-1
163,-1,429.89,206.393,40.49,100.833,0.980713,-1,-1,-1
163,-1,23.321,93.5946,27.7625,50.3574,0.947856,-1,-1,-1
163,-1,665.941,99.5975,35.438,67.1955,0.879827,-1,-1,-1
164,-1,432.476,208.374,37.012,93.05,0.989528,-1,-1,-1
164,-1,330.702,163.651,32.297,77.009,0.989282,-1,-1,-1
164,-1,483.232,204.632,35.142,104.523,0.984678,-1,-1,-1
164,-1,23.4535,96.8414,21.4099,43.5266,0.929587,-1,-1,-1
164,-1,667.657,101.028,32.289,73.707,0.923234,-1,-1,-1
164,-1,33.1181,87.068,25.6952,51.595,0.7128,-1,-1,-1
165,-1,479.407,204.355,39.993,104.076,0.991245,-1,-1,-1
165,-1,327.53,175.321,33.123,65.069,0.990083,-1,-1,-1
165,-1,436.47,207.122,44.599,96.337,0.987693,-1,-1,-1
165,-1,21.8619,89.3701,23.1301,56.9709,0.947261,-1,-1,-1
165,-1,654.178,102.069,28.238,81.972,0.917608,-1,-1,-1
165,-1,665.433,114.76,32.834,52.076,0.625111,-1,-1,-1
166,-1,307.916,176.11,50.541,70.837,0.988638,-1,-1,-1
166,-1,453.583,213.623,33.73,85.635,0.978199,-1,-1,-1
166,-1,18.802,87.2519,23.1521,55.3181,0.961113,-1,-1,-1
166,-1,496.485,205.126,33.798,81.97,0.955221,-1,-1,-1
166,-1,648.481,113.808,35.574,61.885,0.88378,-1,-1,-1
166,-1,684.756,104.145,31.227,51.057,0.830116,-1,-1,-1
167,-1,308.743,169.983,36.228,67.511,0.987459,-1,-1,-1
167,-1,447.907,207.68,37.958,101.081,0.98086,-1,-1,-1
167,-1,652.832,111.056,30.038,65.966,0.96902,-1,-1,-1
167,-1,494.845,200.981,41.51,90.438,0.959677,-1,-1,-1
167,-1,20.9911,89.7904,23.6859,50.8936,0.941103,-1,-1,-1
167,-1,678.864,107.702,28.181,62.117,0.753666,-1,-1,-1
168,-1,286.16,179.217,46.82,64.435,0.98928,-1,-1,-1
168,-1,448.02,204.907,39.063,101.738,0.97828,-1,-1,-1
168,-1,500.648,206.035,33.412,78.404,0.977361,-1,-1,-1
168,-1,645.438,109.439,33.632,76.508,0.915346,-1,-1,-1
168,-1,680.734,107.149,29.961,58.688,0.825701,-1,-1,-1
168,-1,20.9123,88.6306,21.995,59.6194,0.823344,-1,-1,-1
169,-1,281.583,176.458,46.67,63.547,0.990953,-1,-1,-1
169,-1,499.729,202.985,51.133,98.891,0.986519,-1,-1,-1
169,-1,444.028,206.402,42.19,94.488,0.985225,-1,-1,-1
169,-1,10.1857,86.3015,25.2254,53.4415,0.927976,-1,-1,-1
169,-1,669.076,102.113,35.185,59.569,0.862622,-1,-1,-1
170,-1,509.049,209.724,38.371,79.488,0.993765,-1,-1,-1
170,-1,282.307,167.232,37.798,72.656,0.989154,-1,-1,-1
170,-1,431.419,213.643,43.32,90.278,0.987149,-1,-1,-1
170,-1,7.77384,89.5338,25.4871,46.4582,0.925687,-1,-1,-1
170,-1,675.023,106.357,38.125,49.535,0.7925,-1,-1,-1
171,-1,512.271,198.21,47.627,87.88,0.988562,-1,-1,-1
171,-1,270.003,161.853,36.371,78.989,0.985151,-1,-1,-1
171,-1,443.204,203.549,43.509,99.444,0.975324,-1,-1,-1
171,-1,674.375,102.398,36.398,57.599,0.927435,-1,-1,-1
171,-1,626.215,119.988,30.682,74.364,0.903119,-1,-1,-1
171,-1,466.2,222.876,30.769,65.614,0.610811,-1,-1,-1
172,-1,524.169,206.72,46.117,88.906,0.992709,-1,-1,-1
172,-1,261.418,166.96,45.688,63.172,0.989056,-1,-1,-1
172,-1,451.998,209.772,40.119,90.99,0.988294,-1,-1,-1
172,-1,621.57,116.817,34.464,75.627,0.96549,-1,-1,-1
172,-1,668.829,99.6062,39.58,59.6178,0.914896,-1,-1,-1
172,-1,423.355,209.449,38.264,101.954,0.751844,-1,-1,-1
173,-1,462.82,207.181,34.658,94.378,0.987153,-1,-1,-1
173,-1,261.295,173.366,33.233,62.144,0.982897,-1,-1,-1
173,-1,532.349,206.739,34.062,87.449,0.978174,-1,-1,-1
173,-1,617.184,121.631,33.806,75.051,0.950602,-1,-1,-1
173,-1,411.159,192.138,40.644,115.946,0.920216,-1,-1,-1
173,-1,676.073,102.292,30.474,56.175,0.908008,-1,-1,-1
173,-1,453.311,203.732,23.336,86.039,0.646318,-1,-1,-1
174,-1,538.084,216.238,37.232,81.469,0.992677,-1,-1,-1
174,-1,465.33,207.064,30.96,89.338,0.983681,-1,-1,-1
174,-1,250.353,167.279,36.769,59.606,0.982234,-1,-1,-1
174,-1,616.314,118.744,31.161,74.847,0.959638,-1,-1,-1
174,-1,403.499,179.57,42.002,124.471,0.945731,-1,-1,-1
174,-1,675.475,101.639,29.324,58.997,0.888364,-1,-1,-1
175,-1,541.349,219.464,49.135,90.227,0.990896,-1,-1,-1
175,-1,461.264,209.805,47.917,80.835,0.98944,-1,-1,-1
175,-1,242.422,168.79,36.436,70.163,0.983149,-1,-1,-1
175,-1,616.484,131.57,33.388,73.978,0.927697,-1,-1,-1
175,-1,666.195,99.2948,39.446,60.6232,0.882891,-1,-1,-1
175,-1,397.052,186.055,46.801,127.793,0.843107,-1,-1,-1
176,-1,546.216,217.7,40.853,86.309,0.992215,-1,-1,-1
176,-1,462.333,215.387,42.424,86.64,0.984529,-1,-1,-1
176,-1,230.41,169.561,44.077,65.57,0.981414,-1,-1,-1
176,-1,597.481,128.993,32.285,70.908,0.958912,-1,-1,-1
176,-1,669.398,101.962,40.688,57.777,0.894434,-1,-1,-1
176,-1,398.016,216.13,37.579,86.968,0.867619,-1,-1,-1
177,-1,386.439,206.214,35.937,92.689,0.990429,-1,-1,-1
177,-1,473.293,212.916,41.242,89.715,0.989703,-1,-1,-1
177,-1,551.216,208.77,34.073,90.557,0.98223,-1,-1,-1
177,-1,602.367,119.284,29.137,76.085,0.979856,-1,-1,-1
177,-1,231.941,160.891,40.15,63.73,0.96898,-1,-1,-1
177,-1,676.613,101.024,32.908,52.317,0.89685,-1,-1,-1
178,-1,479.084,219.243,39.066,85.171,0.991962,-1,-1,-1
178,-1,559.995,220.445,40.149,79.209,0.990894,-1,-1,-1
178,-1,376.808,211.38,44.225,84.563,0.990391,-1,-1,-1
178,-1,222.831,161.279,30.191,75.984,0.980232,-1,-1,-1
178,-1,591.754,117.859,30.641,73.539,0.966624,-1,-1,-1
178,-1,674.399,97.9743,34.82,53.6607,0.937323,-1,-1,-1
179,-1,560.79,220.941,49.349,90.144,0.995428,-1,-1,-1
179,-1,485.861,216.219,31.417,83.911,0.994247,-1,-1,-1
179,-1,211.391,158.589,44.605,68.301,0.988461,-1,-1,-1
179,-1,368.061,198.165,38.695,80.134,0.98584,-1,-1,-1
179,-1,592.938,130.361,30.979,70.996,0.931806,-1,-1,-1
179,-1,675.071,98.628,37.344,57.631,0.930038,-1,-1,-1
180,-1,572.641,217.539,39.996,94.518,0.99118,-1,-1,-1
180,-1,208.621,154.524,38.16,70.053,0.983302,-1,-1,-1
180,-1,364.788,213.724,36.819,74.424,0.98131,-1,-1,-1
180,-1,488.672,219.32,35.952,94.216,0.981166,-1,-1,-1
180,-1,582.024,120.887,32.556,71.338,0.966023,-1,-1,-1
180,-1,675.395,98.8444,39.777,56.7006,0.916568,-1,-1,-1
181,-1,591.476,217.685,37.489,84.05,0.995448,-1,-1,-1
181,-1,354.344,208.28,38.306,80.659,0.992992,-1,-1,-1
181,-1,501.189,215.645,33.513,93.998,0.989947,-1,-1,-1
181,-1,195.411,160.792,36.255,66.655,0.987079,-1,-1,-1
181,-1,580.262,127.876,32.272,70.717,0.982344,-1,-1,-1
181,-1,677.779,93.6988,29.294,56.2412,0.815311,-1,-1,-1
182,-1,501.74,213.048,38.373,90.068,0.992183,-1,-1,-1
182,-1,593.016,210.482,37.878,88.501,0.991665,-1,-1,-1
182,-1,348.156,209.866,40.487,81.502,0.986717,-1,-1,-1
182,-1,191.281,164.961,37.767,74.856,0.984741,-1,-1,-1
182,-1,577.69,125.725,36.101,77.296,0.978561,-1,-1,-1
182,-1,681.003,96.616,29.647,59.155,0.756794,-1,-1,-1
183,-1,598.393,211.997,38.509,90.856,0.995018,-1,-1,-1
183,-1,504.977,222.571,38.19,94.421,0.991567,-1,-1,-1
183,-1,341.497,211.121,33.662,78.331,0.99027,-1,-1,-1
183,-1,187.362,162.223,35.02,71.003,0.97721,-1,-1,-1
183,-1,571.782,133.182,37.053,70.276,0.948812,-1,-1,-1
183,-1,673.253,94.0937,51.717,63.7973,0.855296,-1,-1,-1
184,-1,606.871,226.51,34.409,82.724,0.995321,-1,-1,-1
184,-1,508.729,225.151,55.207,100.94,0.993733,-1,-1,-1
184,-1,326.296,204.303,43.74,84.61,0.98411,-1,-1,-1
184,-1,565.7,132.908,30.448,67.86,0.980037,-1,-1,-1
184,-1,176.039,151.574,32.21,74.878,0.950302,-1,-1,-1
184,-1,680.779,91.8267,28.137,59.4953,0.889437,-1,-1,-1
185,-1,518.983,220.725,41.528,103.793,0.99077,-1,-1,-1
185,-1,325.695,213.956,34.789,76.037,0.989868,-1,-1,-1
185,-1,173.348,157.975,39.777,66.082,0.987232,-1,-1,-1
185,-1,612.935,225.482,41.107,92.377,0.987145,-1,-1,-1
185,-1,562.424,137.022,40.867,67.118,0.981962,-1,-1,-1
185,-1,675.117,101.495,37.818,56.486,0.867183,-1,-1,-1
186,-1,162.726,163.983,47.188,65.813,0.991106,-1,-1,-1
186,-1,313.535,207.847,42.499,80.289,0.990951,-1,-1,-1
186,-1,520.179,222.807,39.334,104.716,0.990326,-1,-1,-1
186,-1,561.595,133.687,31.513,72.947,0.983208,-1,-1,-1
186,-1,620.876,219.905,34.432,91.909,0.98306,-1,-1,-1
186,-1,676.905,99.7957,39.55,55.8783,0.793662,-1,-1,-1
187,-1,633.512,230.419,37.339,85.751,0.991088,-1,-1,-1
187,-1,528.978,229.239,39.56,90.768,0.986128,-1,-1,-1
187,-1,298.698,212.874,50.14,85.174,0.985413,-1,-1,-1
187,-1,559.356,127.312,33.606,80.061,0.981921,-1,-1,-1
187,-1,159.011,161.573,33.682,69.146,0.976198,-1,-1,-1
187,-1,678.226,97.7308,49.61,58.7872,0.770105,-1,-1,-1
188,-1,540.449,230.444,37.333,98.134,0.990098,-1,-1,-1
188,-1,629.5,223.463,52.781,101.462,0.986551,-1,-1,-1
188,-1,300.037,203.67,34.749,79.809,0.986192,-1,-1,-1
188,-1,157.006,159.681,31.627,65.475,0.983817,-1,-1,-1
188,-1,553.741,132.702,33.139,68.812,0.979385,-1,-1,-1
188,-1,684.036,88.8449,32.792,60.1361,0.760855,-1,-1,-1
189,-1,543.58,231.174,40.609,101.527,0.992093,-1,-1,-1
189,-1,638.753,233.231,48.582,90.804,0.991938,-1,-1,-1
189,-1,286.731,183.206,42.827,91.532,0.990761,-1,-1,-1
189,-1,544.687,126.927,40.836,80.747,0.989788,-1,-1,-1
189,-1,150.77,161.127,28.827,60.358,0.961687,-1,-1,-1
189,-1,677.456,93.7687,29.852,55.7523,0.851278,-1,-1,-1
190,-1,647.411,231.982,43.07,88.646,0.992706,-1,-1,-1
190,-1,284.478,186.363,33.236,92.368,0.989809,-1,-1,-1
190,-1,544.886,230.868,49.061,113.716,0.987399,-1,-1,-1
190,-1,537.82,133.98,39.123,68.852,0.984065,-1,-1,-1
190,-1,138.638,158.762,30.639,67.736,0.968013,-1,-1,-1
190,-1,682.502,88.2411,37.051,48.8479,0.819286,-1,-1,-1
191,-1,547.634,237.708,46.646,105.461,0.993395,-1,-1,-1
191,-1,280.693,189.643,31.39,95.142,0.993037,-1,-1,-1
191,-1,648.37,224.335,48.629,107.655,0.99078,-1,-1,-1
191,-1,535.078,133.86,38.592,79.248,0.990121,-1,-1,-1
191,-1,136.711,160.569,32.842,66.601,0.983005,-1,-1,-1
191,-1,680.29,92.5928,39.322,46.4702,0.821478,-1,-1,-1
192,-1,273.723,199.349,35.679,81.887,0.993576,-1,-1,-1
192,-1,548.743,245.269,50.331,100.986,0.993404,-1,-1,-1
192,-1,655.749,234.725,35.612,90.671,0.990884,-1,-1,-1
192,-1,530.366,130.594,34.582,82.366,0.984074,-1,-1,-1
192,-1,132.781,158.98,33.275,62.985,0.978295,-1,-1,-1
192,-1,683.466,92.1436,39.109,50.8694,0.91942,-1,-1,-1
193,-1,567.77,250.342,33.994,83.94,0.986117,-1,-1,-1
193,-1,517.048,144.064,33.347,68.675,0.982157,-1,-1,-1
193,-1,257.493,201.405,33.03,66.64,0.978156,-1,-1,-1
193,-1,659.329,235.897,34.108,90.28,0.976815,-1,-1,-1
193,-1,122.978,152.423,39.102,64.896,0.971943,-1,-1,-1
193,-1,669.27,75.5558,47.369,82.5412,0.955225,-1,-1,-1
194,-1,515.273,139.669,38.723,69.382,0.988155,-1,-1,-1
194,-1,571.779,240.85,34.312,100.732,0.986591,-1,-1,-1
194,-1,257.917,194.051,32.927,89.657,0.986154,-1,-1,-1
194,-1,664.221,226.768,38.565,112.892,0.97593,-1,-1,-1
194,-1,113.443,156.775,41.318,68.63,0.970562,-1,-1,-1
194,-1,682.881,96.0433,39.217,48.3027,0.934981,-1,-1,-1
195,-1,257.259,195.479,37.454,82.241,0.994621,-1,-1,-1
195,-1,570.186,249.774,44.741,101.939,0.989994,-1,-1,-1
195,-1,667.062,237.886,39.217,94.948,0.987284,-1,-1,-1
195,-1,516.487,142.504,35.199,78.082,0.983973,-1,-1,-1
195,-1,111.516,153.439,31.312,66.894,0.971871,-1,-1,-1
195,-1,681.011,96.9117,39.189,44.9763,0.924255,-1,-1,-1
196,-1,677.647,243.285,42.371,99.641,0.99445,-1,-1,-1
196,-1,580.55,246.973,40.848,103.944,0.990901,-1,-1,-1
196,-1,242.212,190.915,39.671,78.656,0.9868,-1,-1,-1
196,-1,508.043,138.232,35.909,77.314,0.98412,-1,-1,-1
196,-1,112.383,160.716,30.326,59.128,0.975799,-1,-1,-1
196,-1,682.022,98.7301,27.987,55.1569,0.956144,-1,-1,-1
197,-1,584.831,244.361,41.948,106.569,0.99518,-1,-1,-1
197,-1,692.05,240.392,40.908,96.411,0.98714,-1,-1,-1
197,-1,499.451,137.562,42.133,81.028,0.982051,-1,-1,-1
197,-1,240.594,189.968,30.222,85.495,0.978127,-1,-1,-1
197,-1,681.853,99.4615,27.049,51.7385,0.951476,-1,-1,-1
197,-1,102.151,146.386,31.209,69.414,0.947032,-1,-1,-1
198,-1,587.684,252.458,38.87,112.369,0.991557,-1,-1,-1
198,-1,497.385,145.064,37.316,78.239,0.990723,-1,-1,-1
198,-1,687.336,239.381,43.94,105.677,0.988067,-1,-1,-1
198,-1,95.126,145.626,26.736,74.55,0.975282,-1,-1,-1
198,-1,237.325,189.669,30.35,88.613,0.970041,-1,-1,-1
198,-1,679.155,97.3863,34.377,56.9787,0.951656,-1,-1,-1
199,-1,598.273,258.454,45.493,108.636,0.994407,-1,-1,-1
199,-1,694.423,242.46,42.684,106.195,0.990305,-1,-1,-1
199,-1,222.77,188.493,37.24,79.39,0.981411,-1,-1,-1
199,-1,90.4107,161.981,32.0923,60.576,0.969577,-1,-1,-1
199,-1,498.724,143.957,32.65,80.915,0.945786,-1,-1,-1
199,-1,680.559,99.4026,43.045,51.0424,0.897516,-1,-1,-1
200,-1,700.176,242.525,42.922,110.589,0.988756,-1,-1,-1
200,-1,609.339,254.801,30.807,98.513,0.987824,-1,-1,-1
200,-1,488.728,140.021,40.635,76.501,0.986877,-1,-1,-1
200,-1,85.2723,157.005,33.8387,65.594,0.985581,-1,-1,-1
200,-1,220.291,183.811,33.873,80.516,0.942155,-1,-1,-1
200,-1,681.673,100.867,34.665,58.406,0.926216,-1,-1,-1
201,-1,218.123,191,33.816,67.077,0.988905,-1,-1,-1
201,-1,479.971,144.454,38.779,75.973,0.979886,-1,-1,-1
201,-1,702.86,244.216,39.291,110.841,0.979678,-1,-1,-1
201,-1,80.8276,152.366,31.2434,66.154,0.976757,-1,-1,-1
201,-1,608.527,268.9,39.98,100.101,0.973561,-1,-1,-1
201,-1,683.861,99.6347,39.587,61.0043,0.92961,-1,-1,-1
202,-1,210.47,190.692,33.21,73.134,0.987648,-1,-1,-1
202,-1,621.988,267.579,46.806,112.963,0.986718,-1,-1,-1
202,-1,472.447,148.525,33.447,79.738,0.984456,-1,-1,-1
202,-1,706.984,255.934,39.091,98.804,0.982108,-1,-1,-1
202,-1,682.765,99.2894,38.343,62.3016,0.95184,-1,-1,-1
202,-1,71.643,148.945,31.345,71.902,0.938682,-1,-1,-1
203,-1,627.398,268.99,47.052,111.519,0.989159,-1,-1,-1
203,-1,711.818,235.529,43.29,125.483,0.983293,-1,-1,-1
203,-1,203.93,186.699,32.481,70.83,0.978595,-1,-1,-1
203,-1,466.893,149.562,41.423,76.592,0.977003,-1,-1,-1
203,-1,62.8646,147.757,30.4586,67.005,0.961105,-1,-1,-1
203,-1,675.89,97.9762,46.99,57.3758,0.898306,-1,-1,-1
204,-1,631.178,272.727,40.806,108.207,0.989085,-1,-1,-1
204,-1,194.963,184.445,39.024,69.242,0.986996,-1,-1,-1
204,-1,470.23,135.824,36.088,88.006,0.986797,-1,-1,-1
204,-1,714.03,243.773,51.897,134.339,0.98375,-1,-1,-1
204,-1,66.5741,156.153,23.6105,55.265,0.971506,-1,-1,-1
204,-1,674.893,95.7576,47.671,58.8664,0.921992,-1,-1,-1
205,-1,632.202,282.398,60.582,118.39,0.992485,-1,-1,-1
205,-1,457.529,148.154,33.539,81.677,0.991472,-1,-1,-1
205,-1,187.799,183.849,34.023,81.352,0.976528,-1,-1,-1
205,-1,717.736,256.354,44.075,120.783,0.975769,-1,-1,-1
205,-1,55.9338,145.98,29.5636,62.127,0.95524,-1,-1,-1
205,-1,670.521,106.621,45.297,45.375,0.9235,-1,-1,-1
206,-1,451.474,152.724,39.949,79.348,0.987063,-1,-1,-1
206,-1,636.452,281.735,52.131,125.769,0.980233,-1,-1,-1
206,-1,183.157,183.332,34.433,70.21,0.977287,-1,-1,-1
206,-1,41.7945,149.02,34.4042,62.854,0.965494,-1,-1,-1
206,-1,725.145,257.258,39.784,117.68,0.945901,-1,-1,-1
206,-1,669.543,102.697,38.795,56.662,0.918426,-1,-1,-1
207,-1,652.092,288.901,42.38,108.212,0.986197,-1,-1,-1
207,-1,181.584,182.538,34.83,65.565,0.978459,-1,-1,-1
207,-1,52.1974,154.722,32.3618,58.774,0.973554,-1,-1,-1
207,-1,445.431,149.966,40.077,74.756,0.96234,-1,-1,-1
207,-1,668.455,108.139,34.783,46.381,0.93657,-1,-1,-1
207,-1,730.824,260.72,36.176,119.928,0.898185,-1,-1,-1
208,-1,434.837,137.249,34.395,93.774,0.990599,-1,-1,-1
208,-1,647.175,291.138,42.877,105.413,0.987878,-1,-1,-1
208,-1,164.058,186.829,42.369,76.113,0.980537,-1,-1,-1
208,-1,36.1358,148.648,35.2576,71.404,0.954076,-1,-1,-1
208,-1,660.249,103.922,28.568,53.918,0.938881,-1,-1,-1
208,-1,729.584,267.701,37.416,106.45,0.91515,-1,-1,-1
208,-1,677.143,115.992,31.283,49.078,0.868796,-1,-1,-1
209,-1,653.049,286.336,42.11,116.423,0.991494,-1,-1,-1
209,-1,159.401,184.905,38.74,78.711,0.9783,-1,-1,-1
209,-1,38.0791,147.752,31.2007,64.339,0.973623,-1,-1,-1
209,-1,429.996,142.583,37.997,84.106,0.967024,-1,-1,-1
209,-1,662.878,100.49,28.435,56.541,0.939481,-1,-1,-1
209,-1,678.431,114.807,31.974,53.238,0.853104,-1,-1,-1
209,-1,742.573,269.412,24.427,108.346,0.838689,-1,-1,-1
210,-1,161.452,184.986,38.247,88.386,0.98769,-1,-1,-1
210,-1,653.642,288.267,45.267,119.058,0.987413,-1,-1,-1
210,-1,29.6198,140.736,36.1089,74.818,0.940764,-1,-1,-1
210,-1,668.212,100.868,27.182,54.773,0.915951,-1,-1,-1
210,-1,428.771,142.266,36.515,82.19,0.863167,-1,-1,-1
210,-1,678.859,114.868,32.476,50.104,0.752853,-1,-1,-1
211,-1,653.468,287.817,50.017,125.85,0.984115,-1,-1,-1
211,-1,149.364,177.255,36.746,69.112,0.978998,-1,-1,-1
211,-1,23.0835,141.518,30.4468,69.323,0.976802,-1,-1,-1
211,-1,664.637,103.439,36.066,55.548,0.910372,-1,-1,-1
212,-1,644.733,292.096,47.29,116.691,0.992899,-1,-1,-1
212,-1,147.51,177.759,36.209,67.563,0.9685,-1,-1,-1
212,-1,23.4724,144.142,33.1107,65.201,0.962147,-1,-1,-1
212,-1,669.462,109.755,46.477,38.928,0.907541,-1,-1,-1
212,-1,652.728,101.602,36.927,57.121,0.872704,-1,-1,-1
213,-1,640.215,294.414,51.701,115.46,0.991563,-1,-1,-1
213,-1,140.034,181.957,30.233,63.106,0.964658,-1,-1,-1
213,-1,18.7925,152.669,32.6986,56.184,0.955493,-1,-1,-1
213,-1,671.089,104.334,49.805,45.229,0.931291,-1,-1,-1
214,-1,631.89,285.928,51.663,123.781,0.988073,-1,-1,-1
214,-1,130.783,182.174,40.837,73.868,0.983118,-1,-1,-1
214,-1,11.3147,147.923,29.2639,61.653,0.974737,-1,-1,-1
214,-1,655.349,111.272,46.99,48.024,0.924837,-1,-1,-1
215,-1,627.082,291.478,50.988,118.168,0.990483,-1,-1,-1
215,-1,126.374,187.599,48.114,75.253,0.985296,-1,-1,-1
215,-1,4.40279,139.132,36.8968,63.882,0.94446,-1,-1,-1
215,-1,391.175,144.449,35.993,93.635,0.916856,-1,-1,-1
215,-1,666.332,102.68,34.189,66.21,0.892697,-1,-1,-1
216,-1,626.557,303.093,40.995,107.089,0.993292,-1,-1,-1
216,-1,120.21,188.004,30.336,66.297,0.981817,-1,-1,-1
216,-1,7.56009,147.457,31.8771,58.421,0.967959,-1,-1,-1
216,-1,667.101,104.546,34.614,49.071,0.942003,-1,-1,-1
216,-1,392.74,144.44,28.654,91.786,0.93409,-1,-1,-1
217,-1,625.392,297.001,42.964,114.572,0.989124,-1,-1,-1
217,-1,116.645,187.917,29.049,67.351,0.95473,-1,-1,-1
217,-1,8.13887,149.1,29.0202,60.396,0.953753,-1,-1,-1
217,-1,389.739,150.586,33.992,89.925,0.944375,-1,-1,-1
217,-1,666.217,106.435,38.591,56.682,0.915559,-1,-1,-1
218,-1,610.15,300.321,47.452,116.638,0.991118,-1,-1,-1
218,-1,379.146,147.518,35.026,83.138,0.972903,-1,-1,-1
218,-1,115.615,182.023,29.627,71.622,0.963447,-1,-1,-1
218,-1,667.031,105.082,38.932,58.473,0.913298,-1,-1,-1
218,-1,3.50092,148.659,25.6275,54.494,0.905182,-1,-1,-1
219,-1,594.969,297.422,47.282,113.424,0.989288,-1,-1,-1
219,-1,373.216,155.441,34.541,88.602,0.978421,-1,-1,-1
219,-1,102.131,179.106,32.77,68.204,0.969867,-1,-1,-1
219,-1,0,148.024,29.2175,58.358,0.920014,-1,-1,-1
219,-1,659.168,105.023,35.353,59.485,0.912092,-1,-1,-1
220,-1,362.044,156.353,44.233,87.679,0.991809,-1,-1,-1
220,-1,594.374,308.661,37.263,99.846,0.987501,-1,-1,-1
220,-1,99.8292,182.505,27.2328,59.27,0.940668,-1,-1,-1
220,-1,657.953,108.23,32.505,60.471,0.930727,-1,-1,-1
220,-1,0.696936,138.451,17.1436,65.978,0.809948,-1,-1,-1
220,-1,111.302,191.847,32.529,61.954,0.694269,-1,-1,-1
220,-1,732.671,224.852,34.329,92.686,0.658664,-1,-1,-1
221,-1,362.406,155.903,38.146,82.403,0.991899,-1,-1,-1
221,-1,581.371,296.207,48.138,118.875,0.991657,-1,-1,-1
221,-1,96.4625,177.427,29.6155,75.712,0.974938,-1,-1,-1
221,-1,662.928,103.179,31.661,64.42,0.942324,-1,-1,-1
221,-1,730.771,219.768,36.229,105.899,0.927197,-1,-1,-1
222,-1,576.647,288.632,47.294,121.34,0.993926,-1,-1,-1
222,-1,355.671,155.827,35.484,81.353,0.988925,-1,-1,-1
222,-1,91.7599,178.078,28.9771,65.096,0.983837,-1,-1,-1
222,-1,730.762,230.87,36.238,86.949,0.960578,-1,-1,-1
222,-1,661.972,105.329,31.625,65.13,0.937786,-1,-1,-1
223,-1,565.423,291.445,41.565,113.324,0.990892,-1,-1,-1
223,-1,715.088,228.695,45.126,92.299,0.985182,-1,-1,-1
223,-1,345.049,159.532,35.172,77.034,0.982322,-1,-1,-1
223,-1,70.4838,178.494,41.2262,65.344,0.974811,-1,-1,-1
223,-1,660.785,111.512,30.399,58.659,0.918295,-1,-1,-1
224,-1,555.298,286.205,40.846,98.734,0.993759,-1,-1,-1
224,-1,73.9966,181.311,37.0314,72.432,0.98168,-1,-1,-1
224,-1,718.795,226.385,40.256,101.482,0.9793,-1,-1,-1
224,-1,337.293,158.083,42.214,81.325,0.973602,-1,-1,-1
224,-1,661.565,110.777,28.502,52.839,0.936959,-1,-1,-1
225,-1,331.294,154.312,39.579,82.507,0.991101,-1,-1,-1
225,-1,705.511,226.814,40.894,84.197,0.990312,-1,-1,-1
225,-1,552.293,284.129,36.284,112.122,0.983898,-1,-1,-1
225,-1,74.0506,183.421,33.4934,67.484,0.977046,-1,-1,-1
225,-1,663.086,118.454,32.094,51.638,0.912159,-1,-1,-1
226,-1,693.951,218.279,40.145,92.106,0.992845,-1,-1,-1
226,-1,316.671,156.572,33.703,81.425,0.991685,-1,-1,-1
226,-1,541.762,289.766,39.124,104.586,0.990033,-1,-1,-1
226,-1,59.5205,187.277,28.0965,56.776,0.972486,-1,-1,-1
226,-1,665.186,116.605,29.955,49.323,0.939866,-1,-1,-1
227,-1,313.09,162.712,38.772,81.223,0.993385,-1,-1,-1
227,-1,683.671,214.678,55.439,107.318,0.990035,-1,-1,-1
227,-1,60.8893,181.453,34.0177,67.026,0.981418,-1,-1,-1
227,-1,529.025,273.121,43.698,122.27,0.980085,-1,-1,-1
227,-1,654.228,106.206,33.502,57.564,0.954466,-1,-1,-1
228,-1,519.694,272.013,43.113,121.844,0.991737,-1,-1,-1
228,-1,306.285,164.979,38.438,73.021,0.990775,-1,-1,-1
228,-1,684.917,209.885,44.681,102.046,0.988866,-1,-1,-1
228,-1,659.722,117.348,36.819,46.248,0.967927,-1,-1,-1
228,-1,53.9949,176.978,36.8063,71.782,0.965738,-1,-1,-1
229,-1,681.704,206.721,45.778,106.638,0.991365,-1,-1,-1
229,-1,517.151,266.57,43.825,120.634,0.98983,-1,-1,-1
229,-1,302.571,159.355,45.041,82.384,0.974059,-1,-1,-1
229,-1,656.629,115.612,39.803,50.825,0.965707,-1,-1,-1
229,-1,53.867,177.95,28.395,61.806,0.959692,-1,-1,-1
229,-1,744.459,289.271,22.541,122.759,0.917863,-1,-1,-1
230,-1,510.743,267.429,46.827,125.881,0.991887,-1,-1,-1
230,-1,670.597,214.209,52.244,88.483,0.989516,-1,-1,-1
230,-1,43.8608,174.581,31.4144,72.96,0.978303,-1,-1,-1
230,-1,291.595,157.02,37.461,88.518,0.968542,-1,-1,-1
230,-1,724.012,283.641,42.988,125.705,0.954821,-1,-1,-1
230,-1,648.852,115.421,28.111,52.421,0.937047,-1,-1,-1
230,-1,660.051,122.724,35.066,55.7,0.819268,-1,-1,-1
231,-1,504.708,269.569,44.973,124.543,0.989912,-1,-1,-1
231,-1,39.9808,179.361,29.4011,66.366,0.983752,-1,-1,-1
231,-1,726.813,290.727,38.913,108.49,0.983748,-1,-1,-1
231,-1,665.6,214.65,40.547,80.816,0.972655,-1,-1,-1
231,-1,286.891,164.338,37.78,71.147,0.970769,-1,-1,-1
231,-1,646.689,121.223,29.933,51.166,0.930887,-1,-1,-1
232,-1,714.593,286.96,41.794,114.589,0.99134,-1,-1,-1
232,-1,281.579,161.355,44.412,79.491,0.990879,-1,-1,-1
232,-1,664.182,208.856,40.522,88.962,0.990087,-1,-1,-1
232,-1,504.075,262.139,40.645,131.399,0.985355,-1,-1,-1
232,-1,41.3067,177.476,27.2055,72.305,0.970321,-1,-1,-1
232,-1,646.085,118.68,30.355,55.038,0.938164,-1,-1,-1
233,-1,650.025,202.576,38.166,90.768,0.991892,-1,-1,-1
233,-1,698.813,276.361,50.933,120.857,0.990555,-1,-1,-1
233,-1,267.056,155.799,49.654,85.128,0.989408,-1,-1,-1
233,-1,497.54,265.983,38.227,109.615,0.978841,-1,-1,-1
233,-1,39.3127,183.094,30.1134,69.088,0.964843,-1,-1,-1
233,-1,645.146,109.61,38.086,58.566,0.915249,-1,-1,-1
234,-1,264.634,153.289,39.751,83.177,0.992683,-1,-1,-1
234,-1,647.098,206.608,38.544,81.686,0.986531,-1,-1,-1
234,-1,705.818,278.123,39.671,107.672,0.982861,-1,-1,-1
234,-1,487.079,262.622,32.685,125.736,0.976596,-1,-1,-1
234,-1,31.3023,176.876,27.3128,66.707,0.974374,-1,-1,-1
234,-1,655.264,119.792,29.02,49.353,0.941753,-1,-1,-1
234,-1,669.138,126.486,29.119,54.805,0.872825,-1,-1,-1
235,-1,697.55,280.29,44.776,114.97,0.993137,-1,-1,-1
235,-1,647.533,206.743,37.725,80.001,0.991356,-1,-1,-1
235,-1,266.306,157.35,31.471,79.759,0.983342,-1,-1,-1
235,-1,476.302,260.075,43.652,131.23,0.980899,-1,-1,-1
235,-1,37.6773,177.627,31.8261,66.832,0.977558,-1,-1,-1
235,-1,652.298,120.113,33.941,53.342,0.906292,-1,-1,-1
236,-1,687.114,266.324,44.141,124.747,0.990609,-1,-1,-1
236,-1,463.945,253.553,51.282,127.668,0.9868,-1,-1,-1
236,-1,635.659,197.447,35.999,88.45,0.986496,-1,-1,-1
236,-1,255.452,159.669,34.804,79.988,0.985087,-1,-1,-1
236,-1,27.6462,179.297,30.0886,59.346,0.975094,-1,-1,-1
236,-1,649.275,118.077,36.781,59.849,0.919773,-1,-1,-1
237,-1,682.146,269.85,47.668,113.298,0.992095,-1,-1,-1
237,-1,458.029,253.236,45.154,120.574,0.986431,-1,-1,-1
237,-1,632.405,207.523,34.797,71.661,0.976433,-1,-1,-1
237,-1,33.4713,174.037,27.1641,64.91,0.964053,-1,-1,-1
237,-1,247.86,158.192,40.849,78.795,0.956911,-1,-1,-1
237,-1,647.869,119.35,36.908,56.865,0.931204,-1,-1,-1
238,-1,681.915,276.484,38.869,102.507,0.990716,-1,-1,-1
238,-1,618.482,209.222,40.19,72.374,0.984488,-1,-1,-1
238,-1,453.744,252.502,46.517,116.553,0.981679,-1,-1,-1
238,-1,249.086,162.875,31.33,63.552,0.981492,-1,-1,-1
238,-1,28.0116,173.511,29.37,66.549,0.965605,-1,-1,-1
238,-1,645.821,122.841,27.074,54.295,0.948044,-1,-1,-1
239,-1,672.523,264.369,43.485,119.534,0.988891,-1,-1,-1
239,-1,621.071,204.281,41.287,77.67,0.987579,-1,-1,-1
239,-1,450.359,249.986,48.087,123.411,0.980425,-1,-1,-1
239,-1,243.961,151.012,32.032,78.818,0.975735,-1,-1,-1
239,-1,35.649,178.232,28.7832,65.48,0.963437,-1,-1,-1
239,-1,641.972,121.523,27.196,51.234,0.943404,-1,-1,-1
240,-1,446.999,245.072,44.966,121.959,0.988428,-1,-1,-1
240,-1,662.75,271.621,45.545,102.598,0.988407,-1,-1,-1
240,-1,614.268,207.809,38.095,65.374,0.984966,-1,-1,-1
240,-1,236.213,155.109,33.939,72.054,0.982982,-1,-1,-1
240,-1,27.7875,175.253,28.0038,64.357,0.965537,-1,-1,-1
240,-1,639.415,115.836,36.512,66.861,0.948122,-1,-1,-1
240,-1,47.002,179.553,25.3769,51.887,0.51124,-1,-1,-1
241,-1,656.05,267.006,52.3,117.754,0.989799,-1,-1,-1
241,-1,609.464,199.577,39.744,79.459,0.984982,-1,-1,-1
241,-1,448.894,243.796,40.037,113.873,0.9776,-1,-1,-1
241,-1,224.259,151.513,52.323,79.032,0.973496,-1,-1,-1
241,-1,27.6508,174.06,28.8511,66.05,0.964409,-1,-1,-1
241,-1,641.46,118.817,32.844,62.76,0.942849,-1,-1,-1
241,-1,48.2676,183.177,25.7174,50.801,0.51034,-1,-1,-1
242,-1,648.191,263.018,43.216,118.155,0.991856,-1,-1,-1
242,-1,431.681,239.565,43.738,111.565,0.989478,-1,-1,-1
242,-1,224.883,159.38,40.494,77.508,0.988112,-1,-1,-1
242,-1,595.916,204.418,36.671,71.56,0.987355,-1,-1,-1
242,-1,28.9998,180.987,28.5804,57.833,0.965424,-1,-1,-1
242,-1,628.332,119.252,35.604,60.257,0.917594,-1,-1,-1
242,-1,655.155,128.176,22.12,52.863,0.909398,-1,-1,-1
242,-1,45.8611,182.65,25.9866,52.799,0.541765,-1,-1,-1
243,-1,649.129,270.734,38.046,95.596,0.992427,-1,-1,-1
243,-1,224.784,157.593,32.229,78.967,0.98923,-1,-1,-1
243,-1,430.914,242.087,37.092,118.646,0.986932,-1,-1,-1
243,-1,591.077,195.913,40.649,78.397,0.980506,-1,-1,-1
243,-1,27.3572,179.314,29.6525,59.366,0.974289,-1,-1,-1
243,-1,636.538,128.98,28.613,55.561,0.929302,-1,-1,-1
243,-1,660.564,129.126,28.711,59.839,0.874398,-1,-1,-1
244,-1,637.068,266.612,47.834,108.712,0.990634,-1,-1,-1
244,-1,591.73,193.313,34.609,75.956,0.990474,-1,-1,-1
244,-1,421.314,242.749,45.272,110.606,0.988444,-1,-1,-1
244,-1,28.5237,178.709,29.8769,60.988,0.977183,-1,-1,-1
244,-1,222.399,147.121,34.59,84.373,0.971681,-1,-1,-1
244,-1,636.902,121.516,39.738,62.371,0.93271,-1,-1,-1
244,-1,661.081,130.943,22.122,57.764,0.88319,-1,-1,-1
244,-1,47.0545,185.683,27.0622,52.736,0.516753,-1,-1,-1
245,-1,635.332,266.001,49.186,113.352,0.994868,-1,-1,-1
245,-1,216.761,153.248,33.734,71.51,0.98287,-1,-1,-1
245,-1,28.9621,179.441,28.9552,59.839,0.979464,-1,-1,-1
245,-1,579.433,190.953,32.265,70.277,0.978975,-1,-1,-1
245,-1,627.294,121.587,35.068,64.926,0.953593,-1,-1,-1
245,-1,658.385,117.406,29.162,68.989,0.912154,-1,-1,-1
245,-1,404.293,236.105,57.268,123.446,0.896471,-1,-1,-1
245,-1,47.5119,181.466,25.9393,50.707,0.528215,-1,-1,-1
246,-1,628.078,261.217,46.105,107.025,0.992205,-1,-1,-1
246,-1,572.272,198.88,45.546,81.273,0.986116,-1,-1,-1
246,-1,28.6743,176.975,29.8024,65.634,0.980297,-1,-1,-1
246,-1,211.776,153.2,34.121,73.649,0.979758,-1,-1,-1
246,-1,625.43,116.663,31.298,66.169,0.95049,-1,-1,-1
246,-1,658.489,128.503,25.643,50.763,0.89609,-1,-1,-1
246,-1,406.262,237.945,42.341,99.57,0.868004,-1,-1,-1
247,-1,626.242,247.16,38.114,116.571,0.992929,-1,-1,-1
247,-1,570.383,193.387,47.208,75.203,0.98927,-1,-1,-1
247,-1,208.133,148.704,32.981,76.908,0.986256,-1,-1,-1
247,-1,396.288,222.209,47.451,134.54,0.982092,-1,-1,-1
247,-1,28.8864,177.671,29.9365,66.397,0.980673,-1,-1,-1
247,-1,627.984,116.772,29.893,69.532,0.95432,-1,-1,-1
247,-1,657.91,128.19,28.365,56.773,0.923653,-1,-1,-1
247,-1,47.6114,186.107,27.1395,51.622,0.510043,-1,-1,-1
248,-1,620.473,252.997,37.624,102.067,0.994736,-1,-1,-1
248,-1,561.649,194.961,31.896,70.255,0.989861,-1,-1,-1
248,-1,29.1233,178.129,30.2316,66.378,0.980848,-1,-1,-1
248,-1,206.796,155.737,28.481,75.056,0.965934,-1,-1,-1
248,-1,628.295,119.734,29.475,66.767,0.943235,-1,-1,-1
248,-1,395.714,232.152,35.697,101.034,0.90486,-1,-1,-1
248,-1,651.528,117.581,36.917,59.429,0.901768,-1,-1,-1
249,-1,614.935,256.323,38.639,97.518,0.994899,-1,-1,-1
249,-1,202.05,158.744,35.413,70.813,0.98458,-1,-1,-1
249,-1,559.885,191.796,30.131,70.771,0.983665,-1,-1,-1
249,-1,29.4575,177.527,30.2074,65.16,0.980185,-1,-1,-1
249,-1,655.055,124.562,29.638,65.107,0.937095,-1,-1,-1
249,-1,640.756,124.479,26.247,55.783,0.921158,-1,-1,-1
249,-1,397.402,236.743,38.355,89.127,0.859153,-1,-1,-1
249,-1,48.9,186.729,26.003,51.127,0.504731,-1,-1,-1
250,-1,388.931,225.814,39.862,107.549,0.990315,-1,-1,-1
250,-1,191.413,148.748,38.257,74.249,0.989735,-1,-1,-1
250,-1,595.291,251.51,69.877,107.031,0.989692,-1,-1,-1
250,-1,559.823,190.962,29.123,66.641,0.972455,-1,-1,-1
250,-1,35.7909,176.683,31.5654,61.568,0.971241,-1,-1,-1
250,-1,646.935,124.919,41.225,63.313,0.947257,-1,-1,-1
250,-1,627.674,120.568,30.05,65.412,0.827459,-1,-1,-1
251,-1,594.454,250.658,44.997,102.263,0.991987,-1,-1,-1
251,-1,189.155,147.576,39.357,81.424,0.988235,-1,-1,-1
251,-1,373.419,224.085,49.582,105.756,0.985152,-1,-1,-1
251,-1,29.1188,179.411,29.9291,63.397,0.979638,-1,-1,-1
251,-1,542.752,186.506,38.571,70.085,0.967922,-1,-1,-1
251,-1,639.721,124.291,42.506,66.991,0.966173,-1,-1,-1
252,-1,365.064,223.19,53.992,100.113,0.994944,-1,-1,-1
252,-1,533.924,190.764,39.203,74.277,0.989205,-1,-1,-1
252,-1,591.523,251.828,37.745,102.318,0.986995,-1,-1,-1
252,-1,28.8816,178.783,29.566,64.725,0.979915,-1,-1,-1
252,-1,190.946,152.613,30.444,77.539,0.972621,-1,-1,-1
252,-1,642.431,124.957,31.987,62.206,0.969584,-1,-1,-1
253,-1,578.103,251.503,51.088,103.391,0.989823,-1,-1,-1
253,-1,358.697,219.417,51.726,111.428,0.988959,-1,-1,-1
253,-1,529.898,189.051,34.991,68.515,0.980409,-1,-1,-1
253,-1,28.727,178.12,29.829,65.14,0.980357,-1,-1,-1
253,-1,188.57,158.408,31.437,65.508,0.972646,-1,-1,-1
253,-1,639.047,119.268,41.409,65.45,0.971948,-1,-1,-1
254,-1,576.483,249.91,48.333,106.109,0.994657,-1,-1,-1
254,-1,352.519,227.253,47.517,84.998,0.99296,-1,-1,-1
254,-1,519.565,191.584,48.075,70.986,0.989297,-1,-1,-1
254,-1,28.7609,178.771,29.1963,64.965,0.980931,-1,-1,-1
254,-1,178.357,141.017,35.996,87.577,0.979936,-1,-1,-1
254,-1,637.287,130.956,34.617,60.541,0.969309,-1,-1,-1
254,-1,627.483,118.458,27.683,59.074,0.527666,-1,-1,-1
255,-1,574.066,252.611,42.296,97.607,0.995872,-1,-1,-1
255,-1,352.694,220.38,49.392,104.193,0.993145,-1,-1,-1
255,-1,28.7415,178.637,29.5443,64.621,0.980714,-1,-1,-1
255,-1,515.03,186.277,44.683,78.763,0.979803,-1,-1,-1
255,-1,635.43,127.182,34.094,64.729,0.97098,-1,-1,-1
255,-1,177.978,138.733,32.573,75.43,0.958483,-1,-1,-1
256,-1,349.585,212.334,45.414,110.79,0.994187,-1,-1,-1
256,-1,574.102,252.071,34.396,88.638,0.992101,-1,-1,-1
256,-1,29.0525,178.386,30.0658,66.364,0.981654,-1,-1,-1
256,-1,505.779,180.91,51.861,78.778,0.979885,-1,-1,-1
256,-1,629.416,121.005,28.645,68.327,0.960762,-1,-1,-1
256,-1,178.369,155.847,31.068,68.523,0.960019,-1,-1,-1
257,-1,559.001,243.042,43.984,102.606,0.991168,-1,-1,-1
257,-1,352.792,217.013,38.849,98.523,0.989998,-1,-1,-1
257,-1,512.281,178.608,34.07,77.173,0.98158,-1,-1,-1
257,-1,28.3327,177.426,29.1645,64.922,0.981095,-1,-1,-1
257,-1,176.331,144.918,30.523,69.88,0.968798,-1,-1,-1
257,-1,633.894,129.728,31.203,58.49,0.955244,-1,-1,-1
258,-1,544.52,252.623,57.326,92.812,0.995225,-1,-1,-1
258,-1,167.951,140.633,39.009,74.167,0.990029,-1,-1,-1
258,-1,493.657,178.254,52.013,84.516,0.985277,-1,-1,-1
258,-1,346.715,212.807,40.841,98.449,0.983564,-1,-1,-1
258,-1,28.7294,177.355,29.7165,66.388,0.981447,-1,-1,-1
258,-1,632.872,124.361,34.615,62.505,0.943845,-1,-1,-1
259,-1,335.92,211.123,38.56,95.566,0.993611,-1,-1,-1
259,-1,494.086,181.403,39.199,63.47,0.987634,-1,-1,-1
259,-1,539.234,245.86,53.871,100.019,0.986601,-1,-1,-1
259,-1,163.706,144.681,29.046,63.941,0.983269,-1,-1,-1
259,-1,28.6715,178.377,29.3279,64.985,0.981317,-1,-1,-1
259,-1,631.789,121.869,35.401,63.588,0.957102,-1,-1,-1
260,-1,330.512,211.064,37.939,100.171,0.991698,-1,-1,-1
260,-1,536.053,241.504,44.567,103.558,0.991688,-1,-1,-1
260,-1,486.768,172.8,32.965,74.018,0.990074,-1,-1,-1
260,-1,28.2653,179.157,28.4411,63.8,0.98023,-1,-1,-1
260,-1,162.968,144.377,30.432,75.729,0.97393,-1,-1,-1
260,-1,634.747,134.806,30.285,59.187,0.957013,-1,-1,-1
260,-1,48.6415,183.019,25.992,52.704,0.502127,-1,-1,-1
261,-1,326.263,216.951,40.921,94.487,0.99404,-1,-1,-1
261,-1,525.282,249.918,37.66,83.145,0.993817,-1,-1,-1
261,-1,475.169,177.66,50.191,79.465,0.984478,-1,-1,-1
261,-1,623.216,124.259,33.755,70.866,0.983434,-1,-1,-1
261,-1,154.95,146.336,31.543,63.773,0.981352,-1,-1,-1
261,-1,27.7401,179.228,28.7929,63.614,0.980769,-1,-1,-1
262,-1,525.016,244.324,39.013,99.244,0.993365,-1,-1,-1
262,-1,319.512,209.758,38.768,97.605,0.987844,-1,-1,-1
262,-1,161.759,145.962,30.391,73.66,0.981045,-1,-1,-1
262,-1,624.477,127.949,29.741,67.801,0.980808,-1,-1,-1
262,-1,27.3859,178.482,28.7195,63.717,0.98018,-1,-1,-1
262,-1,482.154,178.688,26.498,71.654,0.971983,-1,-1,-1
263,-1,315.312,200.315,40.458,94.941,0.994734,-1,-1,-1
263,-1,515.317,237.577,34.358,103.987,0.992266,-1,-1,-1
263,-1,27.0043,176.179,30.2365,67.568,0.980357,-1,-1,-1
263,-1,154.214,145.322,30.845,68.55,0.980226,-1,-1,-1
263,-1,465.435,181.937,33.648,70.289,0.978994,-1,-1,-1
263,-1,624.501,129.18,34.603,71.392,0.978687,-1,-1,-1
264,-1,309.602,204.69,34.514,87.995,0.991141,-1,-1,-1
264,-1,514.414,229.754,35.787,117.736,0.990876,-1,-1,-1
264,-1,621.133,131.791,38.043,67.698,0.971562,-1,-1,-1
264,-1,35.0874,177.712,30.5465,60.886,0.968551,-1,-1,-1
264,-1,465.485,176.696,30.027,73.024,0.964022,-1,-1,-1
264,-1,148.402,140.286,36.752,68.139,0.959028,-1,-1,-1
265,-1,305.564,200.597,41.962,85.119,0.987277,-1,-1,-1
265,-1,500.355,245.494,33.988,100.735,0.985471,-1,-1,-1
265,-1,453.9,173.941,35.29,67.233,0.985358,-1,-1,-1
265,-1,26.7947,178.792,38.9072,63.699,0.981554,-1,-1,-1
265,-1,620.977,132.558,34.248,67.8,0.968137,-1,-1,-1
265,-1,149.178,147.596,27.575,63.105,0.953938,-1,-1,-1
266,-1,450.931,177.69,32.92,66.486,0.986877,-1,-1,-1
266,-1,498.625,241.765,39.98,104.393,0.970821,-1,-1,-1
266,-1,143.675,144.303,28.366,66.349,0.969363,-1,-1,-1
266,-1,629.94,131.874,35.914,72.148,0.964683,-1,-1,-1
266,-1,29.5565,171.24,27.7693,67.453,0.956528,-1,-1,-1
266,-1,298.094,206.295,42.703,84.323,0.954468,-1,-1,-1
266,-1,606.445,133.547,32.325,64.188,0.927572,-1,-1,-1
267,-1,282.856,196.469,43.316,93.546,0.992955,-1,-1,-1
267,-1,134.761,146.225,37.152,66.896,0.984304,-1,-1,-1
267,-1,440.006,176.121,34.083,65.146,0.983377,-1,-1,-1
267,-1,31.6305,172.533,26.979,66.035,0.973572,-1,-1,-1
267,-1,484.932,240.349,44.317,99.16,0.973234,-1,-1,-1
267,-1,606.937,135.461,28.693,60.795,0.956582,-1,-1,-1
267,-1,625.847,141.309,26.869,60.247,0.956338,-1,-1,-1
268,-1,286.986,196.983,46.529,91.97,0.9919,-1,-1,-1
268,-1,438.214,172.688,37.15,67.921,0.987244,-1,-1,-1
268,-1,482.15,236.088,38.186,95.241,0.98439,-1,-1,-1
268,-1,37.9138,179.149,30.4639,64.387,0.983259,-1,-1,-1
268,-1,127.936,144.201,39.485,66.398,0.972966,-1,-1,-1
268,-1,606.297,130.758,25.086,62.921,0.969476,-1,-1,-1
268,-1,628.674,145.213,27.245,59.324,0.939085,-1,-1,-1
269,-1,285.636,196.175,43.127,89.55,0.989476,-1,-1,-1
269,-1,478.975,238.208,34.271,94.481,0.985251,-1,-1,-1
269,-1,28.4846,170.706,37.1986,67.167,0.983618,-1,-1,-1
269,-1,598.63,140.073,29.62,56.922,0.972053,-1,-1,-1
269,-1,432.645,167.593,34.642,76.823,0.964191,-1,-1,-1
269,-1,135.316,145.337,32.021,66.907,0.947059,-1,-1,-1
269,-1,630.068,143.045,27.104,57.015,0.932822,-1,-1,-1
270,-1,280.248,190.824,42.495,82.735,0.997936,-1,-1,-1
270,-1,455.628,231.018,52.623,111.216,0.98693,-1,-1,-1
270,-1,25.0103,167.077,38.9474,70.248,0.985448,-1,-1,-1
270,-1,594.327,133.065,29.582,63.642,0.94798,-1,-1,-1
270,-1,131.564,144.524,27.75,68.329,0.918591,-1,-1,-1
270,-1,627.7,142.011,26.829,60.858,0.915253,-1,-1,-1
270,-1,424.342,172.989,41.618,71.702,0.809129,-1,-1,-1
271,-1,273.586,182.404,41.899,103.146,0.997003,-1,-1,-1
271,-1,462.195,234.383,34.844,93.471,0.988905,-1,-1,-1
271,-1,24.047,178.353,39.5094,67.845,0.978914,-1,-1,-1
271,-1,635.274,135.026,26.907,58.165,0.954845,-1,-1,-1
271,-1,128.421,138.637,34.896,76.635,0.94864,-1,-1,-1
271,-1,597.08,127.68,32.764,69.394,0.948544,-1,-1,-1
271,-1,620.839,135.474,25.656,67.874,0.8431,-1,-1,-1
272,-1,281.749,193.893,30.54,81.825,0.994203,-1,-1,-1
272,-1,452.909,230.915,38.324,95.36,0.992063,-1,-1,-1
272,-1,120.57,138.954,37.093,71.159,0.979232,-1,-1,-1
272,-1,31.8188,174.514,29.7264,64.861,0.970649,-1,-1,-1
272,-1,634.286,138.779,25.492,57.852,0.963718,-1,-1,-1
272,-1,596.957,129.624,35.397,75.222,0.937581,-1,-1,-1
273,-1,275.642,182.69,37.511,90.053,0.994161,-1,-1,-1
273,-1,453.172,236.1,32.927,88.206,0.994066,-1,-1,-1
273,-1,120.599,142.775,31.71,66.21,0.9763,-1,-1,-1
273,-1,24.715,167.018,29.608,77.33,0.97131,-1,-1,-1
273,-1,631.642,136.03,26.658,59.117,0.96228,-1,-1,-1
273,-1,596.047,132.583,35.289,73.178,0.925918,-1,-1,-1
274,-1,272.247,191.615,29.691,77.386,0.995437,-1,-1,-1
274,-1,452.842,226.508,30.965,101.325,0.991567,-1,-1,-1
274,-1,24.1033,170.847,29.5452,64.975,0.96844,-1,-1,-1
274,-1,117.354,142.793,28.471,67.758,0.956317,-1,-1,-1
274,-1,625.374,133.737,29.77,67.782,0.918792,-1,-1,-1
274,-1,595.579,137.037,30.691,66.786,0.895467,-1,-1,-1
275,-1,270.666,183.478,36.977,90.733,0.996629,-1,-1,-1
275,-1,437.379,228.688,39.497,107.024,0.984845,-1,-1,-1
275,-1,24.3232,180.534,36.889,59.4,0.972998,-1,-1,-1
275,-1,113.301,142.063,30.226,68.681,0.953613,-1,-1,-1
275,-1,593.342,137.593,32.668,66.895,0.874713,-1,-1,-1
275,-1,625.897,149.104,26.003,54.917,0.855319,-1,-1,-1
275,-1,396.521,166.754,27.926,69.629,0.745335,-1,-1,-1
276,-1,262.68,186.25,37.58,78.395,0.996151,-1,-1,-1
276,-1,434.636,227.86,34.261,99.2,0.992042,-1,-1,-1
276,-1,19.0622,175.405,32.3935,62.291,0.983598,-1,-1,-1
276,-1,383.677,168.042,31.382,61.61,0.975627,-1,-1,-1
276,-1,623.346,136.891,30.516,59.057,0.95138,-1,-1,-1
276,-1,591.479,134.32,29.746,69.49,0.930849,-1,-1,-1
276,-1,113.995,132.224,34.138,74.713,0.875325,-1,-1,-1
277,-1,265.848,177.227,36.817,86.557,0.994916,-1,-1,-1
277,-1,429.736,237.787,39.643,88.016,0.983864,-1,-1,-1
277,-1,372.94,163.662,48.218,65.258,0.983046,-1,-1,-1
277,-1,113.803,146.053,32.45,65.692,0.978433,-1,-1,-1
277,-1,14.443,173.089,30.6829,74.185,0.97569,-1,-1,-1
277,-1,624.426,135.525,31.148,62.822,0.937477,-1,-1,-1
277,-1,591.223,129.666,30.651,72.92,0.928329,-1,-1,-1
278,-1,264.689,188.353,35.509,84.272,0.994115,-1,-1,-1
278,-1,9.4011,180.685,29.4338,66.192,0.981902,-1,-1,-1
278,-1,374.891,169.317,42.436,62.124,0.980529,-1,-1,-1
278,-1,115.559,145.665,32.715,72.119,0.967316,-1,-1,-1
278,-1,590.292,132.834,32.632,69.051,0.941464,-1,-1,-1
278,-1,630.015,145.929,28.926,54.547,0.921981,-1,-1,-1
278,-1,613.438,137.283,32.171,74.233,0.883643,-1,-1,-1
278,-1,427.898,246.78,37.753,69.819,0.826778,-1,-1,-1
279,-1,264.088,176.397,40.033,85.045,0.986093,-1,-1,-1
279,-1,109.392,150.478,31.262,62.406,0.981618,-1,-1,-1
279,-1,358.484,156.424,41.58,77.65,0.980906,-1,-1,-1
279,-1,8.92635,178.475,31.6803,69.591,0.946094,-1,-1,-1
279,-1,592.708,131.209,28.306,78.688,0.941666,-1,-1,-1
279,-1,631.821,153.108,27.827,57.86,0.922951,-1,-1,-1
279,-1,612.054,136.547,30.914,78.604,0.878871,-1,-1,-1
280,-1,264.222,183.504,34.73,72.506,0.993357,-1,-1,-1
280,-1,351.762,161.801,42.915,73.399,0.985107,-1,-1,-1
280,-1,107.688,143.769,32.308,71.429,0.971131,-1,-1,-1
280,-1,5.88621,178.023,29.3403,66.194,0.970385,-1,-1,-1
280,-1,623.685,151.993,28.592,58.786,0.942894,-1,-1,-1
280,-1,591.369,129.759,29.533,82.814,0.921742,-1,-1,-1
281,-1,348.58,167.438,46.56,63.505,0.990388,-1,-1,-1
281,-1,264.806,184.682,34.104,78.808,0.98827,-1,-1,-1
281,-1,107.819,149.033,31.582,65.774,0.974204,-1,-1,-1
281,-1,1.81616,170.259,25.3062,61.846,0.965621,-1,-1,-1
281,-1,628.325,156.686,28.971,53.642,0.940381,-1,-1,-1
281,-1,593.592,137.796,33.798,66.975,0.894851,-1,-1,-1
282,-1,261.403,179.682,35.258,83.312,0.994614,-1,-1,-1
282,-1,344.068,163.379,34.667,61.831,0.987651,-1,-1,-1
282,-1,6.9335,173.935,25.3445,59.605,0.977664,-1,-1,-1
282,-1,110.756,148.614,34.494,75.999,0.946771,-1,-1,-1
282,-1,594.317,134.345,29.703,74.303,0.922341,-1,-1,-1
282,-1,619.532,151.914,37.699,57.182,0.917595,-1,-1,-1
282,-1,398.212,186.303,41.695,129.896,0.528238,-1,-1,-1
283,-1,253.361,169.693,38.644,90.285,0.991999,-1,-1,-1
283,-1,394.879,209.988,30.736,111.807,0.987986,-1,-1,-1
283,-1,112.711,150.21,34.698,69.108,0.984212,-1,-1,-1
283,-1,0,169.869,24.0282,63.694,0.976033,-1,-1,-1
283,-1,342.375,169.453,35.427,55.572,0.967285,-1,-1,-1
283,-1,621.698,154.765,30.913,55.781,0.948414,-1,-1,-1
283,-1,590.906,131.855,35.256,78.621,0.89417,-1,-1,-1
284,-1,380.408,219.702,52.15,95.229,0.984757,-1,-1,-1
284,-1,248.926,173.924,41.5,81.225,0.9813,-1,-1,-1
284,-1,111.303,150.454,36.559,61.55,0.980387,-1,-1,-1
284,-1,0,168.679,23.3942,65.764,0.956807,-1,-1,-1
284,-1,332.674,160.643,43.765,64.412,0.956635,-1,-1,-1
284,-1,616.435,144.007,28.793,70.546,0.934393,-1,-1,-1
284,-1,593.397,138.776,30.229,72.726,0.930122,-1,-1,-1
285,-1,250.575,177.619,38.844,84.72,0.993248,-1,-1,-1
285,-1,389.722,224.282,33.653,82.415,0.989361,-1,-1,-1
285,-1,117.278,148.247,41.487,64.765,0.985947,-1,-1,-1
285,-1,615.918,146.071,27.904,71.145,0.946454,-1,-1,-1
285,-1,591.856,142.397,26.987,73.887,0.928846,-1,-1,-1
285,-1,326.338,162.118,44.09,78.937,0.928286,-1,-1,-1
285,-1,0,164.608,20.3936,61.424,0.926784,-1,-1,-1
285,-1,631.779,158.741,26.73,55.237,0.881231,-1,-1,-1
286,-1,255.434,176.407,34.93,85.489,0.986804,-1,-1,-1
286,-1,374.97,220.635,49.921,89.865,0.986494,-1,-1,-1
286,-1,325.153,162.809,26.982,62.41,0.985608,-1,-1,-1
286,-1,124.046,158.663,39.041,64.469,0.963098,-1,-1,-1
286,-1,617.81,147.277,30.78,75.946,0.956059,-1,-1,-1
286,-1,597.345,143.695,27.645,69.465,0.891293,-1,-1,-1
287,-1,363.85,220.225,48.161,94.849,0.989025,-1,-1,-1
287,-1,254.014,174.295,35.019,84.092,0.981698,-1,-1,-1
287,-1,316.326,157.041,33.834,77.805,0.966888,-1,-1,-1
287,-1,620.535,149.874,29.177,70.313,0.95869,-1,-1,-1
287,-1,125.823,150.543,38.039,69.977,0.925559,-1,-1,-1
287,-1,592.927,141.969,34.239,78.046,0.846585,-1,-1,-1
288,-1,366.681,217.436,41.091,94.98,0.983382,-1,-1,-1
288,-1,131.581,156.6,30.262,65.008,0.980265,-1,-1,-1
288,-1,303.967,155.198,44.893,71.595,0.978429,-1,-1,-1
288,-1,256.163,176.474,33.047,76.963,0.971595,-1,-1,-1
288,-1,612.063,152.793,32.093,65.306,0.956576,-1,-1,-1
288,-1,591.945,141.626,29.659,70.064,0.954375,-1,-1,-1
288,-1,635.712,164.113,22.579,52.429,0.504419,-1,-1,-1
289,-1,349.35,219.633,55.213,103.08,0.991247,-1,-1,-1
289,-1,137.292,148.503,33.521,71.417,0.989664,-1,-1,-1
289,-1,302.725,159.555,38.049,63.835,0.984001,-1,-1,-1
289,-1,588.592,144.769,29.774,68.907,0.960461,-1,-1,-1
289,-1,616.639,151.132,34.57,70.36,0.937862,-1,-1,-1
289,-1,247.918,165.033,43.3,81.087,0.924589,-1,-1,-1
289,-1,609.701,160.17,19.605,61.108,0.671838,-1,-1,-1
290,-1,348.983,216.282,53.116,91.824,0.992889,-1,-1,-1
290,-1,256.494,162.397,37.113,84.15,0.985404,-1,-1,-1
290,-1,135.768,151.929,33.501,69.917,0.983267,-1,-1,-1
290,-1,302.544,159.997,30.714,68.453,0.967738,-1,-1,-1
290,-1,583.526,141.686,30.611,75.309,0.957722,-1,-1,-1
290,-1,611.202,151.802,36.081,68.67,0.893418,-1,-1,-1
291,-1,348.328,217.737,44.006,94.075,0.988237,-1,-1,-1
291,-1,255.063,171.17,35.626,77.011,0.982285,-1,-1,-1
291,-1,141.985,160.106,39.624,69.956,0.976143,-1,-1,-1
291,-1,583.732,144.149,31.692,73.541,0.962183,-1,-1,-1
291,-1,611.965,146.8,26.588,73.384,0.952294,-1,-1,-1
291,-1,299.376,160.147,30.422,71.666,0.93932,-1,-1,-1
292,-1,347.302,220.751,34.703,85.015,0.991242,-1,-1,-1
292,-1,146.749,157.806,38.077,76.166,0.979663,-1,-1,-1
292,-1,291.793,166.312,27.574,63.079,0.96425,-1,-1,-1
292,-1,589.344,149.35,34.814,77.903,0.95891,-1,-1,-1
292,-1,616.641,162.416,22.141,58.613,0.877679,-1,-1,-1
292,-1,260.46,166.438,31.668,78.113,0.6894,-1,-1,-1
293,-1,147.005,161.479,34.308,70.956,0.983145,-1,-1,-1
293,-1,345.139,218.989,33.797,85.172,0.976037,-1,-1,-1
293,-1,579.447,151.611,34.79,71.05,0.967804,-1,-1,-1
293,-1,269.44,167.228,42.516,68.959,0.956559,-1,-1,-1
293,-1,614.347,156.453,24.32,65.09,0.930007,-1,-1,-1
294,-1,267.711,166.172,34.226,60.829,0.985167,-1,-1,-1
294,-1,342.696,216.774,29.269,81.941,0.970887,-1,-1,-1
294,-1,579.553,151.218,33.649,75.522,0.963906,-1,-1,-1
294,-1,151.793,148.551,38.024,72.608,0.955922,-1,-1,-1
294,-1,608.519,158.34,31.708,67.093,0.92976,-1,-1,-1
295,-1,264.469,155.281,43.634,84.045,0.996764,-1,-1,-1
295,-1,339.952,208.885,31.498,85.412,0.990113,-1,-1,-1
295,-1,583.496,163.311,34.487,64.983,0.966081,-1,-1,-1
295,-1,157.242,154.42,38.502,77.156,0.949511,-1,-1,-1
295,-1,613.799,159.062,28.566,65.218,0.915065,-1,-1,-1
296,-1,326.436,218.221,47.786,72.298,0.99126,-1,-1,-1
296,-1,160.583,158.877,40.28,80.819,0.987514,-1,-1,-1
296,-1,273.03,165.201,32.71,74.54,0.974133,-1,-1,-1
296,-1,582.244,161.186,34.568,65.251,0.942455,-1,-1,-1
296,-1,601.917,162.011,31.992,62.891,0.932499,-1,-1,-1
297,-1,328.643,216.723,36.641,82.825,0.990081,-1,-1,-1
297,-1,162.781,164.041,35.298,72.612,0.98768,-1,-1,-1
297,-1,272.29,158.825,37.803,84.963,0.98164,-1,-1,-1
297,-1,578.432,160.167,36.927,69.073,0.922895,-1,-1,-1
297,-1,600.83,159.529,35.417,65.824,0.893983,-1,-1,-1
298,-1,328.41,210.416,33.284,75.867,0.992699,-1,-1,-1
298,-1,172.146,153.261,35.53,81.627,0.98487,-1,-1,-1
298,-1,279.891,162.414,29.67,77.871,0.958024,-1,-1,-1
298,-1,587.612,150.076,29.15,76.141,0.953961,-1,-1,-1
298,-1,615.407,160.829,28.582,68.866,0.953145,-1,-1,-1
298,-1,569.826,158.672,25.765,72.908,0.80994,-1,-1,-1
298,-1,264.061,160.922,27.949,70.522,0.518253,-1,-1,-1
299,-1,316.279,212.759,44.019,85.526,0.985446,-1,-1,-1
299,-1,168.764,158.332,27.119,70.985,0.979914,-1,-1,-1
299,-1,586.552,160.26,30.155,64.878,0.952483,-1,-1,-1
299,-1,284.1,163.358,35.017,77.809,0.949901,-1,-1,-1
299,-1,571.344,162.525,28.392,62.431,0.939661,-1,-1,-1
299,-1,611.98,174.002,22.929,61.525,0.889586,-1,-1,-1
299,-1,254.834,162.235,22.469,58.056,0.866609,-1,-1,-1
300,-1,310.841,211.74,34.455,72.872,0.985056,-1,-1,-1
300,-1,248.93,160.404,27.824,53.54,0.960437,-1,-1,-1
300,-1,583.926,160.559,32.133,75.793,0.954147,-1,-1,-1
300,-1,291.392,157.074,37.621,90.347,0.946487,-1,-1,-1
300,-1,184.347,165.296,36.292,68.3,0.921041,-1,-1,-1
300,-1,606.02,153.405,32.474,73.295,0.757987,-1,-1,-1
301,-1,314.149,203.346,38.417,88.304,0.985697,-1,-1,-1
301,-1,190.29,158.354,42.106,76.37,0.981774,-1,-1,-1
301,-1,577.154,162.117,32.279,65.676,0.95307,-1,-1,-1
301,-1,617.582,161.299,28.935,69.249,0.94995,-1,-1,-1
301,-1,238.826,156.754,30.78,63.825,0.940742,-1,-1,-1
301,-1,294.089,149.334,37.863,113.805,0.680152,-1,-1,-1
301,-1,604.071,163.049,23.337,63.135,0.57446,-1,-1,-1
302,-1,187.918,157.846,41.501,81.127,0.97808,-1,-1,-1
302,-1,306.508,194.524,40.411,95.054,0.978047,-1,-1,-1
302,-1,577.003,160.736,44.529,78.243,0.974284,-1,-1,-1
302,-1,621.751,166.919,21.833,68.976,0.950327,-1,-1,-1
302,-1,240.373,160.48,24.007,51.946,0.936623,-1,-1,-1
303,-1,302.559,182.459,33.247,107.487,0.980768,-1,-1,-1
303,-1,230.781,161.213,25.296,64.453,0.964801,-1,-1,-1
303,-1,576.92,164.22,34.541,64.395,0.961385,-1,-1,-1
303,-1,188.463,162.592,35.715,72.432,0.955248,-1,-1,-1
303,-1,620.5,168.247,30.781,68.996,0.937678,-1,-1,-1
303,-1,601.128,165.378,23.803,63.169,0.567238,-1,-1,-1
304,-1,205.367,161.515,36.177,82.011,0.985807,-1,-1,-1
304,-1,302.189,186.002,35.835,103.54,0.982283,-1,-1,-1
304,-1,586.174,162.523,33.021,74.836,0.980806,-1,-1,-1
304,-1,615.911,160.993,24.761,71.416,0.932537,-1,-1,-1
304,-1,566.916,162.288,31.927,67.208,0.815143,-1,-1,-1
305,-1,202.396,161.381,37.035,76.38,0.988854,-1,-1,-1
305,-1,583.415,165.427,32.395,72.547,0.982221,-1,-1,-1
305,-1,294.274,173.438,41.806,121.062,0.969341,-1,-1,-1
305,-1,623.332,172.684,28.058,64.893,0.940174,-1,-1,-1
305,-1,321.201,153.654,37.066,71.495,0.705424,-1,-1,-1
305,-1,611.864,167.298,20.865,67.97,0.605657,-1,-1,-1
306,-1,286.082,194.714,43.139,95.003,0.98661,-1,-1,-1
306,-1,584.2,161.582,37.174,79.164,0.979116,-1,-1,-1
306,-1,206.742,163.847,34.609,67.85,0.978859,-1,-1,-1
306,-1,329.605,155.16,28.354,74.828,0.969417,-1,-1,-1
306,-1,614.725,163.124,23.919,74.641,0.943226,-1,-1,-1
307,-1,321.744,151.561,38.114,72.263,0.984368,-1,-1,-1
307,-1,280.537,194.798,49.769,97.18,0.980439,-1,-1,-1
307,-1,209.041,157.944,34.886,79.04,0.970275,-1,-1,-1
307,-1,588.282,169.811,31.17,78.219,0.955864,-1,-1,-1
307,-1,613.533,176.421,25.347,69.52,0.891467,-1,-1,-1
307,-1,190.123,170.813,35.878,58.155,0.585377,-1,-1,-1
308,-1,282.152,195.632,37.8,91.046,0.99116,-1,-1,-1
308,-1,586.831,174.561,30.789,71.782,0.983192,-1,-1,-1
308,-1,329.19,146.201,45.728,76.752,0.963328,-1,-1,-1
308,-1,224.892,164.962,31.329,76.284,0.933492,-1,-1,-1
308,-1,192.446,165.901,29.032,74.172,0.922689,-1,-1,-1
308,-1,615.193,180.118,28.03,72.303,0.902751,-1,-1,-1
309,-1,342.453,148.042,31.897,74.384,0.990447,-1,-1,-1
309,-1,275.274,197.551,45.993,83.362,0.9884,-1,-1,-1
309,-1,580.556,171.327,33.091,80.829,0.984062,-1,-1,-1
309,-1,231.946,161.176,30.251,79.218,0.969277,-1,-1,-1
309,-1,623.214,174.146,25.022,65.187,0.934347,-1,-1,-1
309,-1,192.334,166.21,34.912,73.627,0.821853,-1,-1,-1
309,-1,610.801,168.354,21.532,70.169,0.769788,-1,-1,-1
310,-1,270.304,194.289,42.045,92.41,0.985926,-1,-1,-1
310,-1,588.318,164.562,34.362,83.855,0.985853,-1,-1,-1
310,-1,357.126,153.293,34.731,73.25,0.979039,-1,-1,-1
310,-1,185.44,169.879,31.284,55.295,0.977515,-1,-1,-1
310,-1,622.16,170.315,24.892,70.612,0.937156,-1,-1,-1
310,-1,227.715,170.557,38.301,83.253,0.912855,-1,-1,-1
310,-1,610.052,168.063,20.781,73.351,0.833108,-1,-1,-1
311,-1,589.94,169.905,29.384,71.133,0.984615,-1,-1,-1
311,-1,183.621,168.81,28.751,59.025,0.984205,-1,-1,-1
311,-1,354.832,152.535,34.197,66.837,0.983468,-1,-1,-1
311,-1,620.694,174.99,26.058,70.47,0.949769,-1,-1,-1
311,-1,238.961,163.779,42.318,88.139,0.940679,-1,-1,-1
311,-1,269.171,187.156,40.448,89.417,0.89378,-1,-1,-1
312,-1,182.97,161.388,28.82,66.018,0.983419,-1,-1,-1
312,-1,587.576,169.373,35.345,82.379,0.983297,-1,-1,-1
312,-1,364.417,148.5,34.047,71.956,0.981074,-1,-1,-1
312,-1,264.026,184.617,35.275,88.113,0.973748,-1,-1,-1
312,-1,617.376,172.306,27.335,82.405,0.954006,-1,-1,-1
312,-1,251.707,156.121,33.471,91.435,0.723626,-1,-1,-1
313,-1,252.927,167.866,44.569,125.159,0.988952,-1,-1,-1
313,-1,590.396,169.144,29.562,77.175,0.983232,-1,-1,-1
313,-1,176.576,160.198,33.835,71.266,0.980757,-1,-1,-1
313,-1,375.606,147.463,33.172,80.469,0.957407,-1,-1,-1
313,-1,618.378,177.413,23.99,74.647,0.948799,-1,-1,-1
314,-1,262.504,161.357,36.002,121.952,0.989564,-1,-1,-1
314,-1,177.571,163.09,32.396,67.303,0.980679,-1,-1,-1
314,-1,371.706,149.538,46.785,82.249,0.979575,-1,-1,-1
314,-1,588.741,173.643,31.565,79.098,0.978827,-1,-1,-1
314,-1,617.284,186.089,23.104,69.587,0.920154,-1,-1,-1
315,-1,263.244,161.872,37.623,113.407,0.992864,-1,-1,-1
315,-1,177.014,166.389,35.156,70.152,0.979698,-1,-1,-1
315,-1,587.981,185.885,26.532,66.983,0.97646,-1,-1,-1
315,-1,384.545,145.172,38.786,78.334,0.962662,-1,-1,-1
315,-1,621.213,174.811,31.782,78.703,0.93644,-1,-1,-1
316,-1,176.625,172.775,39.232,66.937,0.980649,-1,-1,-1
316,-1,251.926,184.348,38.482,93.472,0.978817,-1,-1,-1
316,-1,589.888,175.841,33.611,80.003,0.97302,-1,-1,-1
316,-1,622.023,179.762,33.437,81.969,0.949445,-1,-1,-1
316,-1,392.528,142.983,39.108,78.429,0.871704,-1,-1,-1
316,-1,271.401,163.77,34.399,102.271,0.66736,-1,-1,-1
317,-1,181.033,175.444,29.517,65.857,0.98192,-1,-1,-1
317,-1,589.305,178.379,30.168,81.333,0.964055,-1,-1,-1
317,-1,621.229,184.283,33.768,68.744,0.930598,-1,-1,-1
317,-1,252.902,182.762,32.625,84.195,0.928233,-1,-1,-1
317,-1,393.954,144.581,41.343,64.526,0.906918,-1,-1,-1
317,-1,274.773,166.682,34.666,85.565,0.837359,-1,-1,-1
318,-1,184.567,175.946,27.449,61.379,0.979793,-1,-1,-1
318,-1,591.731,187.766,28.709,68.88,0.978503,-1,-1,-1
318,-1,252.766,184.171,33.685,91.552,0.963547,-1,-1,-1
318,-1,623.165,180.954,29.995,76.846,0.931898,-1,-1,-1
318,-1,283.923,169.044,31.804,84.365,0.914825,-1,-1,-1
318,-1,396.817,140.561,44.359,65.374,0.52246,-1,-1,-1
319,-1,295.251,171.245,29.541,76.028,0.980784,-1,-1,-1
319,-1,580.28,183.019,33.695,76.236,0.977043,-1,-1,-1
319,-1,252.567,183.984,32.274,93.821,0.969844,-1,-1,-1
319,-1,185.199,167.256,25.292,64.971,0.966607,-1,-1,-1
319,-1,628.965,179.774,29.403,79.125,0.961071,-1,-1,-1
319,-1,612.016,190.327,30.394,58.417,0.756754,-1,-1,-1
320,-1,295.256,162.853,34.627,94.48,0.983577,-1,-1,-1
320,-1,629.057,183.401,27.1,80.044,0.980152,-1,-1,-1
320,-1,591.514,183.545,29.154,87.209,0.974194,-1,-1,-1
320,-1,198.019,177.896,38.31,74.304,0.966959,-1,-1,-1
320,-1,252.718,187.496,33.703,88.732,0.964989,-1,-1,-1
321,-1,296.89,168.04,37.453,91.105,0.994233,-1,-1,-1
321,-1,200.584,174.463,27.992,68.218,0.98545,-1,-1,-1
321,-1,590.875,178.718,32.974,80.603,0.975026,-1,-1,-1
321,-1,628.175,191.812,28.97,79.017,0.967878,-1,-1,-1
321,-1,252.224,187.407,33.255,88.875,0.930239,-1,-1,-1
321,-1,418.241,137.878,37.956,70.728,0.850923,-1,-1,-1
322,-1,304.835,169.455,35.733,80.836,0.988597,-1,-1,-1
322,-1,206.11,176.909,26.892,62.648,0.976467,-1,-1,-1
322,-1,631.861,186.843,23.025,70.975,0.970182,-1,-1,-1
322,-1,585.054,187.646,27.513,67.4,0.961435,-1,-1,-1
322,-1,250.502,190.693,33.643,84.974,0.95329,-1,-1,-1
322,-1,601.173,183.72,27.025,78.433,0.928521,-1,-1,-1
322,-1,422.727,134.329,41.773,81.086,0.737486,-1,-1,-1
323,-1,309.586,167.666,37.461,84.369,0.983903,-1,-1,-1
323,-1,429.231,132.417,38.551,93.769,0.972215,-1,-1,-1
323,-1,631.244,191.236,33.484,67.411,0.970092,-1,-1,-1
323,-1,602.106,189.357,26.731,73.632,0.947486,-1,-1,-1
323,-1,250.866,174.417,37.9,113.035,0.942052,-1,-1,-1
323,-1,201.561,171.085,44.078,70.927,0.930993,-1,-1,-1
323,-1,585.35,187.342,28.872,72.938,0.841622,-1,-1,-1
323,-1,620.772,200.514,23.822,55.919,0.505279,-1,-1,-1
324,-1,212.825,174.735,34.505,68.46,0.99097,-1,-1,-1
324,-1,312.106,166.335,40.575,92.208,0.987737,-1,-1,-1
324,-1,629.358,194.085,30.015,84.048,0.969728,-1,-1,-1
324,-1,262.902,184.182,31.343,97.644,0.969485,-1,-1,-1
324,-1,600.95,186.947,30.774,76.653,0.968966,-1,-1,-1
324,-1,436.305,140.213,38.375,85.185,0.966523,-1,-1,-1
325,-1,321.215,172.241,30.708,79.556,0.988631,-1,-1,-1
325,-1,219.768,175.481,31.742,69.62,0.984923,-1,-1,-1
325,-1,261.53,185.296,35.911,93.645,0.980864,-1,-1,-1
325,-1,597.325,194.432,31.504,74.611,0.977848,-1,-1,-1
325,-1,452.55,144.223,31.547,77.819,0.971809,-1,-1,-1
325,-1,625.302,192.542,30.29,87.791,0.960537,-1,-1,-1
326,-1,448.641,142.244,34.718,79.013,0.985803,-1,-1,-1
326,-1,602.199,190.136,33.827,84.302,0.980377,-1,-1,-1
326,-1,322.204,172.045,38.349,82.37,0.980274,-1,-1,-1
326,-1,224.797,175.619,28.588,71.582,0.964991,-1,-1,-1
326,-1,634.542,197.973,25.761,68.361,0.937319,-1,-1,-1
326,-1,263.848,179.846,37.209,99.833,0.912693,-1,-1,-1
327,-1,328.949,177.373,40.875,78.709,0.988069,-1,-1,-1
327,-1,456.456,140.055,34.373,78.84,0.984996,-1,-1,-1
327,-1,234.247,177.554,33.736,75.616,0.978422,-1,-1,-1
327,-1,265.069,186.374,37.743,88.269,0.972928,-1,-1,-1
327,-1,601.822,198.234,30.421,68.882,0.96741,-1,-1,-1
327,-1,632.364,195.546,33.513,75.62,0.952365,-1,-1,-1
328,-1,340.823,177.402,39.048,79.297,0.982103,-1,-1,-1
328,-1,462.733,143.818,35.079,81.051,0.970958,-1,-1,-1
328,-1,626.816,201.902,32.408,74.799,0.959357,-1,-1,-1
328,-1,271.708,192.038,38.519,82.218,0.948241,-1,-1,-1
328,-1,606.347,200.842,28.831,69.004,0.932566,-1,-1,-1
328,-1,233.909,180.443,34.218,72.697,0.930045,-1,-1,-1
329,-1,467.618,146.239,30.148,77.063,0.970756,-1,-1,-1
329,-1,278.139,186.961,35.28,100.311,0.965365,-1,-1,-1
329,-1,345.019,165.412,39.873,88.054,0.964153,-1,-1,-1
329,-1,635.887,206.378,30.2,73.277,0.953578,-1,-1,-1
329,-1,236.884,177.061,35.167,79.131,0.946346,-1,-1,-1
329,-1,607.097,192.504,37.427,89.526,0.937913,-1,-1,-1
330,-1,356.514,173.634,31.943,82.181,0.987627,-1,-1,-1
330,-1,280.293,179.645,37.509,101.758,0.985356,-1,-1,-1
330,-1,638.481,204.376,30.693,71.253,0.982555,-1,-1,-1
330,-1,470.073,144.951,38.561,77.514,0.980596,-1,-1,-1
330,-1,249.842,176.874,31.018,80.56,0.954853,-1,-1,-1
330,-1,611.685,198.684,31.875,73.043,0.945124,-1,-1,-1
331,-1,288.737,188.044,35.039,91.2,0.981718,-1,-1,-1
331,-1,470.336,147.535,36.815,75.724,0.979307,-1,-1,-1
331,-1,612.477,198.846,33.321,72.629,0.974995,-1,-1,-1
331,-1,649.898,209.413,28.87,73.84,0.969665,-1,-1,-1
331,-1,354.442,176.66,49.25,90.491,0.963225,-1,-1,-1
331,-1,249.269,175.464,29.705,67.894,0.943101,-1,-1,-1
331,-1,263.039,167.542,29.989,95.281,0.625611,-1,-1,-1
332,-1,360.314,169.474,39.966,84.428,0.994711,-1,-1,-1
332,-1,645.08,203.069,34.377,80.471,0.977716,-1,-1,-1
332,-1,613.294,203.412,30.826,81.191,0.972418,-1,-1,-1
332,-1,471.944,142.959,47.414,82.232,0.962652,-1,-1,-1
332,-1,292.251,197.464,32.648,90.862,0.960914,-1,-1,-1
332,-1,254.804,178.622,34.586,73.523,0.93929,-1,-1,-1
333,-1,612.726,193.405,31.816,87.709,0.980831,-1,-1,-1
333,-1,374.187,171.187,28.739,86.4,0.975779,-1,-1,-1
333,-1,483.458,152.412,28.862,71.51,0.974237,-1,-1,-1
333,-1,652.459,205.79,35.752,82.407,0.96553,-1,-1,-1
333,-1,296.748,192.204,34.161,95.09,0.943852,-1,-1,-1
333,-1,270.484,174.834,25.7,85.254,0.823059,-1,-1,-1
333,-1,631.614,199.36,30.825,87.331,0.812657,-1,-1,-1
334,-1,612.359,196.171,33.959,85.054,0.981298,-1,-1,-1
334,-1,649.094,208.027,34.298,79.97,0.978937,-1,-1,-1
334,-1,483.671,151.112,28.791,74.114,0.970907,-1,-1,-1
334,-1,303.964,202.28,36.39,84.245,0.960752,-1,-1,-1
334,-1,376.626,180.644,31.344,78.47,0.928051,-1,-1,-1
334,-1,266.924,177.595,31.504,76.594,0.882878,-1,-1,-1
335,-1,486.441,152.738,31.192,70.389,0.984078,-1,-1,-1
335,-1,614.635,203.014,33.623,80.516,0.982287,-1,-1,-1
335,-1,648.569,207.674,37.061,82.991,0.975798,-1,-1,-1
335,-1,380.528,184.245,37.762,80.56,0.968482,-1,-1,-1
335,-1,303.917,198.02,34.326,93.195,0.956438,-1,-1,-1
335,-1,274.434,178.449,34.534,75.247,0.854078,-1,-1,-1
336,-1,477.986,155.178,43.845,75.066,0.978174,-1,-1,-1
336,-1,623.427,207.183,28.792,85.684,0.973835,-1,-1,-1
336,-1,653.697,210.52,36.852,77.161,0.968614,-1,-1,-1
336,-1,382.75,177.143,39.314,88.427,0.961803,-1,-1,-1
336,-1,284.581,178.504,32.047,79.907,0.919427,-1,-1,-1
336,-1,301.806,197.731,48.005,85.819,0.890738,-1,-1,-1
337,-1,315.684,213.215,37.906,76.344,0.98168,-1,-1,-1
337,-1,476.028,157.403,43.561,71.117,0.978726,-1,-1,-1
337,-1,624.854,208.409,32.014,78.112,0.972915,-1,-1,-1
337,-1,663.06,209.514,30.345,82.554,0.96498,-1,-1,-1
337,-1,638.642,219.386,37.425,79.179,0.915753,-1,-1,-1
337,-1,288.21,174.406,32.843,74.149,0.852605,-1,-1,-1
337,-1,394.639,183.676,42.64,74.829,0.815114,-1,-1,-1
338,-1,629.818,207.743,39.052,77.682,0.986616,-1,-1,-1
338,-1,321.871,201.972,34.948,84.273,0.985679,-1,-1,-1
338,-1,481.186,151.808,32.507,78.612,0.978353,-1,-1,-1
338,-1,663.926,208.849,33.605,78.999,0.934183,-1,-1,-1
338,-1,291.231,172.732,38.108,75.6,0.88572,-1,-1,-1
338,-1,396.576,166.205,40.207,92.242,0.593342,-1,-1,-1
339,-1,471.082,159.513,44.103,81.162,0.988041,-1,-1,-1
339,-1,634.083,209.946,35.095,92.04,0.976064,-1,-1,-1
339,-1,321.883,204.561,37.635,92.106,0.972845,-1,-1,-1
339,-1,663.924,212.345,28.471,79.197,0.967006,-1,-1,-1
339,-1,294.148,176.455,35.093,77.328,0.778428,-1,-1,-1
340,-1,468.107,163.563,45.33,78.876,0.990244,-1,-1,-1
340,-1,322.653,203.956,44.279,94.402,0.984601,-1,-1,-1
340,-1,666.63,210.185,39.492,79.955,0.982154,-1,-1,-1
340,-1,636.985,209.88,30.461,91.817,0.966125,-1,-1,-1
340,-1,303.984,175.311,32.513,86.381,0.826506,-1,-1,-1
341,-1,471.051,162.125,42.693,78.771,0.9827,-1,-1,-1
341,-1,663.233,218.492,45.95,85.786,0.980054,-1,-1,-1
341,-1,331.77,211.594,37.86,84.458,0.97616,-1,-1,-1
341,-1,630.469,214.882,32.724,75.093,0.965713,-1,-1,-1
341,-1,312.029,177.008,36.816,102.572,0.919444,-1,-1,-1
342,-1,674.74,217.175,34.377,82.268,0.983565,-1,-1,-1
342,-1,469.4,154.249,28.058,86.033,0.975106,-1,-1,-1
342,-1,337.298,202.846,40.988,97.605,0.964954,-1,-1,-1
342,-1,637.084,209.398,32.118,91.995,0.937207,-1,-1,-1
343,-1,466.081,165.242,30.009,85.672,0.980168,-1,-1,-1
343,-1,343.603,189.264,38.964,99.253,0.976763,-1,-1,-1
343,-1,677.658,218.309,38.402,86.692,0.967698,-1,-1,-1
343,-1,639.429,220.962,27.629,68.989,0.956426,-1,-1,-1
343,-1,413.382,165.68,41.662,101.666,0.500353,-1,-1,-1
344,-1,446.937,160.101,45.102,93.393,0.981294,-1,-1,-1
344,-1,681.395,214.934,26.813,83.55,0.977059,-1,-1,-1
344,-1,643.599,212.201,31.879,85.476,0.976231,-1,-1,-1
344,-1,345.13,189.202,41.283,102.938,0.948333,-1,-1,-1
345,-1,645.333,216.234,30.942,92.455,0.985839,-1,-1,-1
345,-1,678.613,221.784,39.003,83.667,0.980084,-1,-1,-1
345,-1,436.888,164.891,42.183,111.356,0.977029,-1,-1,-1
345,-1,353.758,196.713,42.033,107.869,0.965222,-1,-1,-1
345,-1,662.006,218.144,30.697,77.279,0.690359,-1,-1,-1
346,-1,439.608,163.784,39.588,101.353,0.991104,-1,-1,-1
346,-1,652.255,222.822,32.707,81.332,0.988285,-1,-1,-1
346,-1,345.216,174.371,54.227,133.344,0.980655,-1,-1,-1
346,-1,679.773,222.299,39.379,81.791,0.962008,-1,-1,-1
347,-1,443.672,174.526,42.551,106.593,0.992471,-1,-1,-1
347,-1,650.241,224.336,31.364,83.301,0.986674,-1,-1,-1
347,-1,350.676,171.726,49.861,136.215,0.983212,-1,-1,-1
347,-1,679.473,229.278,32.147,85.785,0.967185,-1,-1,-1
348,-1,463.643,189.139,31.81,84.854,0.987586,-1,-1,-1
348,-1,366.335,218.236,36.207,86.95,0.986844,-1,-1,-1
348,-1,654.763,221.821,32.899,85.618,0.963826,-1,-1,-1
348,-1,673.089,229.845,28.956,83.253,0.949047,-1,-1,-1
348,-1,354.197,177.483,36.564,81.005,0.686055,-1,-1,-1
348,-1,693.496,234.603,31.336,75.491,0.656885,-1,-1,-1
348,-1,428.38,165.502,34.719,75.664,0.531129,-1,-1,-1
349,-1,463.534,178.668,35.724,104.655,0.987141,-1,-1,-1
349,-1,661.106,216.793,38.363,91.421,0.980346,-1,-1,-1
349,-1,364.27,178.801,42.817,149.158,0.959301,-1,-1,-1
349,-1,684.536,225.847,34.25,80.915,0.957858,-1,-1,-1
349,-1,415.716,161.711,41.411,81.276,0.886572,-1,-1,-1
350,-1,462.737,175.615,39.623,102.18,0.994305,-1,-1,-1
350,-1,663.589,212.821,35.946,93.819,0.980684,-1,-1,-1
350,-1,367.698,198.031,41.162,124.955,0.974599,-1,-1,-1
350,-1,418.26,158.693,44.849,100.571,0.83019,-1,-1,-1
351,-1,473.025,190.79,33.224,80.571,0.990063,-1,-1,-1
351,-1,370.749,178.914,42.285,138.891,0.988453,-1,-1,-1
351,-1,683.99,228.738,56.522,87.386,0.985305,-1,-1,-1
351,-1,664.637,222.993,35.686,93.03,0.916068,-1,-1,-1
352,-1,479.913,182.363,33.515,95.725,0.990499,-1,-1,-1
352,-1,690.786,228.69,41.46,92.003,0.989275,-1,-1,-1
352,-1,377.684,169.731,43.453,142.283,0.987079,-1,-1,-1
352,-1,666.915,218.077,40.59,105.225,0.835429,-1,-1,-1
353,-1,708.357,227.566,37.122,86.563,0.991199,-1,-1,-1
353,-1,489.773,180.828,37.968,94.171,0.990467,-1,-1,-1
353,-1,381.63,171.327,58.013,158.76,0.989189,-1,-1,-1
353,-1,676.462,231.377,39.547,86.129,0.972796,-1,-1,-1
354,-1,484.452,180.492,56.735,101.939,0.9901,-1,-1,-1
354,-1,707.844,232.68,36.497,82.562,0.988087,-1,-1,-1
354,-1,390.911,162.463,42.198,151.695,0.985441,-1,-1,-1
354,-1,677.763,226.929,36.115,99.047,0.907686,-1,-1,-1
355,-1,495.826,194.574,40.805,81.007,0.980937,-1,-1,-1
355,-1,701.794,222.652,42.959,107.299,0.974254,-1,-1,-1
355,-1,682.814,229.755,30.268,98.175,0.940195,-1,-1,-1
355,-1,397.12,167.037,41.898,158.555,0.930758,-1,-1,-1
356,-1,504.241,193.164,37.503,82.416,0.990273,-1,-1,-1
356,-1,703.406,243.13,41.679,88.124,0.975175,-1,-1,-1
356,-1,393.112,154.873,50.145,171.365,0.87855,-1,-1,-1
356,-1,686.946,214.9,31.507,118.135,0.821457,-1,-1,-1
357,-1,515.11,194.054,38.728,88.416,0.993957,-1,-1,-1
357,-1,709.717,234.385,41.968,92.812,0.970079,-1,-1,-1
357,-1,685.809,227.989,28,94.252,0.966488,-1,-1,-1
357,-1,382.257,175.335,42.262,83.096,0.750121,-1,-1,-1
358,-1,519.515,189.247,39.045,90.937,0.990999,-1,-1,-1
358,-1,696.967,231.285,27.263,101.254,0.966053,-1,-1,-1
358,-1,724.593,243.692,33.198,94.205,0.961214,-1,-1,-1
358,-1,422.841,226.075,41.811,91.909,0.956434,-1,-1,-1
358,-1,381.2,176.577,30.005,78.984,0.514196,-1,-1,-1
359,-1,525.487,185.946,36.667,95.009,0.986704,-1,-1,-1
359,-1,692.544,223.114,36.588,120.618,0.984166,-1,-1,-1
359,-1,420.242,225.733,38.607,101.37,0.971933,-1,-1,-1
359,-1,723.572,240.482,34.504,94.085,0.968012,-1,-1,-1
359,-1,375.729,176.283,31.237,76.899,0.913808,-1,-1,-1
360,-1,370.936,178.405,35.844,71.826,0.984577,-1,-1,-1
360,-1,424.491,228.056,29.771,113.516,0.98001,-1,-1,-1
360,-1,528.579,193.384,44.119,86.736,0.978559,-1,-1,-1
360,-1,725.845,236.891,36.965,93.349,0.970293,-1,-1,-1
360,-1,697.499,235.432,40.525,95.763,0.968937,-1,-1,-1
361,-1,531.246,185.225,37.601,95.033,0.992531,-1,-1,-1
361,-1,362.902,174.754,38.729,69.307,0.987896,-1,-1,-1
361,-1,433.315,245.359,34.659,95.396,0.981572,-1,-1,-1
361,-1,725.055,244.053,37.563,85.789,0.972386,-1,-1,-1
361,-1,698.941,243.772,39.98,94.379,0.960564,-1,-1,-1
362,-1,363.628,172.482,32.922,71.302,0.988048,-1,-1,-1
362,-1,545.041,188.141,36.851,99.538,0.987229,-1,-1,-1
362,-1,426.562,221.175,51.506,126.958,0.983381,-1,-1,-1
362,-1,705.213,230.108,40.423,105.67,0.967437,-1,-1,-1
362,-1,730.276,244.477,36.265,93.469,0.938735,-1,-1,-1
362,-1,441.534,179.198,31.136,89.954,0.710356,-1,-1,-1
363,-1,544.058,188.276,39.436,96.569,0.987651,-1,-1,-1
363,-1,357.366,166.383,38.687,79.41,0.976176,-1,-1,-1
363,-1,706.892,229.632,39.966,109.668,0.968079,-1,-1,-1
363,-1,436.274,220.12,49.015,114.671,0.942567,-1,-1,-1
363,-1,731.533,252.571,35.467,85.016,0.910332,-1,-1,-1
363,-1,444.47,175.682,34.356,104.971,0.74486,-1,-1,-1
364,-1,554.058,199.362,37.421,90.169,0.988019,-1,-1,-1
364,-1,360.045,169.553,33.736,81.247,0.984325,-1,-1,-1
364,-1,704.699,236.372,40.772,99.466,0.976402,-1,-1,-1
364,-1,440.68,209.288,50.294,130.972,0.970419,-1,-1,-1
364,-1,734.818,250.568,30.415,87.267,0.769273,-1,-1,-1
365,-1,559.8,190.02,46.931,98.548,0.993511,-1,-1,-1
365,-1,347.382,170.78,37.218,68.1,0.987364,-1,-1,-1
365,-1,708.705,233.561,43.61,114.592,0.982645,-1,-1,-1
365,-1,462.601,232.991,37.058,113.969,0.95546,-1,-1,-1
365,-1,460.222,169.684,45.043,116.819,0.71996,-1,-1,-1
366,-1,466.526,246.77,38.038,104.664,0.986318,-1,-1,-1
366,-1,347.526,173.108,31.436,67.469,0.982129,-1,-1,-1
366,-1,570.84,205.267,41.084,79.694,0.974542,-1,-1,-1
366,-1,712.067,240.275,47.085,123.843,0.961379,-1,-1,-1
366,-1,459.674,166.769,42.165,135.173,0.770997,-1,-1,-1
367,-1,569.808,193.316,39.612,93.264,0.9951,-1,-1,-1
367,-1,716.395,240.847,41.735,113,0.986212,-1,-1,-1
367,-1,341.552,170.65,37.097,74.577,0.983303,-1,-1,-1
367,-1,470.437,244.526,34.843,114.172,0.974976,-1,-1,-1
367,-1,464.314,169.987,41.372,101.513,0.969296,-1,-1,-1
368,-1,575.978,199.771,42.977,93.235,0.993624,-1,-1,-1
368,-1,337.106,176.721,42.211,76.226,0.990445,-1,-1,-1
368,-1,723.954,241.513,40.325,107.644,0.976813,-1,-1,-1
368,-1,469.274,173.885,36.939,84.468,0.972981,-1,-1,-1
368,-1,471.461,249.714,30.541,102.12,0.965992,-1,-1,-1
369,-1,582.101,203.508,42.305,95.829,0.994944,-1,-1,-1
369,-1,327.687,168.345,35.737,73.058,0.985475,-1,-1,-1
369,-1,717.409,255.292,49.008,103.59,0.982799,-1,-1,-1
369,-1,471.241,169.54,51.315,93.095,0.9826,-1,-1,-1
369,-1,485.414,246.503,34.269,118.347,0.953606,-1,-1,-1
370,-1,590.686,200.403,35.59,89.429,0.995598,-1,-1,-1
370,-1,490.797,242.962,39.224,121.223,0.972417,-1,-1,-1
370,-1,332.455,170.838,30.621,75.109,0.971695,-1,-1,-1
370,-1,478.152,169.361,45.393,81.832,0.964234,-1,-1,-1
370,-1,719.505,248.334,47.495,119.737,0.95755,-1,-1,-1
371,-1,595.442,199.515,41.741,98.693,0.99301,-1,-1,-1
371,-1,492.047,244.097,43.158,120.384,0.988,-1,-1,-1
371,-1,327.581,170.229,31.188,75.316,0.984322,-1,-1,-1
371,-1,484.226,165.346,34.412,76.795,0.979202,-1,-1,-1
371,-1,729.5,258.753,37.5,104.392,0.922705,-1,-1,-1
372,-1,601.138,197.221,34.352,104.303,0.98862,-1,-1,-1
372,-1,321.315,174.835,35.009,72.785,0.987982,-1,-1,-1
372,-1,491.046,251.359,53.78,115.945,0.978724,-1,-1,-1
372,-1,486.775,173.677,31.235,70.678,0.969856,-1,-1,-1
372,-1,736.489,243.174,30.511,113.809,0.878522,-1,-1,-1
373,-1,315.073,171.792,43.162,78.232,0.988244,-1,-1,-1
373,-1,503.924,254.442,41.277,108.335,0.984464,-1,-1,-1
373,-1,607.373,198.711,38.51,96.134,0.984166,-1,-1,-1
373,-1,486.029,168.403,43.167,77.879,0.98146,-1,-1,-1
373,-1,740.97,216.487,26.03,158.06,0.514692,-1,-1,-1
374,-1,497.375,175.064,35.072,72.138,0.987623,-1,-1,-1
374,-1,519.15,248.317,45.803,114.034,0.982023,-1,-1,-1
374,-1,616.478,203.743,41.677,93.41,0.981098,-1,-1,-1
374,-1,313.216,178.935,34.762,69.502,0.973247,-1,-1,-1
375,-1,616.144,205.029,43.538,92.335,0.994037,-1,-1,-1
375,-1,515.924,249.086,57.384,116.408,0.99095,-1,-1,-1
375,-1,500.34,164.533,40.741,72.743,0.981507,-1,-1,-1
375,-1,305.886,169.59,40.09,85.386,0.961429,-1,-1,-1
376,-1,624.074,206.24,44.408,99.61,0.987823,-1,-1,-1
376,-1,530.14,244.056,34.06,114.235,0.987816,-1,-1,-1
376,-1,508.233,161.326,32.934,76.382,0.986272,-1,-1,-1
376,-1,291.943,174.307,55.506,76.483,0.986069,-1,-1,-1
377,-1,633.507,206.346,40.711,100.469,0.991287,-1,-1,-1
377,-1,512.675,167.623,40.499,62.809,0.984831,-1,-1,-1
377,-1,535.446,264.885,50.342,111.393,0.979251,-1,-1,-1
377,-1,290.278,177.046,41.535,74.963,0.977912,-1,-1,-1
378,-1,539.494,265.866,38.503,105.83,0.992318,-1,-1,-1
378,-1,282.521,170.005,47.941,82.934,0.98388,-1,-1,-1
378,-1,511.619,163.828,39.816,64.729,0.982495,-1,-1,-1
378,-1,637.237,196.008,40.672,122.926,0.969227,-1,-1,-1
379,-1,647.009,208.178,34.369,102.417,0.989471,-1,-1,-1
379,-1,521.04,164.03,35.999,62.767,0.988081,-1,-1,-1
379,-1,548.529,258.276,38.291,109.723,0.984933,-1,-1,-1
379,-1,278.772,176.839,38.06,65.311,0.982591,-1,-1,-1
380,-1,646.893,209.603,37.729,95.231,0.994373,-1,-1,-1
380,-1,528.804,151.906,37.891,76.736,0.989614,-1,-1,-1
380,-1,278.986,180.166,35.723,64.343,0.980921,-1,-1,-1
380,-1,551.801,259.297,36.503,107.147,0.972753,-1,-1,-1
381,-1,519.59,160.371,54.081,77.586,0.993585,-1,-1,-1
381,-1,272.12,179.936,44.195,79.86,0.992182,-1,-1,-1
381,-1,659.356,204.657,42.558,115.034,0.981488,-1,-1,-1
381,-1,561.107,260.518,47.156,112.294,0.964523,-1,-1,-1
382,-1,536.563,151.216,39.879,74.208,0.991111,-1,-1,-1
382,-1,269.33,176.536,40.463,81.605,0.986914,-1,-1,-1
382,-1,667.159,191.881,36.371,127.754,0.985206,-1,-1,-1
382,-1,568.858,265.697,40.251,108.143,0.974684,-1,-1,-1
383,-1,569.898,268.256,52.695,112.848,0.990212,-1,-1,-1
383,-1,538.704,160.959,34.744,69.622,0.989125,-1,-1,-1
383,-1,267.554,180.097,36.112,69.453,0.988672,-1,-1,-1
383,-1,678.11,196.868,35.744,116.131,0.980112,-1,-1,-1
384,-1,538.161,158.696,43.912,73.508,0.992054,-1,-1,-1
384,-1,682.957,212.334,38.085,91.247,0.989994,-1,-1,-1
384,-1,581.261,268.673,47.207,114.394,0.989695,-1,-1,-1
384,-1,260.993,179.265,35.621,79.037,0.986699,-1,-1,-1
385,-1,258.631,178.276,40.081,77.345,0.992313,-1,-1,-1
385,-1,546.61,151.988,39.287,81.117,0.989587,-1,-1,-1
385,-1,680.793,210.469,52.647,104.615,0.989536,-1,-1,-1
385,-1,586.952,270.11,52.891,107.549,0.984914,-1,-1,-1
386,-1,544.938,156.414,47.03,71.249,0.995806,-1,-1,-1
386,-1,592.472,271.791,43.785,109.642,0.992211,-1,-1,-1
386,-1,250.575,177.168,40.774,75.512,0.991205,-1,-1,-1
386,-1,692.857,205.545,42.723,110.704,0.988808,-1,-1,-1
387,-1,560.648,150.47,34.723,71.873,0.994202,-1,-1,-1
387,-1,597.882,270.18,48.744,121.25,0.992825,-1,-1,-1
387,-1,697.793,211.738,50.052,110.073,0.990683,-1,-1,-1
387,-1,254.172,183.778,34.901,77.545,0.98812,-1,-1,-1
388,-1,553.579,149.117,39.719,74.15,0.994816,-1,-1,-1
388,-1,253.163,183.358,35.705,81.7,0.988808,-1,-1,-1
388,-1,609.039,275.648,44.572,107.035,0.986709,-1,-1,-1
388,-1,700.903,209.18,46.151,116.35,0.983226,-1,-1,-1
389,-1,554.55,141.65,44.896,77.712,0.996042,-1,-1,-1
389,-1,608.349,271.205,52.9,128.215,0.991062,-1,-1,-1
389,-1,250.727,183.618,38.342,86.962,0.990776,-1,-1,-1
389,-1,708.842,228.736,41.723,91.343,0.9876,-1,-1,-1
390,-1,623.18,282.299,46.66,109.91,0.99096,-1,-1,-1
390,-1,718.11,214.854,40.436,114.795,0.986059,-1,-1,-1
390,-1,252.07,184.601,32.9,71.108,0.981128,-1,-1,-1
390,-1,561.587,140.242,45.33,72.387,0.969063,-1,-1,-1
391,-1,572.261,145.909,35.529,66.502,0.990027,-1,-1,-1
391,-1,624.554,282.012,53.689,116.257,0.989663,-1,-1,-1
391,-1,255.913,191.118,30.319,75.241,0.980586,-1,-1,-1
391,-1,715.654,208.828,43.851,128.671,0.979191,-1,-1,-1
392,-1,624.078,276.83,69.947,122.333,0.992059,-1,-1,-1
392,-1,253.498,190.283,33.932,79.115,0.989944,-1,-1,-1
392,-1,725.635,205.516,37.514,116.213,0.9783,-1,-1,-1
392,-1,568.674,158.418,32.357,60.654,0.973718,-1,-1,-1
392,-1,582.583,143.051,33.903,66.451,0.75554,-1,-1,-1
393,-1,575.098,140.904,40.158,71.091,0.995507,-1,-1,-1
393,-1,644.208,282.697,48.267,109.771,0.99257,-1,-1,-1
393,-1,256.63,191.128,37.441,76.125,0.976221,-1,-1,-1
393,-1,736.027,219.971,30.973,113.883,0.934015,-1,-1,-1
394,-1,568.238,136.105,49.384,74.253,0.984901,-1,-1,-1
394,-1,652.771,282.345,38.967,125.018,0.973006,-1,-1,-1
394,-1,258.33,187.175,35.611,82.775,0.962826,-1,-1,-1
394,-1,734.876,210.064,32.124,121.256,0.940869,-1,-1,-1
395,-1,653.808,287.252,47.757,123.276,0.990126,-1,-1,-1
395,-1,575.048,130.854,35.452,75.697,0.984646,-1,-1,-1
395,-1,252.948,196.311,43.77,80.278,0.958935,-1,-1,-1
395,-1,739.49,226.624,27.51,96.487,0.858778,-1,-1,-1
396,-1,580.779,134.581,42.276,72.294,0.994674,-1,-1,-1
396,-1,666.556,287.532,49.596,124.033,0.987696,-1,-1,-1
396,-1,261.577,201.237,36.382,76.091,0.985555,-1,-1,-1
397,-1,583.025,131.413,36.805,74.975,0.993556,-1,-1,-1
397,-1,261.608,194.512,34.307,82.091,0.992419,-1,-1,-1
397,-1,675.671,290.632,42.068,111.311,0.983639,-1,-1,-1
398,-1,266.34,192.47,32.069,85.442,0.994309,-1,-1,-1
398,-1,673.248,287.346,54.555,122.196,0.992055,-1,-1,-1
398,-1,583.77,134.272,34.404,74.965,0.987099,-1,-1,-1
399,-1,268.273,187.105,34.771,84.057,0.996518,-1,-1,-1
399,-1,684.555,296.23,37.72,112.723,0.986834,-1,-1,-1
399,-1,588.552,133.615,29.088,64.327,0.986153,-1,-1,-1
400,-1,268.569,184.548,38.676,87.798,0.995087,-1,-1,-1
400,-1,681.961,291.765,49.437,122.004,0.992468,-1,-1,-1
400,-1,582.771,130.767,42.968,68.47,0.976283,-1,-1,-1
401,-1,272.138,192.1,38.834,93.781,0.995363,-1,-1,-1
401,-1,685.989,298.331,57.078,112.244,0.990674,-1,-1,-1
401,-1,589.052,124.348,31.753,74.911,0.976633,-1,-1,-1
402,-1,270.355,198.032,42.491,88.749,0.992471,-1,-1,-1
402,-1,698.882,293.156,47.892,121.772,0.992218,-1,-1,-1
402,-1,590.691,133.327,34.47,74.389,0.979609,-1,-1,-1
403,-1,270.96,187.211,40.417,89.578,0.993781,-1,-1,-1
403,-1,699.655,300.018,51.439,112.319,0.993367,-1,-1,-1
403,-1,584.699,133.385,42.186,64.465,0.971846,-1,-1,-1
404,-1,703.632,297.96,54.057,125.344,0.990489,-1,-1,-1
404,-1,584.768,133.463,39.213,63.108,0.971152,-1,-1,-1
404,-1,275.641,182.385,37.088,99.229,0.945497,-1,-1,-1
405,-1,288.282,202.066,40.009,90.093,0.992111,-1,-1,-1
405,-1,569.391,134.178,30.603,62.672,0.990889,-1,-1,-1
406,-1,568.638,127.819,32.374,64.934,0.987176,-1,-1,-1
406,-1,290.188,196.518,38.636,95.488,0.986344,-1,-1,-1
407,-1,568.889,130.15,31.833,63.18,0.988853,-1,-1,-1
407,-1,286.526,207.874,35.709,73.562,0.987405,-1,-1,-1
408,-1,288.347,191.482,41.081,97.512,0.993425,-1,-1,-1
408,-1,577.015,130.251,33.655,61.648,0.990464,-1,-1,-1
409,-1,286.138,190.599,42.558,97.286,0.99357,-1,-1,-1
409,-1,568.574,133.982,31.187,60.441,0.989878,-1,-1,-1
410,-1,285.564,189.722,43.499,96.847,0.991174,-1,-1,-1
410,-1,567.079,140.654,34.505,59.958,0.990391,-1,-1,-1
411,-1,572.261,133.392,27.104,62.831,0.980838,-1,-1,-1
411,-1,291.021,190.319,41.643,88.072,0.977557,-1,-1,-1
412,-1,286.65,191.1,42.889,98.266,0.992569,-1,-1,-1
412,-1,577.502,144.406,28.632,58.785,0.956121,-1,-1,-1
412,-1,562.001,140.818,26.464,58.537,0.576106,-1,-1,-1
413,-1,287.89,192.122,42.107,96.649,0.988889,-1,-1,-1
413,-1,568.414,144.813,27.233,51.437,0.987662,-1,-1,-1
414,-1,564.741,136.984,40.603,57.502,0.987032,-1,-1,-1
414,-1,286.659,187.861,45.22,105.095,0.985545,-1,-1,-1
415,-1,290.86,191.375,39.649,100.025,0.989272,-1,-1,-1
415,-1,560.505,141.009,38.235,55.31,0.982073,-1,-1,-1
416,-1,290.026,196.011,39.717,97.192,0.991552,-1,-1,-1
416,-1,550.951,134.532,54.104,76.633,0.982999,-1,-1,-1
417,-1,288.3,189.644,41.785,107.098,0.991053,-1,-1,-1
417,-1,559.725,138.646,34.304,73.958,0.983625,-1,-1,-1
418,-1,285.944,183.741,43.031,110.356,0.990447,-1,-1,-1
418,-1,550.22,135.282,50.61,76.521,0.974489,-1,-1,-1
419,-1,288.743,197.047,39.345,91.491,0.992445,-1,-1,-1
419,-1,550.518,151.389,34.52,58.721,0.964909,-1,-1,-1
420,-1,552.935,145.54,33.243,61.442,0.985612,-1,-1,-1
420,-1,282.379,182.545,46.107,108.426,0.982093,-1,-1,-1
420,-1,540.037,143.57,26.34,63.958,0.513662,-1,-1,-1
421,-1,287.099,185.161,41.926,105.355,0.987747,-1,-1,-1
421,-1,546.013,143.379,31.39,60.706,0.975434,-1,-1,-1
422,-1,287.347,192.983,43.052,99.677,0.986862,-1,-1,-1
422,-1,546.099,146.054,31.069,61.907,0.983838,-1,-1,-1
422,-1,743.532,285.403,23.468,102.577,0.601215,-1,-1,-1
423,-1,287.062,187.037,44.438,106.168,0.986271,-1,-1,-1
423,-1,540.208,155.703,38.026,54.903,0.980053,-1,-1,-1
423,-1,740.777,272.179,26.223,124.755,0.951039,-1,-1,-1
424,-1,729.951,269.594,31.874,101.832,0.990766,-1,-1,-1
424,-1,533.642,150.381,36.485,60.727,0.989482,-1,-1,-1
424,-1,287.074,187.524,44.339,104.455,0.985923,-1,-1,-1
425,-1,289.557,191.873,41.444,98.532,0.99059,-1,-1,-1
425,-1,726.387,271.371,33.988,109.368,0.986733,-1,-1,-1
425,-1,526.893,145.078,37.102,65.635,0.981008,-1,-1,-1
426,-1,710.301,280.137,40.607,92.212,0.995511,-1,-1,-1
426,-1,287.86,188.17,41.776,95.399,0.990713,-1,-1,-1
426,-1,522.119,148.086,47.173,74.767,0.969986,-1,-1,-1
427,-1,706.628,279.952,40.3,89.797,0.994898,-1,-1,-1
427,-1,284.617,185.397,43.866,95.917,0.985279,-1,-1,-1
427,-1,529.426,146.857,35.28,73.524,0.983622,-1,-1,-1
428,-1,698.061,264.337,47.95,114.984,0.990292,-1,-1,-1
428,-1,286.204,187.329,42.148,95.656,0.983988,-1,-1,-1
428,-1,527.102,146.974,31.6,69.566,0.970486,-1,-1,-1
429,-1,696.401,272.746,37.231,103.621,0.990984,-1,-1,-1
429,-1,288.546,194.285,39.947,92.352,0.989419,-1,-1,-1
429,-1,523.561,154.987,31.429,67.099,0.979581,-1,-1,-1
430,-1,292.812,202.161,37.558,90.636,0.991532,-1,-1,-1
430,-1,687.046,281.623,35.519,93.054,0.988413,-1,-1,-1
430,-1,522.96,152.914,30.351,64.493,0.97943,-1,-1,-1
431,-1,683.121,276.981,36.899,97.462,0.99358,-1,-1,-1
431,-1,289.352,203.775,38.558,88.708,0.990905,-1,-1,-1
431,-1,518.57,153.389,30.476,58.67,0.9808,-1,-1,-1
431,-1,534.826,155.346,33.223,65.531,0.60636,-1,-1,-1
432,-1,678.177,267.395,48.132,106.423,0.991898,-1,-1,-1
432,-1,286.684,202.506,40.648,87.178,0.991426,-1,-1,-1
432,-1,514.443,162.496,39.333,58.634,0.984533,-1,-1,-1
433,-1,286.628,190.132,40.843,98.22,0.992522,-1,-1,-1
433,-1,668.222,267.475,35.074,88.066,0.988554,-1,-1,-1
433,-1,514.246,162.367,31.807,62.159,0.984398,-1,-1,-1
434,-1,655.215,260.848,49.83,99.114,0.992412,-1,-1,-1
434,-1,288.109,193.51,39.889,94.828,0.991919,-1,-1,-1
434,-1,504.473,158.112,43.711,74.27,0.956657,-1,-1,-1
435,-1,289.103,196.632,40.13,95.435,0.992989,-1,-1,-1
435,-1,510.649,158.693,33.273,65.853,0.986613,-1,-1,-1
435,-1,654.656,272.077,35.917,88.123,0.986574,-1,-1,-1
436,-1,645.915,258.565,46.363,105.208,0.995496,-1,-1,-1
436,-1,289.89,195.902,39.808,94.602,0.992318,-1,-1,-1
436,-1,509.812,164.629,34.445,63.207,0.980325,-1,-1,-1
437,-1,289.254,192.035,40.434,96.778,0.99299,-1,-1,-1
437,-1,635.169,261.293,38.813,89.728,0.989265,-1,-1,-1
437,-1,499.702,165.009,36.74,71.735,0.984433,-1,-1,-1
438,-1,633.774,260.971,39.756,99.77,0.993183,-1,-1,-1
438,-1,289.981,188.735,40.451,100.024,0.990393,-1,-1,-1
438,-1,503.95,166.046,36.334,68.034,0.979001,-1,-1,-1
439,-1,633.448,262.609,33.951,97.387,0.994416,-1,-1,-1
439,-1,289.754,194.738,41.012,97.356,0.992534,-1,-1,-1
439,-1,500.857,172.375,32.451,62.237,0.977176,-1,-1,-1
440,-1,621.828,262.441,40.588,96.003,0.990245,-1,-1,-1
440,-1,290.072,207.24,34.625,71.685,0.986306,-1,-1,-1
440,-1,489.915,167.61,38.034,71.105,0.97978,-1,-1,-1
441,-1,291.256,191.592,39.605,98.636,0.989835,-1,-1,-1
441,-1,611.281,253.186,44.264,103.975,0.988321,-1,-1,-1
441,-1,490.457,168.555,34.493,63.397,0.982374,-1,-1,-1
442,-1,493.741,173.494,31.975,65.901,0.98767,-1,-1,-1
442,-1,289.545,199.53,42.825,85.608,0.985149,-1,-1,-1
442,-1,600.88,250.559,54.052,103.581,0.979846,-1,-1,-1
443,-1,596.59,249.246,44.274,99.154,0.995663,-1,-1,-1
443,-1,493.479,166.421,35.623,71.877,0.98813,-1,-1,-1
443,-1,290.635,201.533,38.597,76.422,0.983886,-1,-1,-1
444,-1,592.543,256.868,32.302,83.541,0.994677,-1,-1,-1
444,-1,482.603,168.89,43.687,79.181,0.991204,-1,-1,-1
444,-1,294.175,192.607,32.534,96.182,0.980684,-1,-1,-1
445,-1,588.716,253.096,32.488,87.683,0.99403,-1,-1,-1
445,-1,491.273,172.578,36.343,74.286,0.986502,-1,-1,-1
445,-1,294.504,194.015,33.076,94.896,0.986049,-1,-1,-1
446,-1,297.298,202.835,33.675,85.164,0.985659,-1,-1,-1
446,-1,485.994,173.89,36.56,71.602,0.98416,-1,-1,-1
446,-1,584.952,247.448,36.289,90.983,0.97854,-1,-1,-1
447,-1,576.642,242.35,36.073,89.711,0.993928,-1,-1,-1
447,-1,294.565,197.636,33.697,86.92,0.984842,-1,-1,-1
447,-1,484.721,172.235,37.867,72.908,0.984257,-1,-1,-1
448,-1,576.221,253.446,32.463,89.135,0.994991,-1,-1,-1
448,-1,301.865,210.3,31.166,79.479,0.988028,-1,-1,-1
448,-1,490.873,168.146,38.362,76.937,0.980512,-1,-1,-1
449,-1,571.819,241.543,35.73,98.721,0.994294,-1,-1,-1
449,-1,473.919,174.347,56.107,88.39,0.993186,-1,-1,-1
449,-1,301.797,205.537,35.198,86.926,0.988595,-1,-1,-1
450,-1,302.46,204.408,43.096,79.832,0.987461,-1,-1,-1
450,-1,565.668,244.365,38.107,86.899,0.98627,-1,-1,-1
450,-1,477.26,175.507,45.092,85.811,0.967597,-1,-1,-1
451,-1,549.293,240.431,55.899,99.201,0.994924,-1,-1,-1
451,-1,306.904,204.902,38.819,85.429,0.991329,-1,-1,-1
451,-1,480.053,173.446,48.209,83.456,0.978932,-1,-1,-1
452,-1,556.27,246.184,34.927,90.545,0.993125,-1,-1,-1
452,-1,307.767,210.565,37.271,75.682,0.987171,-1,-1,-1
452,-1,480.585,182.107,47.152,77.087,0.980309,-1,-1,-1
453,-1,554.112,249.281,35.124,91.656,0.990127,-1,-1,-1
453,-1,484.047,177.716,32.537,77.021,0.985489,-1,-1,-1
453,-1,309.538,203.734,40.129,87.489,0.983692,-1,-1,-1
453,-1,504.696,191.968,23.658,69.528,0.650801,-1,-1,-1
454,-1,539.331,236.499,46.009,94.838,0.984906,-1,-1,-1
454,-1,488.383,192.703,40.192,68.021,0.983718,-1,-1,-1
454,-1,315.768,207.755,41.573,87.102,0.976974,-1,-1,-1
455,-1,534.517,229.718,46.027,88.419,0.988005,-1,-1,-1
455,-1,486.583,187.562,34.034,72.851,0.983686,-1,-1,-1
455,-1,320.866,209.52,38.677,77.234,0.977036,-1,-1,-1
456,-1,533.227,232.066,40.403,88.83,0.991161,-1,-1,-1
456,-1,490.135,193.124,29.421,73.687,0.980253,-1,-1,-1
456,-1,321.44,205.303,39.474,71.303,0.96635,-1,-1,-1
457,-1,528.816,233.534,37.476,90.919,0.993707,-1,-1,-1
457,-1,330.482,209.094,38.004,81.558,0.987301,-1,-1,-1
457,-1,491.205,203.525,40.506,72.55,0.975059,-1,-1,-1
458,-1,332.703,221.273,38.676,71.554,0.986407,-1,-1,-1
458,-1,529.598,227.364,34.174,93.993,0.98417,-1,-1,-1
458,-1,493.974,198.894,29.946,70.679,0.973231,-1,-1,-1
459,-1,336.525,214.358,37.466,77.66,0.99363,-1,-1,-1
459,-1,520.909,218.67,34.243,96.021,0.957936,-1,-1,-1
459,-1,496.384,200.937,33.251,73.138,0.957258,-1,-1,-1
460,-1,340.196,212.931,37.111,80.694,0.991087,-1,-1,-1
460,-1,509.977,211.125,39.795,102.376,0.981392,-1,-1,-1
461,-1,511.5,214.58,38.299,104.136,0.99282,-1,-1,-1
461,-1,343.922,213.836,40.417,79.949,0.990936,-1,-1,-1
462,-1,500.917,209.105,36.318,107.159,0.991553,-1,-1,-1
462,-1,352.338,211.827,35.123,80.921,0.991516,-1,-1,-1
462,-1,744.162,290.987,22.838,163.115,0.821606,-1,-1,-1
463,-1,355.48,209.687,41.529,88.839,0.994266,-1,-1,-1
463,-1,500.612,218.365,35.628,87.692,0.986548,-1,-1,-1
463,-1,727.194,301.424,39.806,156.657,0.935046,-1,-1,-1
463,-1,523.419,215.611,33.883,82.238,0.903139,-1,-1,-1
464,-1,363.147,206.302,42.415,99.449,0.990495,-1,-1,-1
464,-1,720.46,314.638,45.117,136.965,0.977292,-1,-1,-1
464,-1,493.68,218.591,37.282,89.943,0.952625,-1,-1,-1
464,-1,525.071,213.726,28.147,76.965,0.905157,-1,-1,-1
465,-1,364.829,213.25,45.927,92.64,0.989486,-1,-1,-1
465,-1,725.078,306.159,36.319,134.401,0.975441,-1,-1,-1
465,-1,523.495,221.31,28.791,67.958,0.966358,-1,-1,-1
465,-1,496.928,221.893,36.652,88.349,0.959758,-1,-1,-1
466,-1,371.048,211.617,44.225,96.947,0.993558,-1,-1,-1
466,-1,701.489,307.079,49.28,124.276,0.992081,-1,-1,-1
466,-1,520.472,217.332,40.008,86.025,0.981112,-1,-1,-1
466,-1,479.271,220.391,27.167,78.55,0.965801,-1,-1,-1
466,-1,493.957,228.581,29.837,78.314,0.636496,-1,-1,-1
467,-1,703.252,308.638,48.235,118.925,0.985761,-1,-1,-1
467,-1,373.219,209.777,47.521,97.804,0.984456,-1,-1,-1
467,-1,527.807,217.266,35.416,79.955,0.984248,-1,-1,-1
467,-1,480.584,212.62,33.91,86.226,0.972139,-1,-1,-1
468,-1,689.587,301.945,50.076,128.713,0.993789,-1,-1,-1
468,-1,518.58,218.906,49.212,92.249,0.988444,-1,-1,-1
468,-1,380.413,209.046,38.834,96.61,0.984,-1,-1,-1
468,-1,469.703,218.421,33.421,77.789,0.958919,-1,-1,-1
469,-1,456.545,206.636,36.347,101.224,0.988319,-1,-1,-1
469,-1,391.267,218.473,38.986,92.66,0.987462,-1,-1,-1
469,-1,527.759,219.96,41.666,81.938,0.986624,-1,-1,-1
469,-1,681.383,293.645,44.303,128.141,0.976907,-1,-1,-1
470,-1,666.625,293.89,60.347,133.828,0.994367,-1,-1,-1
470,-1,533.084,221.947,44.6,96.384,0.990588,-1,-1,-1
470,-1,460.694,220.283,31.694,83.272,0.980839,-1,-1,-1
470,-1,399.008,197.015,37.162,123.765,0.909248,-1,-1,-1
471,-1,665.601,288.744,50.393,130.615,0.993431,-1,-1,-1
471,-1,542.788,221.237,35.776,96.474,0.989885,-1,-1,-1
471,-1,446.687,209.792,36.996,100.471,0.983017,-1,-1,-1
471,-1,397.8,193.653,47.315,124.554,0.98251,-1,-1,-1
472,-1,663.956,289.441,48.745,134.266,0.996312,-1,-1,-1
472,-1,538.415,221.721,39.918,94.764,0.992184,-1,-1,-1
472,-1,452.475,210.74,33.366,86.899,0.972701,-1,-1,-1
472,-1,402.283,186.65,53.634,130.299,0.814664,-1,-1,-1
473,-1,652.845,284.979,42.783,125.337,0.989983,-1,-1,-1
473,-1,437.12,213.224,33.663,79.736,0.989873,-1,-1,-1
473,-1,539.266,223.228,49.005,96.946,0.987566,-1,-1,-1
474,-1,646.651,283.506,44.661,126.786,0.993453,-1,-1,-1
474,-1,424.319,202.78,46.624,113.683,0.993017,-1,-1,-1
474,-1,541.689,230.339,53.984,88.509,0.979782,-1,-1,-1
475,-1,648.94,274.459,45.679,131.573,0.99184,-1,-1,-1
475,-1,545.467,241.221,44.652,86.588,0.968525,-1,-1,-1
475,-1,429.617,190.069,35.681,134.726,0.958267,-1,-1,-1
476,-1,557.618,237.621,38.078,84.255,0.992167,-1,-1,-1
476,-1,639.996,274.075,46.54,132.158,0.985795,-1,-1,-1
476,-1,427.539,213.884,39.063,102.508,0.971102,-1,-1,-1
477,-1,632.7,276.217,50.039,120.6,0.994418,-1,-1,-1
477,-1,547.743,229.083,52.223,109.887,0.990778,-1,-1,-1
477,-1,425.925,206.653,44.243,113.978,0.989217,-1,-1,-1
478,-1,612.728,276.977,60.791,126.915,0.991295,-1,-1,-1
478,-1,563.575,242.622,43.856,98.456,0.987081,-1,-1,-1
478,-1,444.18,226.067,38.978,102.386,0.981506,-1,-1,-1
479,-1,614.384,269.349,55.335,134.431,0.995151,-1,-1,-1
479,-1,446.376,233.724,41.385,99.041,0.991465,-1,-1,-1
479,-1,563.266,248.042,38.157,95.375,0.984433,-1,-1,-1
480,-1,611.011,264.912,42.984,139.469,0.993668,-1,-1,-1
480,-1,453.469,223.193,42.643,111.589,0.98706,-1,-1,-1
480,-1,565.643,236.646,45.263,99.992,0.982064,-1,-1,-1
481,-1,572.144,253.805,34.422,96.335,0.976762,-1,-1,-1
481,-1,462.872,238.31,43.789,103.556,0.971389,-1,-1,-1
481,-1,609.972,279.192,39.368,107.309,0.971236,-1,-1,-1
481,-1,404.804,190.053,35.275,101.344,0.822634,-1,-1,-1
482,-1,461.306,238.635,45.924,101.811,0.98458,-1,-1,-1
482,-1,581.415,253.464,45.87,117.904,0.949839,-1,-1,-1
482,-1,400.272,207.308,37.776,76.724,0.873783,-1,-1,-1
482,-1,611.185,255.879,34.328,133.679,0.668771,-1,-1,-1
483,-1,590.419,252.867,48.895,126.451,0.988124,-1,-1,-1
483,-1,468.615,233.094,43.356,112.496,0.965083,-1,-1,-1
483,-1,395.895,193.75,34.267,82.124,0.94126,-1,-1,-1
484,-1,590.983,252.622,42.22,127.835,0.989752,-1,-1,-1
484,-1,388.166,196.997,33.252,81.502,0.98554,-1,-1,-1
484,-1,479.142,241.234,33.057,108.629,0.962082,-1,-1,-1
485,-1,590.084,256.365,47.795,127.145,0.99125,-1,-1,-1
485,-1,378.829,199.635,39.887,82.22,0.986005,-1,-1,-1
485,-1,480.899,232.48,37.68,124.886,0.976048,-1,-1,-1
486,-1,577.519,246.46,52.378,124.545,0.985763,-1,-1,-1
486,-1,369.082,200.554,48.117,86.82,0.983501,-1,-1,-1
486,-1,487.77,237.473,36.926,124.54,0.941535,-1,-1,-1
487,-1,574.386,253.716,61.539,127.342,0.990135,-1,-1,-1
487,-1,365.478,193.882,51.017,91.884,0.989343,-1,-1,-1
487,-1,492.103,238.04,38.945,121.299,0.939238,-1,-1,-1
488,-1,367.897,203.304,27.5,73.618,0.986078,-1,-1,-1
488,-1,491.755,249.386,50.383,120.322,0.9857,-1,-1,-1
488,-1,594.624,262.04,45.975,92.87,0.964436,-1,-1,-1
488,-1,577.9,259.326,34.906,105.877,0.877108,-1,-1,-1
489,-1,369.509,184.651,34.138,84.684,0.988298,-1,-1,-1
489,-1,608.02,265.008,34.58,90.86,0.982425,-1,-1,-1
489,-1,499.192,248.061,46.115,116.391,0.972469,-1,-1,-1
489,-1,575.516,258.158,34.005,108.034,0.887757,-1,-1,-1
490,-1,620.901,251.698,35.42,118.337,0.986926,-1,-1,-1
490,-1,348.743,186.675,48.981,94.064,0.985728,-1,-1,-1
490,-1,507.222,248.948,42.506,113.185,0.982988,-1,-1,-1
490,-1,562.452,250.424,53.37,107.235,0.982056,-1,-1,-1
491,-1,348.271,190.81,45.798,92.7,0.988894,-1,-1,-1
491,-1,562.606,248.768,51.326,113.964,0.98564,-1,-1,-1
491,-1,613.561,266.134,34.669,97.654,0.981991,-1,-1,-1
491,-1,514.834,262.782,41.037,94.219,0.978104,-1,-1,-1
492,-1,613.249,257.502,42.116,119.011,0.989668,-1,-1,-1
492,-1,349.973,187.474,40.569,71.15,0.985867,-1,-1,-1
492,-1,569.124,240.539,33.617,124.893,0.980081,-1,-1,-1
492,-1,514.977,255.135,36.037,106.709,0.966156,-1,-1,-1
493,-1,519.11,256.155,34.877,112.649,0.983875,-1,-1,-1
493,-1,616.711,259.182,39.051,102.086,0.979851,-1,-1,-1
493,-1,571.802,252.981,40.568,110.542,0.974083,-1,-1,-1
493,-1,352.352,184.991,33.715,81.249,0.970293,-1,-1,-1
494,-1,343.538,193.72,40.38,84.312,0.990932,-1,-1,-1
494,-1,612.992,255.811,39.519,120.621,0.989837,-1,-1,-1
494,-1,527.625,259.243,37.971,109.064,0.972602,-1,-1,-1
494,-1,569.162,253.225,31.012,117.181,0.926562,-1,-1,-1
494,-1,552.927,262.15,30.561,103.279,0.606279,-1,-1,-1
495,-1,611.866,251.952,39.042,126.973,0.990195,-1,-1,-1
495,-1,336.725,186.799,33.607,76.493,0.9854,-1,-1,-1
495,-1,527.207,259.651,56.279,111.378,0.965595,-1,-1,-1
495,-1,568.155,262.668,26.415,93.976,0.940636,-1,-1,-1
496,-1,608.097,255.927,53.789,119.552,0.987092,-1,-1,-1
496,-1,538.593,259.832,40.487,107.101,0.978296,-1,-1,-1
496,-1,341.14,183.018,31.44,82.078,0.974657,-1,-1,-1
496,-1,566.039,251.149,33.853,117.658,0.901798,-1,-1,-1
497,-1,605.419,256.381,39.315,110.613,0.99143,-1,-1,-1
497,-1,322.948,188.525,32.064,76.578,0.985978,-1,-1,-1
497,-1,546.595,249.18,44.44,128.41,0.984465,-1,-1,-1
498,-1,606.76,259.298,45.417,116.407,0.989222,-1,-1,-1
498,-1,319.371,187.783,31.531,71.765,0.989074,-1,-1,-1
498,-1,555.15,246.275,41.801,130.577,0.981854,-1,-1,-1
499,-1,312.451,181.44,35.293,75.989,0.993662,-1,-1,-1
499,-1,608.033,274.545,46.127,99.404,0.985218,-1,-1,-1
499,-1,555.727,248.084,46.083,124.263,0.978345,-1,-1,-1
500,-1,607.457,274.034,41.911,102.657,0.988256,-1,-1,-1
500,-1,311.323,189.733,34.705,73.782,0.985563,-1,-1,-1
500,-1,561.73,251.643,39.793,140.582,0.954412,-1,-1,-1
501,-1,301.861,180.711,39.791,77.171,0.989036,-1,-1,-1
501,-1,608.345,273.799,41.071,105.926,0.986142,-1,-1,-1
501,-1,572.026,278.219,36.017,109.762,0.958952,-1,-1,-1
502,-1,292.075,192.041,47.46,61.975,0.989872,-1,-1,-1
502,-1,612.345,279.289,32.829,94.575,0.985692,-1,-1,-1
502,-1,576.375,281.236,29.757,99.723,0.935181,-1,-1,-1
502,-1,555.776,229.322,43.663,115.119,0.675794,-1,-1,-1
503,-1,296.965,175.804,37.458,80.076,0.997178,-1,-1,-1
503,-1,610.885,280.108,39.624,99.652,0.979003,-1,-1,-1
503,-1,555.126,231.122,37.31,135.78,0.966061,-1,-1,-1
503,-1,581.865,285.894,33.47,94.521,0.943615,-1,-1,-1
504,-1,286.714,186.326,33.728,69.85,0.992519,-1,-1,-1
504,-1,551.653,222.955,42.189,126.137,0.984837,-1,-1,-1
504,-1,594.465,274.027,49.089,123.707,0.97095,-1,-1,-1
504,-1,740.301,225.279,26.699,114.908,0.9416,-1,-1,-1
504,-1,718.535,461.167,48.465,113.833,0.935486,-1,-1,-1
505,-1,593.065,274.566,48.762,124.688,0.993849,-1,-1,-1
505,-1,284.559,184.629,40.586,72.66,0.992719,-1,-1,-1
505,-1,550.349,224.353,43.235,117.054,0.98958,-1,-1,-1
505,-1,727.067,441.63,39.933,133.37,0.933263,-1,-1,-1
505,-1,731.652,231.893,35.348,102.646,0.919549,-1,-1,-1
506,-1,594.866,277.712,54.139,134.918,0.992506,-1,-1,-1
506,-1,549.963,224.429,40.367,114.425,0.991511,-1,-1,-1
506,-1,720.046,436.81,46.954,138.19,0.9784,-1,-1,-1
506,-1,284.783,190.719,27.799,68.783,0.974458,-1,-1,-1
506,-1,732.196,224.706,34.804,99.844,0.958907,-1,-1,-1
507,-1,603.723,276.465,50.72,125.251,0.993254,-1,-1,-1
507,-1,276.358,185.613,30.854,74.698,0.992305,-1,-1,-1
507,-1,544.847,230.874,41.166,106.507,0.990643,-1,-1,-1
507,-1,726.998,228.935,35.558,106.537,0.984576,-1,-1,-1
507,-1,704.704,450.904,61.819,124.096,0.979521,-1,-1,-1
508,-1,614.621,278.847,53.486,134.748,0.99422,-1,-1,-1
508,-1,669.714,440.163,95.457,134.837,0.992705,-1,-1,-1
508,-1,546.554,218.346,37.3,114.004,0.992214,-1,-1,-1
508,-1,270.079,188.745,30.336,70.658,0.990764,-1,-1,-1
508,-1,717.588,225.65,40.906,98.757,0.984464,-1,-1,-1
509,-1,647.146,445.063,113.597,129.937,0.990124,-1,-1,-1
509,-1,540.215,219.97,37.315,119.85,0.988129,-1,-1,-1
509,-1,714.914,233.187,42.894,90.232,0.986594,-1,-1,-1
509,-1,267.001,191.486,32.75,67.767,0.982849,-1,-1,-1
509,-1,615.638,287.103,54.078,125.114,0.957176,-1,-1,-1
510,-1,269.76,182.349,30.045,69.364,0.990292,-1,-1,-1
510,-1,530.588,217.801,36.998,111.773,0.988384,-1,-1,-1
510,-1,709.387,221.718,39.677,109.606,0.986693,-1,-1,-1
510,-1,606.891,266.44,43.039,104.516,0.976103,-1,-1,-1
510,-1,657.747,438.869,57.715,127.241,0.962321,-1,-1,-1
510,-1,643.152,304.631,45.782,120.822,0.954298,-1,-1,-1
511,-1,529.387,214.903,41.54,110.078,0.989282,-1,-1,-1
511,-1,258.466,189.711,28.609,70.358,0.987833,-1,-1,-1
511,-1,610.575,271.151,39.539,98.34,0.985447,-1,-1,-1
511,-1,709.204,222.677,34.757,98.953,0.984961,-1,-1,-1
511,-1,645.63,304.989,42.237,109.647,0.983775,-1,-1,-1
511,-1,646.195,439.999,55.643,127.475,0.982092,-1,-1,-1
512,-1,525.296,210.924,39.567,109.626,0.994655,-1,-1,-1
512,-1,652.919,297.394,46.945,126.044,0.992096,-1,-1,-1
512,-1,703.533,212.89,43.858,102.028,0.987494,-1,-1,-1
512,-1,608.604,269.431,44.473,98.566,0.984637,-1,-1,-1
512,-1,638.309,436.074,62.905,136.243,0.982622,-1,-1,-1
512,-1,253.881,188.268,34.95,70.765,0.982605,-1,-1,-1
513,-1,663.336,302.639,50.35,125.297,0.994136,-1,-1,-1
513,-1,528.695,210.226,37.523,115.879,0.992187,-1,-1,-1
513,-1,701.638,218.711,39.698,103.14,0.98697,-1,-1,-1
513,-1,610.538,268.312,44.644,98.281,0.985908,-1,-1,-1
513,-1,620.365,439.227,71.2,135.773,0.983497,-1,-1,-1
513,-1,250.126,182.765,35.946,79.885,0.982537,-1,-1,-1
514,-1,591.72,435.791,86.065,139.209,0.992491,-1,-1,-1
514,-1,518.199,217.63,34.078,96.382,0.985616,-1,-1,-1
514,-1,246.298,177.682,37.238,67.382,0.982749,-1,-1,-1
514,-1,609.064,267.177,41.269,101.453,0.982685,-1,-1,-1
514,-1,664.486,303.253,56.802,134.077,0.979274,-1,-1,-1
514,-1,698.5,214.082,40.085,100.683,0.979059,-1,-1,-1
515,-1,575.478,432.476,93.9,142.524,0.995807,-1,-1,-1
515,-1,513.837,210.249,36.825,110.777,0.990488,-1,-1,-1
515,-1,606.937,267.584,39.745,101.031,0.987275,-1,-1,-1
515,-1,684.699,302.85,47.371,126.087,0.985711,-1,-1,-1
515,-1,248.672,179.748,28.698,63.39,0.984186,-1,-1,-1
515,-1,683.553,205.123,38.906,104.725,0.97402,-1,-1,-1
516,-1,576.816,431.196,83.091,143.804,0.992558,-1,-1,-1
516,-1,608.328,264.03,46.954,111.892,0.991432,-1,-1,-1
516,-1,509.021,200.894,39.423,113.984,0.990464,-1,-1,-1
516,-1,683.821,314.28,51.581,125.279,0.989311,-1,-1,-1
516,-1,689.301,208.483,37.135,102.95,0.981184,-1,-1,-1
516,-1,246.186,178.179,25.826,63.693,0.963746,-1,-1,-1
517,-1,548.766,425.687,83.27,149.313,0.996226,-1,-1,-1
517,-1,615.285,269.505,38.595,100.04,0.991293,-1,-1,-1
517,-1,500.583,208.817,39.672,103.944,0.990328,-1,-1,-1
517,-1,699.882,323.448,50.125,119.852,0.987413,-1,-1,-1
517,-1,671.306,199.165,50.939,105.919,0.986266,-1,-1,-1
517,-1,236.015,179.707,27.944,79.168,0.973936,-1,-1,-1
518,-1,524.103,424.202,101.777,147.717,0.996424,-1,-1,-1
518,-1,501.525,213.854,37.198,85.232,0.99231,-1,-1,-1
518,-1,619.983,273.561,36.078,88.782,0.992267,-1,-1,-1
518,-1,673.863,221.016,37.141,85.997,0.992016,-1,-1,-1
518,-1,235.628,177.134,33.152,76.58,0.991183,-1,-1,-1
518,-1,708.316,313.147,50.051,122.453,0.985032,-1,-1,-1
519,-1,521.162,431.546,91.777,130.625,0.995078,-1,-1,-1
519,-1,608.296,269.147,49.582,105.964,0.992311,-1,-1,-1
519,-1,667.003,211.938,40.84,94.346,0.991496,-1,-1,-1
519,-1,487.739,201.062,55.119,112.637,0.990976,-1,-1,-1
519,-1,227.316,179.125,30.253,69.805,0.990782,-1,-1,-1
519,-1,714.235,312.378,48.98,127.669,0.989606,-1,-1,-1
520,-1,509.497,421.632,63.49,153.368,0.99746,-1,-1,-1
520,-1,611.013,267.857,48.752,94.463,0.99355,-1,-1,-1
520,-1,491.233,195.872,40.619,106.668,0.991083,-1,-1,-1
520,-1,217.452,175.326,46.817,77.507,0.981793,-1,-1,-1
520,-1,664.937,190.823,40.216,111.57,0.978348,-1,-1,-1
520,-1,721.222,314.68,45.778,140.323,0.966704,-1,-1,-1
521,-1,487.213,203.662,38.365,100.127,0.992974,-1,-1,-1
521,-1,622.112,267.029,41.325,103.843,0.992414,-1,-1,-1
521,-1,495.808,408.29,59.111,162.286,0.991976,-1,-1,-1
521,-1,212.701,176.161,49.598,77.036,0.985235,-1,-1,-1
521,-1,661.443,197.161,38.694,104.043,0.968646,-1,-1,-1
521,-1,734.228,300.544,32.772,161.58,0.919245,-1,-1,-1
522,-1,485.229,405.245,57.615,169.755,0.997597,-1,-1,-1
522,-1,485.111,202.632,35.467,98.588,0.992856,-1,-1,-1
522,-1,623.926,267.848,41.647,95.918,0.990088,-1,-1,-1
522,-1,213.319,175.726,28.384,66.729,0.974144,-1,-1,-1
522,-1,658.34,204.586,33.003,89.63,0.957096,-1,-1,-1
523,-1,454.36,411.379,88.453,163.621,0.997174,-1,-1,-1
523,-1,481.407,196.751,34.349,98.482,0.992147,-1,-1,-1
523,-1,214.802,177.187,29.741,79.038,0.976026,-1,-1,-1
523,-1,624.471,257.081,42.856,116.439,0.973477,-1,-1,-1
523,-1,652.562,203.073,34.837,95.549,0.95928,-1,-1,-1
524,-1,439.105,410.533,86.15,164.467,0.997698,-1,-1,-1
524,-1,480.395,195.305,34.893,92.832,0.986016,-1,-1,-1
524,-1,633.201,209.402,41.491,157.043,0.984123,-1,-1,-1
524,-1,212.598,174.421,28.971,69.101,0.975738,-1,-1,-1
525,-1,438.053,413.129,64.447,159.454,0.998383,-1,-1,-1
525,-1,477.484,198.111,35.011,88.988,0.990283,-1,-1,-1
525,-1,632.914,202.137,44.356,173.834,0.982745,-1,-1,-1
525,-1,207.194,175.971,29.741,63.478,0.975669,-1,-1,-1
526,-1,429.13,399.031,51.667,156.572,0.993057,-1,-1,-1
526,-1,472.339,192.552,41.408,92.82,0.988829,-1,-1,-1
526,-1,203.247,184.406,26.507,67.773,0.954519,-1,-1,-1
526,-1,625.204,195.536,48.457,195.803,0.83724,-1,-1,-1
527,-1,409.523,405.818,68.112,158.501,0.996339,-1,-1,-1
527,-1,459.128,199.233,53.673,97.698,0.988281,-1,-1,-1
527,-1,198.531,182.78,26.125,67.708,0.965923,-1,-1,-1
527,-1,629.388,203.174,38.562,173.671,0.916233,-1,-1,-1
528,-1,368.11,402.555,107.763,166.1,0.99816,-1,-1,-1
528,-1,466.535,202.304,37.761,87.423,0.992594,-1,-1,-1
528,-1,623.797,226.374,47.899,147.707,0.984506,-1,-1,-1
528,-1,198.17,174.726,29.723,63.814,0.978976,-1,-1,-1
529,-1,364.811,402.21,97.081,151.45,0.998119,-1,-1,-1
529,-1,467.68,196.306,40.923,84.33,0.991977,-1,-1,-1
529,-1,633.358,240.439,46.193,124.662,0.985178,-1,-1,-1
529,-1,197.813,176.878,30.426,62.999,0.947595,-1,-1,-1
529,-1,625.56,191.492,40.823,117.095,0.531493,-1,-1,-1
530,-1,363.028,398.701,75.707,160.316,0.995326,-1,-1,-1
530,-1,624.08,255.888,46.881,119.501,0.991596,-1,-1,-1
530,-1,457.446,187.4,41.991,97.563,0.988613,-1,-1,-1
530,-1,193.884,176.365,31.849,71.213,0.954327,-1,-1,-1
530,-1,622.636,198.622,36.708,87.583,0.619608,-1,-1,-1
531,-1,346.792,391.114,70.264,162.812,0.996078,-1,-1,-1
531,-1,624.222,259.589,49.543,111.037,0.99279,-1,-1,-1
531,-1,456.142,190.298,37.457,84.234,0.991778,-1,-1,-1
531,-1,618.155,194.672,33.29,93.03,0.96822,-1,-1,-1
531,-1,180.598,172.271,33.888,65.125,0.964902,-1,-1,-1
532,-1,453.973,192.124,37.107,87.316,0.995655,-1,-1,-1
532,-1,330.238,389.312,75.567,152.703,0.9944,-1,-1,-1
532,-1,624.425,267.519,47.807,103.764,0.992985,-1,-1,-1
532,-1,180.065,169.146,35.583,69.855,0.98283,-1,-1,-1
532,-1,615.823,196.005,41.522,74.061,0.959691,-1,-1,-1
533,-1,451.242,178.26,39.113,102.987,0.995967,-1,-1,-1
533,-1,314.688,401.316,100.516,147.905,0.993232,-1,-1,-1
533,-1,623.539,271.491,49.763,101.26,0.991059,-1,-1,-1
533,-1,179.806,167.728,31.602,67.381,0.969534,-1,-1,-1
533,-1,615.406,192.284,40.76,89.76,0.96946,-1,-1,-1
534,-1,624.567,268.652,48.671,105.653,0.993034,-1,-1,-1
534,-1,448.413,180.492,36.701,102.29,0.992858,-1,-1,-1
534,-1,322.883,399.893,70.334,147.506,0.985693,-1,-1,-1
534,-1,616.679,190.844,36.769,81.99,0.981974,-1,-1,-1
534,-1,175.607,173.473,35.21,66.054,0.966241,-1,-1,-1
535,-1,442.338,185.249,47.261,90.953,0.994462,-1,-1,-1
535,-1,624.885,270.97,47.855,99.147,0.993016,-1,-1,-1
535,-1,609.131,178.205,41.452,87.96,0.980957,-1,-1,-1
535,-1,167.053,176.175,29.261,60.721,0.976177,-1,-1,-1
535,-1,298.865,391.239,89.354,143.403,0.975536,-1,-1,-1
536,-1,271.201,389.726,81.78,143.8,0.990614,-1,-1,-1
536,-1,627.45,260.193,51.661,118.427,0.98988,-1,-1,-1
536,-1,446.615,182.492,34.05,82.465,0.987635,-1,-1,-1
536,-1,608.816,182.904,37.325,86.366,0.987405,-1,-1,-1
536,-1,173.704,170.858,30.276,67.092,0.98561,-1,-1,-1
536,-1,322.841,387.774,44.524,117.829,0.9373,-1,-1,-1
537,-1,447.537,185.655,35.615,84.839,0.993529,-1,-1,-1
537,-1,275.957,382.157,58.313,150.913,0.991676,-1,-1,-1
537,-1,621.81,276.497,60.735,118.288,0.988875,-1,-1,-1
537,-1,172.044,163.631,30.706,71.709,0.984596,-1,-1,-1
537,-1,320.899,380.797,38.632,138.106,0.972558,-1,-1,-1
537,-1,604.86,177.867,46.074,87.015,0.96937,-1,-1,-1
538,-1,250.152,385.01,87.996,155.141,0.994463,-1,-1,-1
538,-1,632.193,262.977,48.182,127.126,0.992581,-1,-1,-1
538,-1,448.934,190.347,30.471,80.647,0.983401,-1,-1,-1
538,-1,308.388,382.669,49.001,152.182,0.977105,-1,-1,-1
538,-1,171.231,167.743,29.43,70.389,0.972279,-1,-1,-1
538,-1,610.335,182.867,38.007,80.313,0.955685,-1,-1,-1
539,-1,435.237,179.368,38.701,87.636,0.993872,-1,-1,-1
539,-1,279.924,386.644,78.56,131.448,0.991833,-1,-1,-1
539,-1,634.182,265.746,45.333,115.113,0.988059,-1,-1,-1
539,-1,604.931,179.884,38.126,74.72,0.985751,-1,-1,-1
539,-1,244.616,379.05,60.626,153.326,0.984273,-1,-1,-1
539,-1,152.738,171.112,35.111,68.827,0.97039,-1,-1,-1
540,-1,608.16,181.453,35.712,82.24,0.989457,-1,-1,-1
540,-1,636.745,273.365,43.049,112.441,0.988509,-1,-1,-1
540,-1,284.499,368.552,61.266,160.89,0.986758,-1,-1,-1
540,-1,241.001,368.006,50.349,163.354,0.982498,-1,-1,-1
540,-1,159.508,175.31,26.973,62.429,0.982233,-1,-1,-1
540,-1,428.438,173.507,39.561,96.649,0.950313,-1,-1,-1
541,-1,158.555,176.897,26.146,55.142,0.987685,-1,-1,-1
541,-1,607.282,175.619,30.593,76.64,0.986908,-1,-1,-1
541,-1,632.59,277.484,48.631,122.126,0.98673,-1,-1,-1
541,-1,284.655,382.553,53.335,137.833,0.985844,-1,-1,-1
541,-1,235.299,367.135,53.546,162.69,0.97864,-1,-1,-1
541,-1,434.184,182.429,31.464,83.381,0.923871,-1,-1,-1
542,-1,601.744,171.556,34.078,82.298,0.987904,-1,-1,-1
542,-1,281.936,373.437,46.263,152.737,0.987735,-1,-1,-1
542,-1,152.269,174.127,38.026,61.833,0.983441,-1,-1,-1
542,-1,228.054,375.771,54.813,145.684,0.982917,-1,-1,-1
542,-1,633.435,284.631,48.433,116.176,0.980592,-1,-1,-1
542,-1,426.884,168.548,40.922,94.74,0.974809,-1,-1,-1
543,-1,276.197,364.146,43.758,159.836,0.991445,-1,-1,-1
543,-1,626.149,282.428,62.939,122.554,0.989639,-1,-1,-1
543,-1,217.038,371.945,58.155,160.594,0.989618,-1,-1,-1
543,-1,600.094,168.904,32.425,84.212,0.984812,-1,-1,-1
543,-1,429.095,173.272,37.829,83.332,0.977491,-1,-1,-1
543,-1,152.123,167.987,27.082,64.145,0.970013,-1,-1,-1
544,-1,272.441,375.972,42.636,141.888,0.995394,-1,-1,-1
544,-1,623.614,285.752,68.52,110.149,0.991384,-1,-1,-1
544,-1,600.074,171.229,31.271,86.289,0.986374,-1,-1,-1
544,-1,210.614,375.323,53.341,146.292,0.981445,-1,-1,-1
544,-1,143.667,166.03,30.712,75.643,0.950182,-1,-1,-1
545,-1,266.911,377.681,45.639,139.632,0.994445,-1,-1,-1
545,-1,629.78,278.276,53.668,130.614,0.993805,-1,-1,-1
545,-1,191.772,374.644,65.799,146.611,0.992392,-1,-1,-1
545,-1,599.506,167.12,39.699,78.85,0.991964,-1,-1,-1
545,-1,145.107,165.727,30.093,63.674,0.980553,-1,-1,-1
546,-1,626.779,284.667,57.954,124.855,0.99472,-1,-1,-1
546,-1,597.741,173.547,36.693,72.27,0.993216,-1,-1,-1
546,-1,185.932,372.43,58.765,145.45,0.991766,-1,-1,-1
546,-1,146.778,165.871,27.879,63.745,0.988811,-1,-1,-1
546,-1,255.759,375.233,56.929,148.038,0.98596,-1,-1,-1
547,-1,599.057,178.603,33.981,71.579,0.99195,-1,-1,-1
547,-1,631.211,288.182,50.603,123.464,0.990086,-1,-1,-1
547,-1,174.193,366.916,66.558,158.396,0.98783,-1,-1,-1
547,-1,144.864,164.239,26.986,62.48,0.987215,-1,-1,-1
547,-1,253.627,368.492,51.953,149.707,0.971677,-1,-1,-1
548,-1,632.334,292.005,46.823,120.463,0.994033,-1,-1,-1
548,-1,248.958,372.608,47.458,138.727,0.993006,-1,-1,-1
548,-1,177.686,381.375,58.32,133.055,0.992655,-1,-1,-1
548,-1,596.791,170.363,33.205,74.044,0.989891,-1,-1,-1
548,-1,134.873,158.919,38.065,66.418,0.97772,-1,-1,-1
549,-1,237.478,367.555,58.931,147.923,0.996456,-1,-1,-1
549,-1,597.058,170.111,37.105,68.366,0.991368,-1,-1,-1
549,-1,626.008,293.745,53.197,118.905,0.991043,-1,-1,-1
549,-1,163.734,363.171,68.868,157.7,0.989937,-1,-1,-1
549,-1,128.784,171.137,29.261,60.533,0.972822,-1,-1,-1
550,-1,238.699,376.207,58.868,134.375,0.995318,-1,-1,-1
550,-1,626.335,297.943,54.729,118.083,0.991256,-1,-1,-1
550,-1,167.063,364.43,62.527,160.092,0.989175,-1,-1,-1
550,-1,594.54,172.5,34.495,73.095,0.984355,-1,-1,-1
550,-1,123.719,168.612,28.178,58.252,0.980312,-1,-1,-1
551,-1,233.67,378.068,59.655,135.21,0.99545,-1,-1,-1
551,-1,627.17,299.134,52.218,113.324,0.992653,-1,-1,-1
551,-1,172.211,363.775,53.345,153.675,0.991095,-1,-1,-1
551,-1,590.556,166.826,45.151,71.323,0.982402,-1,-1,-1
551,-1,118.457,164.287,31.213,62.097,0.975574,-1,-1,-1
552,-1,230.081,379.39,54.592,131.693,0.995631,-1,-1,-1
552,-1,629.227,296.212,48.372,126.333,0.994574,-1,-1,-1
552,-1,171.312,373.338,53.546,138.022,0.992224,-1,-1,-1
552,-1,593.03,166.75,41.339,69.997,0.989013,-1,-1,-1
552,-1,119.575,164.649,28.973,62.086,0.982081,-1,-1,-1
553,-1,221.877,365.394,58.548,152.538,0.99626,-1,-1,-1
553,-1,630.338,299.051,46.857,123.136,0.994188,-1,-1,-1
553,-1,161.767,359.637,61.361,157.261,0.993204,-1,-1,-1
553,-1,590.327,165.648,37.302,68.318,0.980927,-1,-1,-1
553,-1,113.654,168.674,24.761,59.093,0.967362,-1,-1,-1
554,-1,633.818,299.248,40.048,111.635,0.991957,-1,-1,-1
554,-1,160.151,348.113,57.924,167.265,0.991608,-1,-1,-1
554,-1,220.604,369.285,48.1,155.847,0.988731,-1,-1,-1
554,-1,114.599,175.206,21.265,53.266,0.983672,-1,-1,-1
554,-1,583.723,167.645,39.02,63.495,0.97219,-1,-1,-1
554,-1,393.21,147.02,41.705,78.457,0.751732,-1,-1,-1
555,-1,164.508,359.209,57.662,143.117,0.993113,-1,-1,-1
555,-1,634.22,298.52,40.205,110.942,0.992045,-1,-1,-1
555,-1,215.938,373.247,53.313,157.538,0.991592,-1,-1,-1
555,-1,582.526,167.71,31.366,59.629,0.989199,-1,-1,-1
555,-1,98.2634,165.113,34.0716,66.025,0.975891,-1,-1,-1
555,-1,395.62,156.605,33.859,67.662,0.8232,-1,-1,-1
556,-1,634.216,299.451,40.642,110.208,0.992163,-1,-1,-1
556,-1,160.576,349.332,55.217,155.216,0.990954,-1,-1,-1
556,-1,579.775,156.554,31.762,65.992,0.989638,-1,-1,-1
556,-1,216.759,374.074,51.04,151.557,0.986909,-1,-1,-1
556,-1,104.569,169.842,34.996,60.331,0.948036,-1,-1,-1
556,-1,389.376,151.764,32.372,83.207,0.817173,-1,-1,-1
557,-1,634.008,300.839,39.762,104.826,0.992258,-1,-1,-1
557,-1,98.9848,161.483,27.7072,65.963,0.99105,-1,-1,-1
557,-1,586.748,164.262,32.88,63.208,0.990646,-1,-1,-1
557,-1,195.678,379.07,71.622,155.871,0.987143,-1,-1,-1
557,-1,164.704,341.534,46.935,161.004,0.985076,-1,-1,-1
557,-1,390.826,155.058,34.514,77.069,0.950018,-1,-1,-1
558,-1,205.71,382.434,58.443,145.568,0.996569,-1,-1,-1
558,-1,634.539,298.792,40.189,106.196,0.991848,-1,-1,-1
558,-1,585.888,152.914,35.581,85.16,0.989426,-1,-1,-1
558,-1,169.342,352.664,48.122,136.746,0.982912,-1,-1,-1
558,-1,385.026,154.395,34.947,77.481,0.980108,-1,-1,-1
558,-1,94.5201,165.111,25.7079,66.06,0.975051,-1,-1,-1
559,-1,193.873,379.663,70.217,144.131,0.996243,-1,-1,-1
559,-1,633.991,298.86,40.165,108.113,0.991772,-1,-1,-1
559,-1,583.327,161.626,32.926,72.908,0.989983,-1,-1,-1
559,-1,385.718,158.69,33.714,73.112,0.988104,-1,-1,-1
559,-1,169.548,343.627,43.596,158.537,0.975794,-1,-1,-1
559,-1,87.4889,170.938,27.2301,57.786,0.971494,-1,-1,-1
560,-1,190.817,375.221,68.014,165.626,0.992172,-1,-1,-1
560,-1,634.729,298.45,39.672,108.154,0.991715,-1,-1,-1
560,-1,581.632,161.314,36.448,70.118,0.989054,-1,-1,-1
560,-1,379.101,154.263,35.409,80.241,0.980544,-1,-1,-1
560,-1,76.5325,165.633,35.6675,71.487,0.976462,-1,-1,-1
560,-1,166.406,345.412,51.621,162.46,0.946759,-1,-1,-1
561,-1,181.937,357.289,59.983,181.716,0.996886,-1,-1,-1
561,-1,84.2951,165.861,24.7999,61.552,0.992396,-1,-1,-1
561,-1,634.081,298.79,40.572,108.173,0.991903,-1,-1,-1
561,-1,582.074,158.108,36.137,77.51,0.989426,-1,-1,-1
561,-1,373.664,152.805,36.15,82.017,0.937952,-1,-1,-1
562,-1,175.781,344.732,67.193,192.654,0.99685,-1,-1,-1
562,-1,634.468,298.754,40.491,108.784,0.99222,-1,-1,-1
562,-1,73.9955,171.179,25.1253,60.86,0.98955,-1,-1,-1
562,-1,582.192,162.098,34.29,75.786,0.989368,-1,-1,-1
562,-1,374.532,151.804,36.699,79.739,0.97817,-1,-1,-1
563,-1,175.205,349.982,67.426,191.419,0.993249,-1,-1,-1
563,-1,634.475,298.753,39.546,107.822,0.992075,-1,-1,-1
563,-1,583.18,163.726,30.62,60.207,0.988481,-1,-1,-1
563,-1,367.948,150.597,33.269,88.09,0.975886,-1,-1,-1
563,-1,60.1213,173.882,27.5886,66.527,0.974391,-1,-1,-1
563,-1,78.2251,178.273,19.4881,63.549,0.533464,-1,-1,-1
564,-1,175.573,340.465,72.931,194.691,0.992879,-1,-1,-1
564,-1,634.269,298.831,40.222,108.529,0.992189,-1,-1,-1
564,-1,361.44,139.765,38.659,96.198,0.991171,-1,-1,-1
564,-1,590.166,155.066,32.67,76.95,0.988824,-1,-1,-1
564,-1,55.1369,169.636,31.7801,65.982,0.986838,-1,-1,-1
565,-1,181.864,352.577,62.907,189.418,0.996551,-1,-1,-1
565,-1,637.359,302.517,44.635,107.524,0.993776,-1,-1,-1
565,-1,367.72,149.875,33.971,79.51,0.989374,-1,-1,-1
565,-1,578.424,157.858,32.89,69.696,0.984499,-1,-1,-1
565,-1,60.2851,177.164,34.4382,62.657,0.979728,-1,-1,-1
566,-1,637.317,302.456,44.649,108.278,0.994126,-1,-1,-1
566,-1,185.147,346.495,59.411,211.581,0.992865,-1,-1,-1
566,-1,588.995,163.364,29.746,63.976,0.981435,-1,-1,-1
566,-1,361.224,155.805,32.151,67.798,0.980926,-1,-1,-1
566,-1,48.4035,171.378,30.5328,61.896,0.970742,-1,-1,-1
567,-1,180.711,355.103,65.029,188.715,0.997684,-1,-1,-1
567,-1,637.717,303.63,44.006,107.898,0.993929,-1,-1,-1
567,-1,46.7522,168.218,26.0992,61.515,0.989486,-1,-1,-1
567,-1,349.707,147.605,49.973,82.482,0.988034,-1,-1,-1
567,-1,583.509,157.522,35.504,68.615,0.965965,-1,-1,-1
567,-1,186.511,344.252,45.406,91.921,0.645403,-1,-1,-1
568,-1,344.733,147.47,42.116,83.664,0.993507,-1,-1,-1
568,-1,633.72,299.097,40.538,109.17,0.991792,-1,-1,-1
568,-1,179.234,352.374,61.881,207.932,0.989964,-1,-1,-1
568,-1,38.5011,175.21,40.2073,70.489,0.978532,-1,-1,-1
568,-1,573.267,157.783,40.312,69.148,0.970351,-1,-1,-1
569,-1,348.208,136.975,36.696,96.952,0.993858,-1,-1,-1
569,-1,172.035,361.64,72.315,206.918,0.992651,-1,-1,-1
569,-1,633.937,299.702,39.789,108.027,0.991973,-1,-1,-1
569,-1,572.793,156.989,31.543,70.431,0.98384,-1,-1,-1
569,-1,26.7734,176.688,33.766,66.324,0.983003,-1,-1,-1
569,-1,180.212,338.344,47.174,121.917,0.931262,-1,-1,-1
570,-1,177.353,402.064,69.739,161.212,0.997085,-1,-1,-1
570,-1,633.549,298.955,39.543,109.234,0.991808,-1,-1,-1
570,-1,574.64,163.249,31.827,63.425,0.986949,-1,-1,-1
570,-1,30.1858,176.871,26.5451,59.587,0.97642,-1,-1,-1
570,-1,340.061,140.928,33.013,81.65,0.970468,-1,-1,-1
570,-1,183.595,343.319,41.951,102.36,0.965902,-1,-1,-1
571,-1,633.368,299.76,39.556,106.948,0.991613,-1,-1,-1
571,-1,168.438,385.727,62.467,171.509,0.9914,-1,-1,-1
571,-1,566.535,160.841,33.889,74.484,0.987157,-1,-1,-1
571,-1,18.0343,163.362,31.7019,73.679,0.978204,-1,-1,-1
571,-1,330.378,146.344,32.41,67.153,0.976175,-1,-1,-1
571,-1,737.979,229.168,29.021,131.844,0.854782,-1,-1,-1
572,-1,629.911,300.138,48.762,111,0.991194,-1,-1,-1
572,-1,561.237,160.604,37.132,75.797,0.984804,-1,-1,-1
572,-1,333.236,140.357,31.842,84.325,0.980864,-1,-1,-1
572,-1,21.3358,177.371,20.5906,53.857,0.976281,-1,-1,-1
572,-1,188.382,337.897,52.441,149.529,0.952036,-1,-1,-1
572,-1,734.689,228.424,32.311,129.851,0.937986,-1,-1,-1
572,-1,166.852,382.821,60.537,187.825,0.912478,-1,-1,-1
573,-1,632.344,304.238,39.357,99.078,0.991547,-1,-1,-1
573,-1,190.23,329.669,53.67,161.859,0.983942,-1,-1,-1
573,-1,563.538,162.546,33.192,78.044,0.982175,-1,-1,-1
573,-1,13.996,168.019,34.6448,71.185,0.974318,-1,-1,-1
573,-1,329.611,134.762,33.307,89.133,0.962671,-1,-1,-1
573,-1,740.381,241.827,26.619,105.201,0.905571,-1,-1,-1
573,-1,157.928,399.969,64.211,159.432,0.733577,-1,-1,-1
574,-1,633.333,302.952,38.263,95.295,0.991396,-1,-1,-1
574,-1,192.573,328.049,48.799,153.488,0.988224,-1,-1,-1
574,-1,575.014,173.407,25.97,65.807,0.988127,-1,-1,-1
574,-1,319.988,136.13,36.067,82.019,0.98676,-1,-1,-1
574,-1,720.957,231.405,35.821,123.978,0.977353,-1,-1,-1
574,-1,12.0889,174.237,25.4815,54.389,0.958627,-1,-1,-1
574,-1,146.173,398.839,85.05,164.314,0.865186,-1,-1,-1
574,-1,555.686,173.606,28.492,55.51,0.566406,-1,-1,-1
575,-1,161.265,417.252,51.553,157.748,0.993317,-1,-1,-1
575,-1,633.363,301.545,37.514,96.93,0.99281,-1,-1,-1
575,-1,189.935,336.39,50.672,142.736,0.986994,-1,-1,-1
575,-1,316.82,144.092,36.305,72.471,0.982945,-1,-1,-1
575,-1,717.336,221.558,42.808,117.47,0.980416,-1,-1,-1
575,-1,7.41619,171.181,27.6927,67.247,0.97478,-1,-1,-1
575,-1,570.303,166.615,28.801,67.506,0.969494,-1,-1,-1
576,-1,633.169,300.999,43.403,112.044,0.99335,-1,-1,-1
576,-1,191.544,334.059,50.153,144.947,0.991769,-1,-1,-1
576,-1,311.815,142.112,31.455,78.534,0.9756,-1,-1,-1
576,-1,710.901,224.15,46.568,114.938,0.970612,-1,-1,-1
576,-1,570.042,169.464,29.407,66.83,0.967015,-1,-1,-1
576,-1,2.17073,170.086,29.5881,76.208,0.951562,-1,-1,-1
576,-1,160.333,404.135,54.514,162.562,0.884871,-1,-1,-1
577,-1,635.419,305.597,39.703,104.359,0.99292,-1,-1,-1
577,-1,197.237,346.14,55.748,139.39,0.990087,-1,-1,-1
577,-1,699.767,228.964,42.494,107.389,0.985086,-1,-1,-1
577,-1,300.031,137.172,39.811,76.827,0.9849,-1,-1,-1
577,-1,564.302,169.708,36.816,69.908,0.981123,-1,-1,-1
577,-1,159.032,411.836,65.02,154.6,0.974242,-1,-1,-1
577,-1,0.122295,181.462,16.4845,64.377,0.898519,-1,-1,-1
578,-1,631.849,307.373,42.57,106.928,0.992378,-1,-1,-1
578,-1,212,335.535,46.891,151.253,0.990045,-1,-1,-1
578,-1,571.849,167.301,35.661,79.915,0.987958,-1,-1,-1
578,-1,693.545,219.526,42.222,121.354,0.984518,-1,-1,-1
578,-1,291.728,135.495,39.997,78.027,0.98065,-1,-1,-1
578,-1,168.515,409.814,48.619,150.984,0.974354,-1,-1,-1
578,-1,1.16521,178.356,16.3038,63.639,0.78351,-1,-1,-1
579,-1,175.023,422.094,48.93,144.296,0.997024,-1,-1,-1
579,-1,207.258,328.833,59.181,155.458,0.995455,-1,-1,-1
579,-1,630.334,304.191,42.975,108.367,0.993597,-1,-1,-1
579,-1,573.49,175.886,35.881,77.538,0.989734,-1,-1,-1
579,-1,294.385,140.815,33.261,66.875,0.983841,-1,-1,-1
579,-1,690.538,218.564,42.471,120.612,0.98247,-1,-1,-1
580,-1,222.827,343.631,46.336,122.601,0.993729,-1,-1,-1
580,-1,629.657,303.201,44.926,107.69,0.99255,-1,-1,-1
580,-1,168.073,418.318,61.488,150.244,0.988264,-1,-1,-1
580,-1,576.335,175.77,35.803,76.268,0.987184,-1,-1,-1
580,-1,286.108,145.38,36.971,73.861,0.98417,-1,-1,-1
580,-1,694.457,222.039,32.803,104.41,0.980771,-1,-1,-1
581,-1,225.229,334.874,57.584,140.92,0.993328,-1,-1,-1
581,-1,627.893,302.253,46.831,108.584,0.991589,-1,-1,-1
581,-1,681.308,214.712,45.136,122.385,0.986144,-1,-1,-1
581,-1,578.049,165.792,37.234,89.555,0.985171,-1,-1,-1
581,-1,173.133,428.401,81.733,131.913,0.977597,-1,-1,-1
581,-1,279.377,139.434,34.22,69.145,0.976319,-1,-1,-1
582,-1,634.977,298.674,46.696,123.833,0.99173,-1,-1,-1
582,-1,179.993,432.051,68.925,142.949,0.990594,-1,-1,-1
582,-1,583.559,177.144,28.512,66.919,0.989002,-1,-1,-1
582,-1,235.763,321.018,54.961,142.302,0.988847,-1,-1,-1
582,-1,272.764,141.725,41.343,74.334,0.983687,-1,-1,-1
582,-1,673.735,212.8,37.82,123.858,0.979328,-1,-1,-1
583,-1,196.666,414.914,55.731,159.809,0.996223,-1,-1,-1
583,-1,242.895,320.587,55.059,145.692,0.993615,-1,-1,-1
583,-1,635.283,300.095,47.034,118.546,0.992201,-1,-1,-1
583,-1,587.418,171.883,37.498,75.117,0.981204,-1,-1,-1
583,-1,666.3,221.475,40.126,95.947,0.980809,-1,-1,-1
583,-1,270.469,135.173,44.482,74.08,0.963142,-1,-1,-1
584,-1,254.233,320.817,61.47,134.035,0.993378,-1,-1,-1
584,-1,634.988,297.222,44.569,117.197,0.992302,-1,-1,-1
584,-1,585.164,181.724,38.661,81.434,0.988115,-1,-1,-1
584,-1,660.308,218.511,37.797,94.143,0.975722,-1,-1,-1
584,-1,268.449,137.498,31.54,73.629,0.969724,-1,-1,-1
584,-1,216.616,404.107,52.83,163.616,0.952814,-1,-1,-1
585,-1,269.688,323.466,51.792,134.663,0.993358,-1,-1,-1
585,-1,636.687,300.507,44.767,118.516,0.991947,-1,-1,-1
585,-1,602.426,177.772,33.917,75.898,0.987382,-1,-1,-1
585,-1,221.085,421.155,51.156,148.721,0.98167,-1,-1,-1
585,-1,259.648,136.389,34.714,77.075,0.980567,-1,-1,-1
585,-1,655.764,220.513,39.284,94.548,0.956197,-1,-1,-1
585,-1,580.55,182.099,31.145,67.53,0.572708,-1,-1,-1
586,-1,221.373,416.241,63.101,158.759,0.996252,-1,-1,-1
586,-1,279.016,320.938,42.21,137.218,0.992583,-1,-1,-1
586,-1,600.311,175.381,35.419,85.911,0.990389,-1,-1,-1
586,-1,254.193,145.617,31.408,74.627,0.980727,-1,-1,-1
586,-1,630.665,306.111,42.359,103.306,0.961657,-1,-1,-1
586,-1,652.777,218.578,41.019,132.275,0.890744,-1,-1,-1
587,-1,299.116,315.252,47.982,129.106,0.99417,-1,-1,-1
587,-1,243.963,147.738,36.553,68.259,0.9864,-1,-1,-1
587,-1,629.158,267.612,45.694,154.025,0.983986,-1,-1,-1
587,-1,603.077,181.486,34.67,89.65,0.980025,-1,-1,-1
587,-1,232.81,412.676,62.087,159.215,0.973646,-1,-1,-1
588,-1,298.771,314.576,56.102,133.117,0.992338,-1,-1,-1
588,-1,636.564,294.174,39.33,116.136,0.988826,-1,-1,-1
588,-1,232.907,414.345,71.964,151.061,0.985346,-1,-1,-1
588,-1,241.214,137.696,35.079,71.415,0.984908,-1,-1,-1
588,-1,604.812,183.739,34.646,94.299,0.955684,-1,-1,-1
589,-1,312.185,318.481,49.337,127.121,0.996209,-1,-1,-1
589,-1,633.909,288.809,42.312,130.678,0.994835,-1,-1,-1
589,-1,237.926,424.191,69.399,148.429,0.988773,-1,-1,-1
589,-1,235.616,146.489,30.766,75.864,0.980914,-1,-1,-1
589,-1,612.944,188.803,35.445,73.967,0.665991,-1,-1,-1
590,-1,326.674,313.575,47.421,121.725,0.986201,-1,-1,-1
590,-1,229.823,145.347,38.063,75.497,0.984209,-1,-1,-1
590,-1,631.469,286.696,47.847,127.124,0.983777,-1,-1,-1
590,-1,247.201,427.803,81.698,132.381,0.962854,-1,-1,-1
590,-1,617.564,181.387,45.4,139.19,0.870226,-1,-1,-1
591,-1,634.558,296.291,48.068,119.676,0.992172,-1,-1,-1
591,-1,339.769,302.179,48.187,136.327,0.987456,-1,-1,-1
591,-1,618.761,188.926,49.47,121.583,0.983343,-1,-1,-1
591,-1,259.292,427.343,64.454,139.128,0.982431,-1,-1,-1
591,-1,226.304,146.714,30.501,75.17,0.960377,-1,-1,-1
592,-1,628.571,298.74,50.789,112.458,0.990583,-1,-1,-1
592,-1,613.904,195.437,42.934,101.056,0.988741,-1,-1,-1
592,-1,342.454,306.773,51.872,136.374,0.988041,-1,-1,-1
592,-1,220.133,140.047,31.509,70.272,0.9652,-1,-1,-1
592,-1,261.37,415.483,55.54,147.621,0.955505,-1,-1,-1
593,-1,256.411,425.247,63.79,149.753,0.995918,-1,-1,-1
593,-1,361.132,316.627,58.97,116.394,0.994066,-1,-1,-1
593,-1,628.207,303.713,54.867,107.526,0.990262,-1,-1,-1
593,-1,214.274,139.193,33.778,72.546,0.983794,-1,-1,-1
593,-1,637.479,195.443,33.557,79.381,0.976404,-1,-1,-1
593,-1,602.911,207.656,34.197,94.522,0.952624,-1,-1,-1
594,-1,257.417,432.259,60.1,142.741,0.996431,-1,-1,-1
594,-1,631.564,297.851,49.271,117.075,0.987343,-1,-1,-1
594,-1,367.155,312.284,59.172,129.47,0.98648,-1,-1,-1
594,-1,638.17,193.003,36.092,84.964,0.978194,-1,-1,-1
594,-1,599.731,217.073,28.132,80.015,0.973657,-1,-1,-1
594,-1,203.653,152.907,36.422,69.911,0.943897,-1,-1,-1
595,-1,258.927,431.758,59.872,143.242,0.996119,-1,-1,-1
595,-1,378.676,308.578,58.798,127.919,0.992731,-1,-1,-1
595,-1,633.52,301.267,43.427,109.732,0.989738,-1,-1,-1
595,-1,645.462,196.4,35.131,78.995,0.987024,-1,-1,-1
595,-1,593.908,206.272,40.514,95.921,0.986589,-1,-1,-1
595,-1,205.172,145.388,41.921,75.581,0.940351,-1,-1,-1
595,-1,629.962,206.925,30.694,76.897,0.577114,-1,-1,-1
596,-1,259.675,425.382,49.052,149.618,0.994662,-1,-1,-1
596,-1,592.699,202.968,36.721,96.229,0.991192,-1,-1,-1
596,-1,392.069,302.579,47.571,124.849,0.990637,-1,-1,-1
596,-1,633.471,301.901,42.512,106.828,0.989964,-1,-1,-1
596,-1,644.181,193.818,35.153,92.272,0.973426,-1,-1,-1
596,-1,205.035,142.082,29.738,79.167,0.964176,-1,-1,-1
597,-1,257.396,430.474,56.757,142.406,0.996061,-1,-1,-1
597,-1,393.042,307.704,60.206,118.382,0.994035,-1,-1,-1
597,-1,635.183,296.939,46.623,122.251,0.991924,-1,-1,-1
597,-1,586.994,204.398,36.123,83.266,0.986954,-1,-1,-1
597,-1,201.438,145.928,32.918,70.509,0.983383,-1,-1,-1
597,-1,646.413,196.868,42.717,87.075,0.974501,-1,-1,-1
598,-1,414.602,308.186,55.888,129.367,0.994421,-1,-1,-1
598,-1,574.61,205.496,44.072,96.096,0.991222,-1,-1,-1
598,-1,633.222,300.564,42.443,107.303,0.990001,-1,-1,-1
598,-1,192.892,145.596,33.625,65.577,0.986517,-1,-1,-1
598,-1,646.767,195.739,45.061,88.866,0.986286,-1,-1,-1
598,-1,261.343,429.706,68.72,135.636,0.979632,-1,-1,-1
599,-1,426.395,295.742,48.353,133.317,0.991468,-1,-1,-1
599,-1,633.474,300.834,41.46,108.171,0.989931,-1,-1,-1
599,-1,562.584,197.739,55.611,106.418,0.984788,-1,-1,-1
599,-1,257.664,431.447,70.048,141.885,0.984208,-1,-1,-1
599,-1,191.671,144.67,31.129,66.774,0.979591,-1,-1,-1
599,-1,661.483,213.548,37.851,74.287,0.974923,-1,-1,-1
599,-1,645.992,216.026,32.606,63.464,0.559678,-1,-1,-1
600,-1,566.203,199.523,39.374,100.323,0.994331,-1,-1,-1
600,-1,262.664,427.993,75.059,147.007,0.992133,-1,-1,-1
600,-1,633.083,299.517,42.121,108.923,0.990254,-1,-1,-1
600,-1,658.883,206.069,41.51,95.63,0.987434,-1,-1,-1
600,-1,447.783,304.696,35.085,119.288,0.986203,-1,-1,-1
600,-1,192.453,147.463,31.369,65.435,0.975805,-1,-1,-1
601,-1,559.884,198.131,38.887,89.541,0.992071,-1,-1,-1
601,-1,279.838,431.651,53.932,143.349,0.98897,-1,-1,-1
601,-1,447.794,295.599,47.143,124.664,0.988649,-1,-1,-1
601,-1,632.774,299.993,42.953,108.495,0.988151,-1,-1,-1
601,-1,668.778,197.395,39,92.248,0.987812,-1,-1,-1
601,-1,182.574,131.628,38.675,81.879,0.986598,-1,-1,-1
602,-1,630.424,296.754,46.469,125.377,0.993468,-1,-1,-1
602,-1,558.314,192.001,34.961,95.265,0.99256,-1,-1,-1
602,-1,446.536,298.506,65.113,133.842,0.99034,-1,-1,-1
602,-1,668.954,205.443,45.719,98.409,0.983788,-1,-1,-1
602,-1,285.64,426.143,56.534,133.627,0.981351,-1,-1,-1
602,-1,177.749,136.376,34.945,74.187,0.976433,-1,-1,-1
603,-1,631.066,303.419,43.047,109.509,0.991929,-1,-1,-1
603,-1,454.615,298.39,57.672,130.311,0.988742,-1,-1,-1
603,-1,668.801,201.112,57.761,120.312,0.985054,-1,-1,-1
603,-1,550.362,194.456,40.723,88.095,0.984669,-1,-1,-1
603,-1,285.292,421.379,66.8,137.796,0.981271,-1,-1,-1
603,-1,173.219,144.014,34.343,69.005,0.975168,-1,-1,-1
604,-1,539.854,196.349,35.817,88.355,0.994512,-1,-1,-1
604,-1,633.035,297.54,37.352,110.349,0.992033,-1,-1,-1
604,-1,288.076,418.459,77.769,152.45,0.990912,-1,-1,-1
604,-1,470.164,294.363,56.69,136.906,0.989389,-1,-1,-1
604,-1,677.504,211.34,46.736,100.649,0.988225,-1,-1,-1
604,-1,166.704,140.315,37.388,64.144,0.96211,-1,-1,-1
605,-1,631.826,293.983,45.634,126.308,0.991669,-1,-1,-1
605,-1,483.309,295.023,48.101,140.631,0.990673,-1,-1,-1
605,-1,536.497,196.508,36.442,82.085,0.99038,-1,-1,-1
605,-1,692.008,219.014,39.264,92.968,0.988896,-1,-1,-1
605,-1,290.472,421.947,81.833,144.942,0.984812,-1,-1,-1
605,-1,161.829,144.213,37.324,62.226,0.981486,-1,-1,-1
606,-1,531.087,191.82,35.615,83.307,0.996677,-1,-1,-1
606,-1,305.793,428.333,64.017,146.667,0.995049,-1,-1,-1
606,-1,696.017,221.897,38.587,82.695,0.99323,-1,-1,-1
606,-1,637.466,296.832,40.034,120.019,0.990395,-1,-1,-1
606,-1,494.911,293.255,46.749,122.982,0.98685,-1,-1,-1
606,-1,160.022,142.238,33.855,66.256,0.947145,-1,-1,-1
606,-1,1.17599,178.298,16.2171,64.185,0.620678,-1,-1,-1
607,-1,312.956,432.937,61.789,142.063,0.992952,-1,-1,-1
607,-1,693.579,226.575,42.646,83.431,0.991137,-1,-1,-1
607,-1,636.696,292.959,41.644,124.254,0.990669,-1,-1,-1
607,-1,498.847,296.961,49.109,128.082,0.987702,-1,-1,-1
607,-1,515.901,186.305,53.901,103.349,0.986873,-1,-1,-1
607,-1,153.794,146.287,32.038,58.049,0.973899,-1,-1,-1
608,-1,318.272,433.131,67.148,141.869,0.995204,-1,-1,-1
608,-1,500.295,286.846,55.923,124.196,0.990201,-1,-1,-1
608,-1,632.816,297.699,40.699,116.414,0.989434,-1,-1,-1
608,-1,523.248,192.351,39.166,86.743,0.988322,-1,-1,-1
608,-1,698.041,222.046,42.794,89.968,0.984902,-1,-1,-1
608,-1,156.4,143.279,25.977,56.339,0.973749,-1,-1,-1
608,-1,0.811618,180.994,20.517,62.73,0.954228,-1,-1,-1
609,-1,629.442,300.042,48.19,118.542,0.991568,-1,-1,-1
609,-1,707.235,222.988,42.948,99.021,0.990805,-1,-1,-1
609,-1,517.916,283.861,56.163,132.432,0.988636,-1,-1,-1
609,-1,513.838,191.467,41.165,79.546,0.981432,-1,-1,-1
609,-1,3.28821,181.198,29.6449,65.812,0.980993,-1,-1,-1
609,-1,331.267,423.307,65.745,151.424,0.974091,-1,-1,-1
609,-1,150.636,140.608,32.94,70.461,0.971599,-1,-1,-1
610,-1,637.333,297.624,42.176,104.294,0.993345,-1,-1,-1
610,-1,517.421,285.91,67.433,126.715,0.992406,-1,-1,-1
610,-1,330.277,427.452,75.803,147.548,0.98954,-1,-1,-1
610,-1,503.712,190.325,50.741,88.46,0.988834,-1,-1,-1
610,-1,713.168,225.445,40.374,97.17,0.988056,-1,-1,-1
610,-1,148.073,134.461,27.393,84.382,0.942676,-1,-1,-1
610,-1,7.9741,186.294,20.6198,64.736,0.826629,-1,-1,-1
611,-1,531.633,287.899,46.948,120.22,0.994585,-1,-1,-1
611,-1,338.408,422.795,59.414,151.215,0.993986,-1,-1,-1
611,-1,634.875,297.669,38.152,113.578,0.991117,-1,-1,-1
611,-1,716.648,227.142,39.157,95.16,0.985764,-1,-1,-1
611,-1,505.755,185.476,42.841,84.232,0.977775,-1,-1,-1
611,-1,143.501,144.204,34.556,72.225,0.977189,-1,-1,-1
611,-1,15.0968,181.642,28.3858,66.644,0.935689,-1,-1,-1
612,-1,540.472,287.358,45.893,113.855,0.993585,-1,-1,-1
612,-1,635.558,298.919,37.826,111.14,0.990913,-1,-1,-1
612,-1,504.118,182.805,42.303,85.421,0.986101,-1,-1,-1
612,-1,346.437,426.743,55.314,143.537,0.98553,-1,-1,-1
612,-1,715.835,229.901,42.783,103.391,0.984732,-1,-1,-1
612,-1,15.3193,180.644,29.0452,59.552,0.97823,-1,-1,-1
612,-1,146.625,136.501,30.654,76.188,0.962347,-1,-1,-1
613,-1,550.352,268.151,44.103,123.252,0.996188,-1,-1,-1
613,-1,637.992,300.104,34.212,111.649,0.991468,-1,-1,-1
613,-1,498.141,180.277,31.937,82.623,0.986511,-1,-1,-1
613,-1,14.1421,178.86,28.6516,62.43,0.984152,-1,-1,-1
613,-1,137.416,137.552,33.863,73.173,0.984047,-1,-1,-1
613,-1,359.1,429.481,49.349,116.838,0.982812,-1,-1,-1
613,-1,722.493,234.34,37.731,96.799,0.980132,-1,-1,-1
614,-1,486.733,180.271,42.182,84.722,0.994536,-1,-1,-1
614,-1,555.413,278.285,46.689,120.803,0.993569,-1,-1,-1
614,-1,635.77,299.138,36.681,113.79,0.990419,-1,-1,-1
614,-1,363.633,418.183,53.094,150.308,0.985891,-1,-1,-1
614,-1,134.407,142.493,33.739,74.712,0.976421,-1,-1,-1
614,-1,25.9986,166.819,31.4169,72.554,0.976221,-1,-1,-1
614,-1,728.097,235.935,37.842,97.365,0.965911,-1,-1,-1
615,-1,638.305,303.479,39.876,98.657,0.991235,-1,-1,-1
615,-1,481.025,173.578,41.629,87.45,0.991212,-1,-1,-1
615,-1,561.557,274.089,47.223,128.952,0.98693,-1,-1,-1
615,-1,364.523,420.187,56.614,149.919,0.986688,-1,-1,-1
615,-1,24.9093,169.259,35.5024,77.077,0.976148,-1,-1,-1
615,-1,132.492,137.241,37.477,68.699,0.967185,-1,-1,-1
615,-1,726.678,233.317,40.322,100.943,0.929301,-1,-1,-1
616,-1,477.745,177.28,36.88,76.138,0.995743,-1,-1,-1
616,-1,638.011,300.003,32.229,102.784,0.992203,-1,-1,-1
616,-1,564.268,271.927,45.854,128.942,0.988052,-1,-1,-1
616,-1,33.331,169.779,37.8118,70.438,0.986848,-1,-1,-1
616,-1,370.952,421.614,51.212,147.538,0.980696,-1,-1,-1
616,-1,127.476,140.84,38.562,71.804,0.950976,-1,-1,-1
616,-1,743.828,238.845,23.172,108.498,0.935384,-1,-1,-1
617,-1,368.284,421.311,56.33,153.689,0.99741,-1,-1,-1
617,-1,633.421,299.345,38.328,105.262,0.993585,-1,-1,-1
617,-1,477.508,175.219,36.302,82.904,0.992797,-1,-1,-1
617,-1,567.46,265.089,41.397,125.826,0.98431,-1,-1,-1
617,-1,130.451,139.144,26.381,66.773,0.955214,-1,-1,-1
617,-1,40.1173,174.267,32.5528,69.759,0.939435,-1,-1,-1
618,-1,372.873,426.433,59.944,143.58,0.997642,-1,-1,-1
618,-1,467.516,172.381,34.277,80.008,0.993419,-1,-1,-1
618,-1,621.388,309.443,43.255,92.299,0.990895,-1,-1,-1
618,-1,570.177,266.64,43.271,118.133,0.987637,-1,-1,-1
618,-1,120.878,132.853,35.148,73.703,0.974789,-1,-1,-1
618,-1,51.2554,178.63,26.7836,70.23,0.964211,-1,-1,-1
619,-1,378.436,428.498,54.91,138.991,0.996356,-1,-1,-1
619,-1,468.537,167.848,41.746,88.527,0.993501,-1,-1,-1
619,-1,572.379,266.214,41.259,113.157,0.986821,-1,-1,-1
619,-1,623.12,282.341,43.53,129.37,0.982594,-1,-1,-1
619,-1,114.806,130.36,44.327,85.941,0.966661,-1,-1,-1
619,-1,59.4485,170.407,27.4344,69.268,0.941864,-1,-1,-1
619,-1,48.6815,184.12,24.3193,64.949,0.90921,-1,-1,-1
620,-1,377.364,418.62,58.162,146.47,0.995749,-1,-1,-1
620,-1,573.226,249.149,48.06,122.255,0.990654,-1,-1,-1
620,-1,619.653,290.003,41.396,104.469,0.989812,-1,-1,-1
620,-1,463.342,178.569,32.972,82.367,0.982998,-1,-1,-1
620,-1,62.2234,179.453,34.1251,64.541,0.982975,-1,-1,-1
620,-1,118.049,142.805,29.654,71.657,0.95613,-1,-1,-1
621,-1,372.82,417.058,62.36,157.942,0.995706,-1,-1,-1
621,-1,453.543,172.721,34.23,80.366,0.992515,-1,-1,-1
621,-1,613.879,290.918,41.053,114.41,0.989364,-1,-1,-1
621,-1,577.395,254.877,41.205,110.421,0.986448,-1,-1,-1
621,-1,61.641,175.722,25.9749,74.877,0.983139,-1,-1,-1
621,-1,113.623,135.869,29.262,74.053,0.95708,-1,-1,-1
621,-1,75.6716,171.87,25.3954,70.85,0.671244,-1,-1,-1
622,-1,372.531,414.682,53.435,159.242,0.993537,-1,-1,-1
622,-1,447.069,176.257,36.272,71.842,0.987816,-1,-1,-1
622,-1,579.058,247.548,51.125,144.65,0.973515,-1,-1,-1
622,-1,71.2264,175.786,30.5416,64.434,0.952258,-1,-1,-1
622,-1,117.844,140.429,24.4,66.633,0.949304,-1,-1,-1
622,-1,611.399,284.135,39.48,107.115,0.938271,-1,-1,-1
622,-1,89.9355,157.768,22.5065,74.131,0.645164,-1,-1,-1
623,-1,368.611,422.941,52.092,143.153,0.995479,-1,-1,-1
623,-1,582.342,258.059,64.98,138.331,0.993891,-1,-1,-1
623,-1,452.663,176.244,27.815,70.728,0.990262,-1,-1,-1
623,-1,75.7872,174.806,26.4878,72.042,0.972871,-1,-1,-1
623,-1,110.255,133.402,29.16,88.378,0.920866,-1,-1,-1
624,-1,586.701,243.17,48.804,149.016,0.995767,-1,-1,-1
624,-1,360.978,420.837,63.171,154.163,0.994862,-1,-1,-1
624,-1,436.11,176.241,41.145,74.291,0.983994,-1,-1,-1
624,-1,79.1528,177.11,27.6542,67.432,0.97622,-1,-1,-1
624,-1,115.355,144.846,22.787,62.414,0.91514,-1,-1,-1
625,-1,585.473,240.102,51.998,142.3,0.994862,-1,-1,-1
625,-1,359.02,408.672,67.582,146.611,0.990851,-1,-1,-1
625,-1,437.709,164.343,39.463,71.62,0.98933,-1,-1,-1
625,-1,81.9234,165.284,33.3816,79.471,0.962587,-1,-1,-1
625,-1,111.8,133.945,25.459,67.507,0.700094,-1,-1,-1
626,-1,580.918,246.862,57.551,137.535,0.996983,-1,-1,-1
626,-1,358.814,412.704,64.718,135.547,0.99327,-1,-1,-1
626,-1,425.037,160.272,42.099,73.611,0.95647,-1,-1,-1
626,-1,99.5714,152.026,32.1066,94.512,0.951902,-1,-1,-1
627,-1,358.253,407.075,63.089,146.091,0.99508,-1,-1,-1
627,-1,582.742,248.561,57.999,132.244,0.990169,-1,-1,-1
627,-1,103.704,143.837,30.627,94.204,0.97627,-1,-1,-1
627,-1,425.643,161.693,38.578,64.476,0.740466,-1,-1,-1
628,-1,357.518,403.968,61.97,154.807,0.994991,-1,-1,-1
628,-1,605.674,242.311,33.075,102.196,0.983066,-1,-1,-1
628,-1,99.9359,136.415,39.3341,109.329,0.977335,-1,-1,-1
628,-1,576.893,270.693,40.996,109.237,0.971712,-1,-1,-1
628,-1,416.464,168.486,37.803,63.203,0.831467,-1,-1,-1
629,-1,355.149,407,59.365,151.518,0.996503,-1,-1,-1
629,-1,103.121,135.785,39.146,107.132,0.992163,-1,-1,-1
629,-1,573.388,267.22,33.358,104.595,0.990965,-1,-1,-1
629,-1,617.296,225.596,40.068,122.208,0.990371,-1,-1,-1
630,-1,357.289,403.195,52.224,144.311,0.995698,-1,-1,-1
630,-1,101.752,142.78,38.706,85.855,0.990957,-1,-1,-1
630,-1,569.233,277.916,38.363,93.831,0.988256,-1,-1,-1
630,-1,613.868,231.064,41.324,116.334,0.976343,-1,-1,-1
631,-1,346.216,401.921,66.429,142.73,0.992588,-1,-1,-1
631,-1,616.675,234.888,41.64,103.764,0.992346,-1,-1,-1
631,-1,558.405,269.439,35.35,85.039,0.98822,-1,-1,-1
631,-1,117.269,134.441,29.719,94.26,0.982961,-1,-1,-1
632,-1,344.062,398.263,60.195,145.511,0.995374,-1,-1,-1
632,-1,548.049,268.104,39.972,96.436,0.990566,-1,-1,-1
632,-1,622.126,226.478,41.052,108.076,0.988786,-1,-1,-1
632,-1,113.817,142.159,34.332,84.482,0.982516,-1,-1,-1
633,-1,343.939,388.259,67.199,155.81,0.994202,-1,-1,-1
633,-1,544.792,264.349,37.134,99.33,0.994143,-1,-1,-1
633,-1,115.991,143.46,40.151,85.74,0.986813,-1,-1,-1
633,-1,623.207,224.468,41.864,111.863,0.984228,-1,-1,-1
633,-1,396.11,165.622,36.686,77.391,0.742791,-1,-1,-1
634,-1,347.619,396.548,60.539,147.475,0.996404,-1,-1,-1
634,-1,537.984,266.089,41.751,92.835,0.995817,-1,-1,-1
634,-1,627.911,221.207,39.886,101.004,0.987569,-1,-1,-1
634,-1,124.223,143.936,36.655,89.833,0.938256,-1,-1,-1
634,-1,385.135,150.211,39.156,76.734,0.842521,-1,-1,-1
635,-1,340.232,398.106,63.726,141.521,0.996197,-1,-1,-1
635,-1,625.979,213.663,45.725,115.118,0.988293,-1,-1,-1
635,-1,537.34,246.66,37.995,97.944,0.988036,-1,-1,-1
635,-1,134.612,161.228,31.939,69.797,0.97628,-1,-1,-1
635,-1,114.154,143.132,25.336,69.724,0.699413,-1,-1,-1
635,-1,394.445,150.469,33.961,82.193,0.686803,-1,-1,-1
636,-1,343.65,396.332,59.49,137.859,0.996313,-1,-1,-1
636,-1,633.285,230.278,41.598,90.56,0.992635,-1,-1,-1
636,-1,533.39,251.885,38.93,98.122,0.984009,-1,-1,-1
636,-1,144.271,167.412,28.592,69.197,0.936664,-1,-1,-1
636,-1,116.502,146.795,25.815,66.444,0.929023,-1,-1,-1
636,-1,385.408,149.12,31.608,84.932,0.854437,-1,-1,-1
637,-1,330.111,383.206,65.664,151.237,0.997565,-1,-1,-1
637,-1,518.262,246.257,47.014,96.026,0.995172,-1,-1,-1
637,-1,636.058,210.669,35.573,106.706,0.987886,-1,-1,-1
637,-1,151.881,164.417,30.027,62.252,0.977197,-1,-1,-1
637,-1,111.732,145.007,28.482,61.825,0.964245,-1,-1,-1
637,-1,377.893,155.565,39.515,74.028,0.963956,-1,-1,-1
638,-1,336.521,388.891,57.525,135.445,0.997542,-1,-1,-1
638,-1,639.525,208.214,39.453,102.081,0.991021,-1,-1,-1
638,-1,513.548,245.835,49.301,105.308,0.989726,-1,-1,-1
638,-1,149.77,163.036,31.592,74.532,0.982179,-1,-1,-1
638,-1,373.381,155.662,44.46,72.979,0.969311,-1,-1,-1
638,-1,112.734,143.641,28.889,66.537,0.953249,-1,-1,-1
639,-1,508.597,251.517,44.749,91.328,0.994822,-1,-1,-1
639,-1,337.174,385.504,58.108,138.079,0.991787,-1,-1,-1
639,-1,643.533,207.517,38.284,100.521,0.98533,-1,-1,-1
639,-1,370.143,152.094,36.958,76.481,0.978819,-1,-1,-1
639,-1,155.192,172.904,28.244,60.027,0.975961,-1,-1,-1
639,-1,112.171,147.561,28.498,64.336,0.959821,-1,-1,-1
640,-1,505.22,247.651,40.34,88.378,0.992126,-1,-1,-1
640,-1,368.745,162.227,37.509,64.46,0.989898,-1,-1,-1
640,-1,326.965,387.805,67.209,131.892,0.989091,-1,-1,-1
640,-1,644.55,205.329,37.753,100.825,0.986282,-1,-1,-1
640,-1,159.239,163.299,33.191,62.149,0.947498,-1,-1,-1
640,-1,115.867,146.163,30.767,72.271,0.899589,-1,-1,-1
641,-1,327.677,388.071,65.71,135.272,0.990669,-1,-1,-1
641,-1,357.605,159.632,36.208,80.067,0.989363,-1,-1,-1
641,-1,496.045,244.13,43.476,102.142,0.984381,-1,-1,-1
641,-1,642.072,200.552,44.094,105.348,0.983099,-1,-1,-1
641,-1,169.499,170.477,32.753,66.777,0.968895,-1,-1,-1
641,-1,114.76,142.817,29.855,73.351,0.911755,-1,-1,-1
642,-1,328.491,383.489,65.737,140.316,0.993546,-1,-1,-1
642,-1,490.918,238.446,42.385,102.379,0.99184,-1,-1,-1
642,-1,640.109,198.032,42.56,95.054,0.985526,-1,-1,-1
642,-1,359.374,153.06,33.933,84.708,0.967574,-1,-1,-1
642,-1,173.722,156.539,29.009,66.112,0.961309,-1,-1,-1
642,-1,113.373,144.713,25.743,73.815,0.946477,-1,-1,-1
643,-1,332.685,385.743,60.746,144.79,0.996533,-1,-1,-1
643,-1,490.658,243.174,37.612,84.516,0.989197,-1,-1,-1
643,-1,353.847,150.924,37.648,79.734,0.986851,-1,-1,-1
643,-1,644.703,196.53,38.198,93.616,0.986587,-1,-1,-1
643,-1,177.969,158.458,30.377,63.318,0.974496,-1,-1,-1
643,-1,115.481,143.01,26.099,71.724,0.934495,-1,-1,-1
644,-1,336.687,385.352,54.981,135.503,0.996867,-1,-1,-1
644,-1,489.569,237.082,38.731,85.58,0.99132,-1,-1,-1
644,-1,346.617,148.434,41.103,79.737,0.989839,-1,-1,-1
644,-1,643.914,206.54,33.5,79.104,0.988397,-1,-1,-1
644,-1,178.64,158.23,38.674,68.403,0.983703,-1,-1,-1
644,-1,117.313,149.108,33.486,68.598,0.911377,-1,-1,-1
645,-1,337.58,377.917,55.023,144.564,0.995941,-1,-1,-1
645,-1,484.941,238.846,34.28,79.5,0.990867,-1,-1,-1
645,-1,646.832,206.574,39.441,85.84,0.98944,-1,-1,-1
645,-1,342.45,153.614,35.946,79.185,0.982817,-1,-1,-1
645,-1,114.832,150.703,32.597,71.089,0.972585,-1,-1,-1
645,-1,187.141,156.695,29.512,82.482,0.96971,-1,-1,-1
646,-1,336.682,386.878,57.998,143.089,0.994916,-1,-1,-1
646,-1,480.653,240.175,41.782,86.132,0.994147,-1,-1,-1
646,-1,644.2,194.972,35.579,95.18,0.990714,-1,-1,-1
646,-1,344.951,159.303,29.513,70.493,0.976983,-1,-1,-1
646,-1,123.793,147.814,31.3,79.41,0.974453,-1,-1,-1
646,-1,192.051,158.553,27.155,66.978,0.970587,-1,-1,-1
647,-1,334.623,379.908,62.351,143.688,0.994196,-1,-1,-1
647,-1,639.863,198.922,45.01,96.793,0.988232,-1,-1,-1
647,-1,334.385,152.621,36.277,73.974,0.985619,-1,-1,-1
647,-1,471.797,234.498,54.182,99.837,0.985558,-1,-1,-1
647,-1,126.979,149.753,26.343,63.198,0.983275,-1,-1,-1
647,-1,196.464,160.443,34.665,62.497,0.946376,-1,-1,-1
648,-1,335.535,377.527,52.431,135.845,0.994693,-1,-1,-1
648,-1,470.578,228.964,34.615,77.419,0.991349,-1,-1,-1
648,-1,639.707,182.908,39.772,104.419,0.988135,-1,-1,-1
648,-1,328.57,159.006,34.602,78.607,0.982362,-1,-1,-1
648,-1,205.022,161.663,32.465,57.749,0.97795,-1,-1,-1
648,-1,128.914,146.977,29.718,70.842,0.961426,-1,-1,-1
649,-1,335.56,380.186,58.931,137.984,0.992505,-1,-1,-1
649,-1,465.603,224.79,42.316,87.412,0.990374,-1,-1,-1
649,-1,638.616,181.635,38.574,102.896,0.985556,-1,-1,-1
649,-1,329.428,153.66,29.704,71.351,0.981248,-1,-1,-1
649,-1,211.58,159.702,30.718,63.158,0.955546,-1,-1,-1
649,-1,123.608,144.769,46.098,81.18,0.953569,-1,-1,-1
650,-1,336.599,377.124,56.58,152.732,0.995941,-1,-1,-1
650,-1,465.441,221.925,34.747,82.763,0.995569,-1,-1,-1
650,-1,640.831,188.625,38.729,100.553,0.986026,-1,-1,-1
650,-1,313.615,152.576,33.098,73.454,0.98568,-1,-1,-1
650,-1,128.293,144.057,33.422,74.843,0.978485,-1,-1,-1
650,-1,207.543,155.092,30.983,65.894,0.970416,-1,-1,-1
651,-1,331.594,376.268,60.718,143.654,0.996481,-1,-1,-1
651,-1,459.852,226.207,41.359,85.658,0.995244,-1,-1,-1
651,-1,309.992,155.843,42.785,81.125,0.990144,-1,-1,-1
651,-1,634.927,179.496,36.94,95.718,0.989469,-1,-1,-1
651,-1,132.458,149.437,32.277,70.452,0.985754,-1,-1,-1
651,-1,213.988,152.12,30.544,69.373,0.983434,-1,-1,-1
652,-1,329.947,375.475,56.735,125.028,0.995723,-1,-1,-1
652,-1,304.904,160.309,37.675,73.918,0.989812,-1,-1,-1
652,-1,633.667,176.232,34.202,94.077,0.988228,-1,-1,-1
652,-1,456.039,217.285,53.578,92.521,0.98668,-1,-1,-1
652,-1,142.899,144.124,28.98,68.534,0.982449,-1,-1,-1
652,-1,220.643,156.769,34.517,71.614,0.944315,-1,-1,-1
653,-1,328.349,368.03,49.06,131.487,0.994614,-1,-1,-1
653,-1,455.094,218.637,39.414,89.401,0.989619,-1,-1,-1
653,-1,631.236,175.064,39.378,93.784,0.98515,-1,-1,-1
653,-1,299.779,149.537,40.035,72.854,0.985068,-1,-1,-1
653,-1,225.951,156.284,28.869,73.01,0.973655,-1,-1,-1
653,-1,145.055,146.835,32.139,67.451,0.971978,-1,-1,-1
654,-1,327.839,362.253,47.103,150.004,0.995763,-1,-1,-1
654,-1,453.813,213.642,44.106,96.303,0.990664,-1,-1,-1
654,-1,626.961,186.693,35.894,87.65,0.988295,-1,-1,-1
654,-1,296.253,154.775,35.792,82.533,0.984843,-1,-1,-1
654,-1,234.715,149.151,33.11,60.997,0.971657,-1,-1,-1
654,-1,141.646,149.114,36.556,76.61,0.948135,-1,-1,-1
655,-1,323.756,371.426,49.59,141.9,0.995856,-1,-1,-1
655,-1,456.947,219.103,38.486,83.642,0.991597,-1,-1,-1
655,-1,293.332,162.889,37.158,73.28,0.986514,-1,-1,-1
655,-1,631.856,184.504,29.367,82.936,0.98133,-1,-1,-1
655,-1,156.005,152.272,30.762,74.057,0.978169,-1,-1,-1
655,-1,236.755,153.757,34.541,65.591,0.919857,-1,-1,-1
656,-1,324.971,362.098,54.339,133.637,0.993612,-1,-1,-1
656,-1,628.559,177.751,32.731,90,0.991044,-1,-1,-1
656,-1,464.241,221.498,36.46,79.067,0.990069,-1,-1,-1
656,-1,289.825,155.429,35.75,71.091,0.985441,-1,-1,-1
656,-1,147.828,155.557,44.391,74.441,0.984179,-1,-1,-1
656,-1,242.185,155.455,35.36,67.419,0.932274,-1,-1,-1
656,-1,735.719,281.024,31.281,141.808,0.885085,-1,-1,-1
657,-1,458.653,209.536,37.672,81.53,0.994469,-1,-1,-1
657,-1,313.727,367.851,66.506,136.17,0.987314,-1,-1,-1
657,-1,623.91,172.723,39.91,93.291,0.987062,-1,-1,-1
657,-1,285.579,159.537,31.955,68.042,0.972975,-1,-1,-1
657,-1,149.566,150.324,30.69,66.781,0.970288,-1,-1,-1
657,-1,241.891,156.933,34.845,62.536,0.963376,-1,-1,-1
657,-1,729.669,299.171,37.331,125.017,0.903904,-1,-1,-1
657,-1,167.852,156.754,29.922,71.591,0.500762,-1,-1,-1
658,-1,454.157,208.046,35.822,80.607,0.992373,-1,-1,-1
658,-1,315.045,359.613,52.477,135.842,0.989476,-1,-1,-1
658,-1,715.48,302.015,45.654,123.034,0.986482,-1,-1,-1
658,-1,618.981,167.071,43.795,95.419,0.979447,-1,-1,-1
658,-1,157.722,155.898,31.602,73.143,0.968174,-1,-1,-1
658,-1,251.009,150.586,24.45,68.03,0.90724,-1,-1,-1
658,-1,287.494,159.698,28.571,72.038,0.861473,-1,-1,-1
658,-1,265.407,148.784,26.651,70.698,0.64575,-1,-1,-1
659,-1,453.359,203.057,39.99,85.46,0.993027,-1,-1,-1
659,-1,316.52,360.002,51.237,135.587,0.991978,-1,-1,-1
659,-1,622.953,178.397,32.473,81.418,0.988615,-1,-1,-1
659,-1,707.67,290.998,51.616,133.532,0.987535,-1,-1,-1
659,-1,270.642,156.058,33.752,68.193,0.956542,-1,-1,-1
659,-1,160.005,143.328,35.88,77.69,0.949445,-1,-1,-1
660,-1,686.249,297.47,51.077,120.732,0.993694,-1,-1,-1
660,-1,618.562,174.013,33.046,82.019,0.991032,-1,-1,-1
660,-1,464.865,211.797,34.535,69.17,0.988977,-1,-1,-1
660,-1,297.112,363.533,61.414,125.173,0.983551,-1,-1,-1
660,-1,164.855,155.586,32.214,68.86,0.981035,-1,-1,-1
660,-1,264.671,144.132,35.099,80.312,0.979702,-1,-1,-1
661,-1,683.634,295.454,48.17,116.982,0.994915,-1,-1,-1
661,-1,291.015,357.171,70.742,128.278,0.992683,-1,-1,-1
661,-1,453.984,200.753,35.393,85.363,0.990941,-1,-1,-1
661,-1,264.841,148.505,35.974,80.242,0.989027,-1,-1,-1
661,-1,166.688,151.979,45.169,81.314,0.98315,-1,-1,-1
661,-1,613.94,179.813,39.722,87.325,0.977245,-1,-1,-1
662,-1,279.632,351.134,76.856,134.589,0.993237,-1,-1,-1
662,-1,459.278,203.009,35.253,73.661,0.991498,-1,-1,-1
662,-1,611.374,175.199,39.021,80.466,0.989685,-1,-1,-1
662,-1,670.944,284.23,42.547,127.257,0.987121,-1,-1,-1
662,-1,265.925,159.327,36.26,73.077,0.977795,-1,-1,-1
662,-1,177.384,159.159,38.445,58.733,0.95671,-1,-1,-1
663,-1,657.424,283.625,49.795,130.761,0.993256,-1,-1,-1
663,-1,282.684,356.233,52.846,124.137,0.992309,-1,-1,-1
663,-1,459.851,199.378,35.26,78.997,0.991546,-1,-1,-1
663,-1,180.535,145.434,33.116,81.233,0.985422,-1,-1,-1
663,-1,607.132,170.753,42.006,88.912,0.974568,-1,-1,-1
663,-1,272.946,145.979,33.212,73.957,0.973173,-1,-1,-1
663,-1,260.801,159.315,23.343,67.752,0.50194,-1,-1,-1
664,-1,457.476,186.093,41.993,95.603,0.994962,-1,-1,-1
664,-1,637.386,287.951,47.895,112.916,0.993268,-1,-1,-1
664,-1,601.239,168.708,35.305,82.456,0.987159,-1,-1,-1
664,-1,267.806,341.136,54.994,140.829,0.984321,-1,-1,-1
664,-1,185.334,157.75,36.842,69.738,0.972666,-1,-1,-1
664,-1,291.861,156.449,29.983,65.055,0.949913,-1,-1,-1
664,-1,251.428,150.542,31.348,70.349,0.949071,-1,-1,-1
664,-1,273.341,144.646,33.712,77.719,0.836617,-1,-1,-1
665,-1,272.019,345.536,55.135,137.524,0.996314,-1,-1,-1
665,-1,456.692,189.952,39.236,86.113,0.994364,-1,-1,-1
665,-1,628.532,278.724,46.642,115.418,0.993127,-1,-1,-1
665,-1,597.399,164.826,36.828,82.799,0.986627,-1,-1,-1
665,-1,191.382,153.888,30.87,75.796,0.976415,-1,-1,-1
665,-1,285.03,149.945,30.672,74.711,0.972517,-1,-1,-1
665,-1,256.053,144.712,24.655,78.634,0.876933,-1,-1,-1
666,-1,609.171,273.955,51.632,120.075,0.995185,-1,-1,-1
666,-1,256.342,344.336,56.358,133.742,0.993837,-1,-1,-1
666,-1,457.863,204.932,37.575,64.571,0.988211,-1,-1,-1
666,-1,588.915,166.057,39.805,77.924,0.986601,-1,-1,-1
666,-1,195.569,152.133,34.894,79.669,0.9799,-1,-1,-1
666,-1,252.485,158.514,28.332,66.722,0.968388,-1,-1,-1
666,-1,292.878,157.157,42.609,54.849,0.963751,-1,-1,-1
667,-1,606.317,278.807,45.702,116.206,0.994058,-1,-1,-1
667,-1,456.765,193.417,37.181,77.199,0.985414,-1,-1,-1
667,-1,199.129,152.249,35.072,72.287,0.984706,-1,-1,-1
667,-1,257.39,342.241,51.434,132.277,0.980181,-1,-1,-1
667,-1,587.991,162.019,31.604,84.519,0.970209,-1,-1,-1
667,-1,244.734,157.248,31.187,68.96,0.944319,-1,-1,-1
667,-1,305.107,147.811,29.234,65.578,0.932748,-1,-1,-1
668,-1,594.793,266.204,40.413,116.411,0.990417,-1,-1,-1
668,-1,250.921,338.313,51.004,133.693,0.987371,-1,-1,-1
668,-1,467.744,189.277,30.615,68.164,0.985719,-1,-1,-1
668,-1,583.172,169.08,31.897,68.954,0.98037,-1,-1,-1
668,-1,197.141,157.671,40.061,76.653,0.977795,-1,-1,-1
668,-1,307.371,151.867,29.517,62.503,0.96347,-1,-1,-1
668,-1,240.574,152.919,32.759,68.722,0.803174,-1,-1,-1
669,-1,583.293,263.908,47.499,125.967,0.99199,-1,-1,-1
669,-1,242.584,349.033,61.068,128.539,0.990272,-1,-1,-1
669,-1,579.028,166.074,37.302,71.493,0.988813,-1,-1,-1
669,-1,458.481,188.764,42.267,74.121,0.980596,-1,-1,-1
669,-1,240.022,159.876,29.052,60.691,0.933088,-1,-1,-1
669,-1,314.899,143.598,28.171,74.551,0.901534,-1,-1,-1
669,-1,207.296,149.025,30.413,74.69,0.899664,-1,-1,-1
670,-1,456.651,189.184,46.953,79.062,0.9913,-1,-1,-1
670,-1,215.454,151.186,39.32,73.131,0.991144,-1,-1,-1
670,-1,561.432,268.217,50.353,115.8,0.990767,-1,-1,-1
670,-1,224.172,335.384,70.551,128.916,0.990654,-1,-1,-1
670,-1,575.362,167.292,32.304,75.495,0.990063,-1,-1,-1
670,-1,314.293,150.489,35.121,70.825,0.97605,-1,-1,-1
671,-1,560.426,254.717,44.143,121.911,0.991351,-1,-1,-1
671,-1,467.429,186.219,36.413,75.868,0.990517,-1,-1,-1
671,-1,230.334,340.408,55.516,127.199,0.990058,-1,-1,-1
671,-1,214.818,150.38,35.344,88.498,0.989343,-1,-1,-1
671,-1,317.602,150.577,31.687,67.683,0.987177,-1,-1,-1
671,-1,569.949,163.337,35.906,78.414,0.984619,-1,-1,-1
672,-1,548.023,259.408,43.765,123.569,0.992615,-1,-1,-1
672,-1,462.918,183.484,38.367,81.405,0.99212,-1,-1,-1
672,-1,218.891,339.501,65.467,132.575,0.987614,-1,-1,-1
672,-1,560.578,159.818,37.791,75.342,0.987528,-1,-1,-1
672,-1,321.284,149.334,40.408,73.283,0.967672,-1,-1,-1
672,-1,220.253,157.803,34.933,76.517,0.966057,-1,-1,-1
673,-1,208.725,343.184,70.649,116.393,0.995505,-1,-1,-1
673,-1,535.793,260.323,48.869,117.193,0.994887,-1,-1,-1
673,-1,469.682,182.705,42.016,69.963,0.984953,-1,-1,-1
673,-1,222.769,156.233,29.024,72.289,0.980929,-1,-1,-1
673,-1,558.613,161.235,45.309,71.981,0.975506,-1,-1,-1
673,-1,330.983,147.05,28.412,74.483,0.954019,-1,-1,-1
674,-1,205.943,336.543,48.091,124.676,0.995748,-1,-1,-1
674,-1,519.981,247.419,45.067,121.404,0.99345,-1,-1,-1
674,-1,546.96,154.048,37.967,79.237,0.989659,-1,-1,-1
674,-1,337.706,146.726,33.691,71.64,0.986611,-1,-1,-1
674,-1,468.662,183.04,32.528,72.774,0.984517,-1,-1,-1
674,-1,228.128,159.97,35.661,71.292,0.96992,-1,-1,-1
674,-1,210.069,156.524,27.068,76.006,0.57427,-1,-1,-1
675,-1,192.137,330.142,56.239,126.652,0.994439,-1,-1,-1
675,-1,541.566,147.21,47.102,77.386,0.992322,-1,-1,-1
675,-1,514.271,251.215,45.019,100.212,0.987541,-1,-1,-1
675,-1,467.305,182.835,33.055,61.061,0.982672,-1,-1,-1
675,-1,234.973,161.602,32.286,64.729,0.972469,-1,-1,-1
675,-1,342.724,140.465,40.537,73.249,0.963673,-1,-1,-1
675,-1,201.157,153.24,29.545,75.58,0.759103,-1,-1,-1
676,-1,192.617,336.069,55.267,123.104,0.996217,-1,-1,-1
676,-1,499.811,259.085,52.66,105.835,0.987525,-1,-1,-1
676,-1,540.886,158.698,39.726,64.638,0.986331,-1,-1,-1
676,-1,469.873,181.17,33.078,66.073,0.98552,-1,-1,-1
676,-1,356.648,146.8,26.446,65.214,0.983975,-1,-1,-1
676,-1,237.811,152.068,35.692,72.301,0.972276,-1,-1,-1
676,-1,195.549,159.631,36.607,72.073,0.971674,-1,-1,-1
677,-1,189.804,329.852,58.98,134.287,0.994756,-1,-1,-1
677,-1,491.763,247.305,45.115,120.495,0.994644,-1,-1,-1
677,-1,475.052,180.779,33.313,60.43,0.988283,-1,-1,-1
677,-1,241.862,156.229,38.159,79.725,0.985364,-1,-1,-1
677,-1,356.985,143.475,24.997,63.398,0.981068,-1,-1,-1
677,-1,187.532,149.236,36.817,76.791,0.970802,-1,-1,-1
677,-1,544.487,150.377,31.766,71.913,0.969413,-1,-1,-1
678,-1,171.443,325.195,56.645,132.109,0.994202,-1,-1,-1
678,-1,529.761,149.106,38.124,80.477,0.990467,-1,-1,-1
678,-1,186.027,153.885,33.32,67.967,0.977556,-1,-1,-1
678,-1,254.947,152.853,28.071,79.014,0.975902,-1,-1,-1
678,-1,359.692,147.969,34.221,64.471,0.966911,-1,-1,-1
678,-1,477.991,232.533,40.191,142.305,0.961036,-1,-1,-1
678,-1,479.662,171.111,32.983,98.06,0.939688,-1,-1,-1
679,-1,522.416,159.846,49.743,77.262,0.990005,-1,-1,-1
679,-1,169.711,328.63,50.288,132.604,0.989342,-1,-1,-1
679,-1,362.074,144.919,39.473,76.659,0.983522,-1,-1,-1
679,-1,251.797,154.551,48.683,79.872,0.983453,-1,-1,-1
679,-1,178.868,150.174,34.426,77.667,0.976076,-1,-1,-1
679,-1,483.187,172.207,30.202,71.789,0.972389,-1,-1,-1
679,-1,474.735,253.009,38.139,123.006,0.95642,-1,-1,-1
680,-1,457.393,242.663,47.132,123.088,0.988436,-1,-1,-1
680,-1,164.129,328.11,44.022,114.954,0.987632,-1,-1,-1
680,-1,373.437,148.864,33.719,61.596,0.98575,-1,-1,-1
680,-1,258.279,161.345,46.973,80.577,0.984124,-1,-1,-1
680,-1,526.114,157.504,28.074,69.457,0.980291,-1,-1,-1
680,-1,479.892,165.083,41.467,83.964,0.973798,-1,-1,-1
680,-1,176.924,154.352,34.215,58.952,0.963152,-1,-1,-1
681,-1,264.496,156.034,37.616,79.729,0.993413,-1,-1,-1
681,-1,147.249,335.438,59.085,114.882,0.989319,-1,-1,-1
681,-1,438.14,234.21,49.433,119.412,0.988517,-1,-1,-1
681,-1,379.729,147.448,31.31,65.862,0.984305,-1,-1,-1
681,-1,167.005,154.21,29.386,66.781,0.957528,-1,-1,-1
681,-1,482.207,167.491,29.553,77.393,0.947416,-1,-1,-1
681,-1,510.745,159.745,28.825,72.308,0.946117,-1,-1,-1
682,-1,269.529,155.238,40.955,87.345,0.992147,-1,-1,-1
682,-1,146.331,333.102,57.831,112.174,0.991729,-1,-1,-1
682,-1,434.51,228.172,47.191,123.979,0.987793,-1,-1,-1
682,-1,502.355,158.39,35.575,71.692,0.949711,-1,-1,-1
682,-1,167.636,155.291,35.599,72.795,0.948569,-1,-1,-1
682,-1,393.369,143.518,29.111,78.923,0.909788,-1,-1,-1
682,-1,486.825,165.188,25.762,71.246,0.845114,-1,-1,-1
683,-1,140.202,326.825,51.17,120.918,0.992792,-1,-1,-1
683,-1,497.993,159.367,35.445,75.297,0.98719,-1,-1,-1
683,-1,167.58,157.692,34.293,68.709,0.981875,-1,-1,-1
683,-1,426.351,233.959,46.105,119.375,0.9803,-1,-1,-1
683,-1,275.639,157.9,37.067,77.26,0.980126,-1,-1,-1
683,-1,395.24,140.678,28.836,81.12,0.953596,-1,-1,-1
684,-1,131.625,331.074,52.222,118.811,0.993567,-1,-1,-1
684,-1,281.717,165.188,43.854,74.746,0.985163,-1,-1,-1
684,-1,493.005,158.969,29.703,75.102,0.9841,-1,-1,-1
684,-1,163.146,156.338,27.857,69.334,0.940984,-1,-1,-1
684,-1,393.244,143.678,36.48,73.418,0.879438,-1,-1,-1
685,-1,127.252,316.889,47.818,130.396,0.994893,-1,-1,-1
685,-1,285.573,162.508,38.838,80.834,0.9935,-1,-1,-1
685,-1,403.62,194.616,41.3,148.236,0.979886,-1,-1,-1
685,-1,491.157,155.478,33.773,78.667,0.95779,-1,-1,-1
685,-1,157.768,158.559,33.665,66.738,0.953424,-1,-1,-1
685,-1,398.684,132.25,31.603,69.175,0.776842,-1,-1,-1
686,-1,119.922,321.134,51.878,123.668,0.996612,-1,-1,-1
686,-1,290.588,160.271,32.828,80.914,0.990693,-1,-1,-1
686,-1,496.95,161.124,32.811,69.573,0.976632,-1,-1,-1
686,-1,405.581,245.353,28.729,80.108,0.976439,-1,-1,-1
686,-1,152.11,160.626,34.299,66.4,0.968824,-1,-1,-1
687,-1,117.652,316.317,62.084,134.573,0.99468,-1,-1,-1
687,-1,297.466,162.29,33,77.016,0.993986,-1,-1,-1
687,-1,385.514,225.954,43.412,107.185,0.989315,-1,-1,-1
687,-1,157.292,162.069,30.763,62.31,0.985009,-1,-1,-1
687,-1,501.109,166.948,32.016,62.309,0.979127,-1,-1,-1
687,-1,484.988,164.501,21.323,57.833,0.831611,-1,-1,-1
688,-1,115.076,308.296,60.814,133.149,0.994227,-1,-1,-1
688,-1,369.352,225.812,42.439,99.742,0.993405,-1,-1,-1
688,-1,305.283,166.6,32.551,77.33,0.981305,-1,-1,-1
688,-1,465.534,158.334,30.764,74.184,0.970041,-1,-1,-1
688,-1,515.423,153.285,30.35,74.43,0.967128,-1,-1,-1
688,-1,155.941,161.105,30.497,64.528,0.96442,-1,-1,-1
689,-1,113.439,311.823,53.62,122.119,0.994653,-1,-1,-1
689,-1,367.261,222.718,39.078,98.938,0.992636,-1,-1,-1
689,-1,301.796,161.375,55.927,89.823,0.991641,-1,-1,-1
689,-1,505.509,157.635,44.451,85.223,0.982995,-1,-1,-1
689,-1,154.174,164.1,30.933,66.336,0.958301,-1,-1,-1
689,-1,462.234,148.511,32.363,85.199,0.951892,-1,-1,-1
690,-1,112.054,305.12,50.619,121.047,0.992675,-1,-1,-1
690,-1,306.649,165.423,45.471,81.707,0.991971,-1,-1,-1
690,-1,351.219,213.598,43.434,120.122,0.989906,-1,-1,-1
690,-1,508.187,155.256,48.022,82.659,0.982045,-1,-1,-1
690,-1,144.63,159.656,32.662,65.964,0.96027,-1,-1,-1
690,-1,455.505,150.709,28.025,76.008,0.866057,-1,-1,-1
690,-1,162.809,172.53,23.826,58.603,0.663292,-1,-1,-1
691,-1,342.945,217.795,37.548,96.362,0.993645,-1,-1,-1
691,-1,119.252,300.722,42.946,133.698,0.981966,-1,-1,-1
691,-1,439.472,140.504,32.327,82.875,0.981484,-1,-1,-1
691,-1,529.075,167.48,33.171,66.759,0.980631,-1,-1,-1
691,-1,148.472,163.988,33.733,75.675,0.976057,-1,-1,-1
691,-1,322.809,161.286,35.736,72.112,0.951463,-1,-1,-1
691,-1,743.406,217.529,23.594,100.388,0.914218,-1,-1,-1
692,-1,340.452,225.693,36.135,79.428,0.993434,-1,-1,-1
692,-1,119.407,303.904,39.737,127.743,0.988985,-1,-1,-1
692,-1,160.29,162.528,28.709,67.675,0.985406,-1,-1,-1
692,-1,521.188,172.598,38.996,52.249,0.979916,-1,-1,-1
692,-1,428.447,123.926,39.045,111.143,0.975926,-1,-1,-1
692,-1,746.24,215.202,20.76,96.403,0.889402,-1,-1,-1
692,-1,319.149,159.724,41.646,82.876,0.851495,-1,-1,-1
693,-1,330.199,169.45,44.446,153.92,0.98719,-1,-1,-1
693,-1,528.875,156.047,31.457,64.813,0.987141,-1,-1,-1
693,-1,115.823,298.831,51.015,123.072,0.986676,-1,-1,-1
693,-1,150.626,168.106,28.562,58.816,0.978052,-1,-1,-1
693,-1,431.388,133.061,42.737,98.377,0.976633,-1,-1,-1
693,-1,734.468,215.585,32.532,90.518,0.921467,-1,-1,-1
694,-1,114.355,291.164,48.616,123.695,0.992417,-1,-1,-1
694,-1,320.433,158.344,47.152,162.18,0.978726,-1,-1,-1
694,-1,526.986,158.525,44.961,77.486,0.974558,-1,-1,-1
694,-1,154.231,162.645,37.114,71.956,0.973225,-1,-1,-1
694,-1,728.241,220.5,38.759,96.528,0.965392,-1,-1,-1
694,-1,438.555,131.307,33.591,91.565,0.934752,-1,-1,-1
695,-1,105.333,293.107,51.78,115.91,0.9937,-1,-1,-1
695,-1,718.975,222.118,41.173,93.562,0.987961,-1,-1,-1
695,-1,526.266,159.211,38.059,65.109,0.987873,-1,-1,-1
695,-1,315.159,207.033,45.615,110.234,0.980827,-1,-1,-1
695,-1,155.095,171.933,40.154,65.73,0.963832,-1,-1,-1
695,-1,438.4,136.443,32.524,75.913,0.959965,-1,-1,-1
696,-1,103.293,291.046,51.333,122.021,0.995458,-1,-1,-1
696,-1,308.43,209.264,39.421,105.498,0.989289,-1,-1,-1
696,-1,524.616,161.556,39.871,63.275,0.989135,-1,-1,-1
696,-1,158.603,162.91,33.777,78.897,0.981149,-1,-1,-1
696,-1,717.523,224.094,37.46,93.376,0.979392,-1,-1,-1
696,-1,445.687,128.736,32.688,69.154,0.961295,-1,-1,-1
696,-1,342.537,160.146,33.369,83.019,0.887126,-1,-1,-1
697,-1,103.69,290.746,49.668,117.475,0.996487,-1,-1,-1
697,-1,713.08,218.957,38.458,90.809,0.990675,-1,-1,-1
697,-1,527.662,166.273,31.811,59.857,0.988653,-1,-1,-1
697,-1,303.984,199.52,42.107,105.037,0.978497,-1,-1,-1
697,-1,158.21,166.927,36.525,71.242,0.976173,-1,-1,-1
697,-1,349.013,167.727,29.584,91.538,0.959433,-1,-1,-1
697,-1,449.012,135.425,31.82,67.379,0.957345,-1,-1,-1
698,-1,107.9,308.651,47.874,100.646,0.995001,-1,-1,-1
698,-1,514.456,166.614,45.404,62.253,0.992471,-1,-1,-1
698,-1,292.726,206.136,50.813,99.115,0.990504,-1,-1,-1
698,-1,702.828,213.854,43.826,87.982,0.990419,-1,-1,-1
698,-1,359.605,179.755,32.285,71.507,0.985511,-1,-1,-1
698,-1,164.966,163.96,42.904,75.73,0.98097,-1,-1,-1
698,-1,462.12,133.472,22.149,60.41,0.969594,-1,-1,-1
699,-1,688.215,213.642,47.432,91.025,0.99354,-1,-1,-1
699,-1,101.586,303.034,43.559,99.763,0.990816,-1,-1,-1
699,-1,350.413,175.044,35.287,77.173,0.987671,-1,-1,-1
699,-1,287.509,191.896,39.607,119.995,0.980246,-1,-1,-1
699,-1,522.125,164.383,31.724,65.757,0.977974,-1,-1,-1
699,-1,171.662,161.713,34.681,74.462,0.975584,-1,-1,-1
699,-1,463.925,137.964,30.996,57.295,0.963207,-1,-1,-1
700,-1,277.039,193.333,43.674,110.632,0.992298,-1,-1,-1
700,-1,686.147,219.224,51.101,86.168,0.992041,-1,-1,-1
700,-1,99.3932,286.594,46.4248,115.087,0.990556,-1,-1,-1
700,-1,172.136,163.754,47.167,76.134,0.984594,-1,-1,-1
700,-1,356.087,166.424,43.039,79.38,0.98352,-1,-1,-1
700,-1,507.913,160.02,50.482,75.877,0.977481,-1,-1,-1
700,-1,468.995,130.78,25.15,62.073,0.962251,-1,-1,-1
701,-1,683.853,208.134,38.333,107.49,0.994595,-1,-1,-1
701,-1,360.508,172.271,35.489,90.274,0.99193,-1,-1,-1
701,-1,101.259,285.262,34.854,109.489,0.99027,-1,-1,-1
701,-1,516.559,166.52,39.31,62.103,0.983663,-1,-1,-1
701,-1,180.723,159.759,32.943,76.543,0.98172,-1,-1,-1
701,-1,273.031,187.015,41.147,119.736,0.980502,-1,-1,-1
701,-1,471.754,131.364,27.797,73.96,0.954475,-1,-1,-1
701,-1,406.374,149.002,29.9,79.633,0.827856,-1,-1,-1
702,-1,267.052,204.146,35.984,84.682,0.992284,-1,-1,-1
702,-1,365.969,175.841,37.937,80.258,0.990543,-1,-1,-1
702,-1,97.3333,287.246,45.8527,114.816,0.989274,-1,-1,-1
702,-1,666.907,212.918,41.927,91.486,0.988553,-1,-1,-1
702,-1,511.861,164.848,34.255,75.29,0.984274,-1,-1,-1
702,-1,483.573,129.142,24.185,66.629,0.974203,-1,-1,-1
702,-1,186.752,165.202,32.913,74.635,0.972122,-1,-1,-1
703,-1,91.7001,292.791,48.2019,97.028,0.992603,-1,-1,-1
703,-1,665.088,200.22,36.321,105.005,0.990126,-1,-1,-1
703,-1,193.442,168.872,29.228,73.711,0.987264,-1,-1,-1
703,-1,376.123,146.468,33.596,124.216,0.986923,-1,-1,-1
703,-1,253.724,194.158,45.13,100.553,0.986675,-1,-1,-1
703,-1,482.06,131.012,28.38,67.425,0.97377,-1,-1,-1
703,-1,509.955,170.105,38.969,66.69,0.957677,-1,-1,-1
704,-1,84.8318,279.809,48.2512,107.42,0.993247,-1,-1,-1
704,-1,378.36,164.009,36.078,104.517,0.991576,-1,-1,-1
704,-1,665.001,207.317,35.608,90.481,0.989685,-1,-1,-1
704,-1,252.039,201.693,33.668,83.907,0.984212,-1,-1,-1
704,-1,195.266,173.822,37.318,66.308,0.980163,-1,-1,-1
704,-1,515.403,170.719,30.878,66.034,0.96478,-1,-1,-1
704,-1,482.21,131.557,28.803,71.392,0.936516,-1,-1,-1
705,-1,500.036,159.625,34.647,83.718,0.993639,-1,-1,-1
705,-1,644.275,210.151,53.233,102.314,0.992182,-1,-1,-1
705,-1,85.2447,273.885,49.7013,116.083,0.988554,-1,-1,-1
705,-1,241.181,203.89,38.83,80.68,0.981519,-1,-1,-1
705,-1,376.931,143.695,32.672,102.586,0.97034,-1,-1,-1
705,-1,203.118,168.265,33.905,81.763,0.951679,-1,-1,-1
705,-1,489.796,135.416,25.954,61.803,0.782421,-1,-1,-1
706,-1,81.3715,273.45,44.4185,113.266,0.989603,-1,-1,-1
706,-1,641.551,206.383,36.197,92.606,0.989002,-1,-1,-1
706,-1,508.14,161.645,34.747,75.534,0.97015,-1,-1,-1
706,-1,230.305,194.556,34.429,81.337,0.931578,-1,-1,-1
706,-1,377.787,150.412,31.886,104.214,0.927125,-1,-1,-1
706,-1,488.307,122.702,32.364,75.391,0.855449,-1,-1,-1
706,-1,203.808,174.897,31.737,84.397,0.671196,-1,-1,-1
707,-1,494.327,125.869,35.517,123.017,0.993981,-1,-1,-1
707,-1,75.8119,269.594,48.2251,112.607,0.990935,-1,-1,-1
707,-1,635.162,197.039,43.603,106.338,0.977881,-1,-1,-1
707,-1,220.209,172.741,34.721,109.969,0.960958,-1,-1,-1
707,-1,373.593,159.14,27.334,79.449,0.939649,-1,-1,-1
708,-1,494.598,120.668,34.164,136.428,0.995732,-1,-1,-1
708,-1,83.2849,270.202,42.8631,95.255,0.994892,-1,-1,-1
708,-1,220.976,178.558,35.156,100.18,0.989254,-1,-1,-1
708,-1,626.725,209.844,53.101,99.644,0.98735,-1,-1,-1
708,-1,358.553,153.893,39.54,71.435,0.9863,-1,-1,-1
709,-1,618.839,211.74,42.378,75.155,0.994901,-1,-1,-1
709,-1,497.462,143.228,29.961,104.321,0.993966,-1,-1,-1
709,-1,351.597,154.602,34.352,79.14,0.99019,-1,-1,-1
709,-1,65.8514,268.804,48.0526,99.151,0.987807,-1,-1,-1
709,-1,213.418,173.167,38.862,118.084,0.986259,-1,-1,-1
710,-1,612.383,210.659,40.056,80.952,0.995587,-1,-1,-1
710,-1,67.3607,265.813,46.1263,106.252,0.992218,-1,-1,-1
710,-1,210.602,174.955,41.203,102.357,0.991372,-1,-1,-1
710,-1,496.72,180.403,35.969,65.111,0.983896,-1,-1,-1
710,-1,352.304,150.355,33.593,76.063,0.982542,-1,-1,-1
710,-1,512.383,122.049,25.838,62.988,0.878892,-1,-1,-1
711,-1,61.808,264.716,46.119,107.576,0.993478,-1,-1,-1
711,-1,611.232,210.597,39.646,75.823,0.993321,-1,-1,-1
711,-1,202.685,186.249,35.749,93.666,0.987128,-1,-1,-1
711,-1,348.535,157.659,27.671,77.385,0.986191,-1,-1,-1
711,-1,498.201,151.19,33.926,95.219,0.981451,-1,-1,-1
711,-1,512.239,124.377,32.781,64.468,0.872815,-1,-1,-1
711,-1,220.049,171.388,38.711,90.647,0.532562,-1,-1,-1
712,-1,601.198,208.832,35.983,84.674,0.994614,-1,-1,-1
712,-1,57.76,263.398,39.344,100.071,0.992386,-1,-1,-1
712,-1,327.721,158.456,41.472,70.146,0.98693,-1,-1,-1
712,-1,484.214,172.609,40.378,77.453,0.981341,-1,-1,-1
712,-1,226.013,176.155,34.474,68.553,0.972883,-1,-1,-1
712,-1,186.427,188.264,38.375,88.136,0.971504,-1,-1,-1
712,-1,520.358,119.208,33.787,63.895,0.915945,-1,-1,-1
713,-1,325.637,158.747,36.497,66.962,0.993849,-1,-1,-1
713,-1,54.1411,257.09,45.4641,104.034,0.992241,-1,-1,-1
713,-1,596.797,210.48,43.326,82.11,0.991204,-1,-1,-1
713,-1,184.375,184.134,34.258,84.543,0.980278,-1,-1,-1
713,-1,481.865,183.764,47.694,77.839,0.97668,-1,-1,-1
713,-1,232.519,168.712,35.658,77.582,0.972608,-1,-1,-1
713,-1,515.838,115.171,34.35,69.58,0.96192,-1,-1,-1
714,-1,56.0019,256.363,41.8109,100.494,0.994121,-1,-1,-1
714,-1,476.418,177.975,48.568,80.332,0.989724,-1,-1,-1
714,-1,591.46,211.78,41.909,81.551,0.987942,-1,-1,-1
714,-1,169.698,185.924,48.697,82.783,0.987714,-1,-1,-1
714,-1,529.26,117.319,30.177,75.481,0.984506,-1,-1,-1
714,-1,330.74,156.35,33.461,74.549,0.982302,-1,-1,-1
714,-1,236.1,168.135,33.063,80.925,0.953075,-1,-1,-1
715,-1,587.417,212.409,40.747,81.849,0.995944,-1,-1,-1
715,-1,55.8959,254.412,38.9978,98.604,0.994714,-1,-1,-1
715,-1,471.441,183.129,41.855,74.759,0.988876,-1,-1,-1
715,-1,324.486,161.837,36.011,79.278,0.988508,-1,-1,-1
715,-1,167.809,185.585,42.683,87.811,0.987346,-1,-1,-1
715,-1,524.889,122.546,26.398,64.401,0.980128,-1,-1,-1
715,-1,239.03,173.897,29.967,84.28,0.902123,-1,-1,-1
715,-1,538.222,118.47,30.977,77.362,0.744405,-1,-1,-1
715,-1,415.379,171.155,47.274,128.67,0.553173,-1,-1,-1
716,-1,588.799,207.314,33.86,81.609,0.991948,-1,-1,-1
716,-1,54.4656,247.393,41.3473,101.401,0.991724,-1,-1,-1
716,-1,418.479,185.438,48.881,93.945,0.989854,-1,-1,-1
716,-1,158.236,184.922,37.758,87.725,0.986888,-1,-1,-1
716,-1,476.933,188.697,30.667,67.669,0.979974,-1,-1,-1
716,-1,244.547,178.044,32.358,80.633,0.975268,-1,-1,-1
716,-1,312.528,162.67,33.652,74.453,0.966988,-1,-1,-1
716,-1,535.962,128.137,28.57,66.765,0.949076,-1,-1,-1
717,-1,576.112,207.247,34.921,82.753,0.990966,-1,-1,-1
717,-1,247.509,178.891,30.242,74.678,0.990878,-1,-1,-1
717,-1,54.7525,251.852,36.9253,95.925,0.990717,-1,-1,-1
717,-1,429.424,191.067,47.704,94.064,0.989253,-1,-1,-1
717,-1,152.488,178.604,35.446,84.85,0.984365,-1,-1,-1
717,-1,536.418,111.697,36.035,68.051,0.977748,-1,-1,-1
717,-1,479.631,182.491,31.438,83.276,0.97376,-1,-1,-1
717,-1,307.985,168.936,40.839,76.07,0.965668,-1,-1,-1
718,-1,565.69,208.344,46.776,85.997,0.994942,-1,-1,-1
718,-1,147.57,181.46,41.537,84.805,0.990292,-1,-1,-1
718,-1,52.9811,247.457,32.6289,105.972,0.990242,-1,-1,-1
718,-1,309.76,164.983,34.828,75.885,0.980671,-1,-1,-1
718,-1,539.656,119.064,27.651,71.84,0.976988,-1,-1,-1
718,-1,443.896,185.146,38.578,91.299,0.976803,-1,-1,-1
718,-1,252.939,178.842,31.177,80.985,0.975266,-1,-1,-1
718,-1,486.245,192.625,35.015,62.22,0.970057,-1,-1,-1
718,-1,472.913,186.306,27.239,84.212,0.672027,-1,-1,-1
719,-1,55.1997,244.841,42.7684,107.084,0.991511,-1,-1,-1
719,-1,137.071,177.143,38.896,85.836,0.989078,-1,-1,-1
719,-1,301.898,163.636,35.42,83.221,0.988311,-1,-1,-1
719,-1,484.487,189.167,35.658,77.464,0.986021,-1,-1,-1
719,-1,565.906,207.705,38.695,80.788,0.981406,-1,-1,-1
719,-1,442.267,187.467,41.994,95.806,0.979313,-1,-1,-1
719,-1,244.895,172.746,50.664,96.612,0.965585,-1,-1,-1
719,-1,545.772,122.99,30.085,58.408,0.951173,-1,-1,-1
720,-1,52.1929,242.312,45.8568,106.516,0.985206,-1,-1,-1
720,-1,557.385,201.241,38.225,83.328,0.981068,-1,-1,-1
720,-1,300.69,165.78,36.878,76.244,0.979574,-1,-1,-1
720,-1,450.02,196,36.676,97.262,0.978679,-1,-1,-1
720,-1,132.833,182.358,30.89,76.22,0.969969,-1,-1,-1
720,-1,489.257,192.429,28.373,79.301,0.962576,-1,-1,-1
720,-1,263.55,188.632,35.743,66.488,0.957926,-1,-1,-1
720,-1,551.451,124.511,30.386,64.27,0.95761,-1,-1,-1
721,-1,51.4471,246.969,45.3893,87.037,0.993068,-1,-1,-1
721,-1,129.928,182.391,35.533,77.917,0.986888,-1,-1,-1
721,-1,458.284,197.513,37.264,86.792,0.986061,-1,-1,-1
721,-1,553.294,199.628,45.358,85.572,0.985891,-1,-1,-1
721,-1,297.097,171.06,33.222,67.214,0.985665,-1,-1,-1
721,-1,548.46,126.878,33.748,52.811,0.979522,-1,-1,-1
721,-1,253.974,176.251,38.656,77.711,0.970378,-1,-1,-1
721,-1,498.12,193.624,20.116,66.513,0.951089,-1,-1,-1
722,-1,54.7153,252.101,44.4806,84.627,0.995517,-1,-1,-1
722,-1,551.666,208.851,28.588,72.204,0.985289,-1,-1,-1
722,-1,114.043,177.071,38.828,81.135,0.981252,-1,-1,-1
722,-1,289.298,171.284,40.868,82.955,0.976219,-1,-1,-1
722,-1,491.227,195.054,45.481,67.998,0.969563,-1,-1,-1
722,-1,556.801,118.701,30.539,58.424,0.963696,-1,-1,-1
722,-1,456.603,196.592,42.715,95.121,0.963287,-1,-1,-1
722,-1,260.338,179.238,35.054,76.489,0.858295,-1,-1,-1
723,-1,58.1731,249.388,43.2129,85.064,0.990986,-1,-1,-1
723,-1,545.752,201.445,43.997,92.843,0.983014,-1,-1,-1
723,-1,112.574,174.062,37.322,81.557,0.982739,-1,-1,-1
723,-1,275.665,173.018,46.239,89.459,0.971552,-1,-1,-1
723,-1,470.57,198.661,33.886,89.984,0.969869,-1,-1,-1
723,-1,562.505,124.231,26.238,56.828,0.961551,-1,-1,-1
723,-1,513.925,191.587,27.814,82.134,0.957565,-1,-1,-1
723,-1,495.081,189.331,28.87,99.053,0.770558,-1,-1,-1
724,-1,273.348,173.341,44.945,85.117,0.995553,-1,-1,-1
724,-1,108.917,181.398,37.32,67.057,0.986412,-1,-1,-1
724,-1,62.1636,254.959,39.3304,84.7,0.983286,-1,-1,-1
724,-1,546.212,191.835,29.516,93.54,0.973659,-1,-1,-1
724,-1,468.468,203.964,46.33,93.355,0.959807,-1,-1,-1
724,-1,503.324,197.286,28.203,78.259,0.95892,-1,-1,-1
724,-1,564.494,113.127,25.469,72.646,0.954325,-1,-1,-1
724,-1,520.764,199.888,30.529,77.65,0.700423,-1,-1,-1
725,-1,272.743,164.652,41.879,102.467,0.995045,-1,-1,-1
725,-1,72.7021,239.713,37.0839,80.866,0.989547,-1,-1,-1
725,-1,478.476,203.486,50.277,109.876,0.985986,-1,-1,-1
725,-1,562.787,127.453,37.293,64.575,0.984153,-1,-1,-1
725,-1,537.615,198.325,29.355,80.588,0.982075,-1,-1,-1
725,-1,100.02,173.634,29.44,77.92,0.955997,-1,-1,-1
725,-1,520.679,194.858,31.011,96.132,0.882253,-1,-1,-1
726,-1,278.044,172.987,35.827,94.798,0.99154,-1,-1,-1
726,-1,489.354,196.182,37.576,99.176,0.986521,-1,-1,-1
726,-1,570.051,119.558,34.932,65.29,0.983724,-1,-1,-1
726,-1,526.47,199.515,38.429,93.587,0.981165,-1,-1,-1
726,-1,89.3471,167.834,33.6229,90.993,0.979724,-1,-1,-1
726,-1,73.7194,227.469,42.1246,93.116,0.976186,-1,-1,-1
727,-1,495.92,203.16,32.158,93.263,0.986966,-1,-1,-1
727,-1,280.217,170.07,38.484,98.618,0.986561,-1,-1,-1
727,-1,78.8047,223.775,36.4753,99.108,0.985261,-1,-1,-1
727,-1,577.248,117.482,32.214,63.263,0.97213,-1,-1,-1
727,-1,528.548,198.235,34.139,94.9,0.969686,-1,-1,-1
727,-1,84.6011,173.739,41.3579,77.066,0.955155,-1,-1,-1
728,-1,82.4339,236.263,38.9321,94.36,0.988162,-1,-1,-1
728,-1,282.785,177.799,38.152,88.966,0.987969,-1,-1,-1
728,-1,505.562,202.158,33.441,84.915,0.96591,-1,-1,-1
728,-1,576.987,124.804,30.753,66.096,0.951047,-1,-1,-1
728,-1,521.845,198.477,50.445,86.755,0.947288,-1,-1,-1
728,-1,79.2764,176.359,48.2676,83.655,0.943324,-1,-1,-1
729,-1,285.486,183.033,40.514,84.975,0.990497,-1,-1,-1
729,-1,502.831,198.235,41.786,107.725,0.987679,-1,-1,-1
729,-1,84.5707,210.321,41.1083,118.127,0.982879,-1,-1,-1
729,-1,582.885,122.779,36.861,61.016,0.966695,-1,-1,-1
729,-1,536.715,203.824,28.11,77.203,0.948401,-1,-1,-1
729,-1,75.23,173.23,34.244,78.903,0.871504,-1,-1,-1
730,-1,549.964,185.812,32.46,81.954,0.985328,-1,-1,-1
730,-1,499.553,193.93,44.003,107.769,0.983871,-1,-1,-1
730,-1,589.41,120.008,30.255,69.595,0.974847,-1,-1,-1
730,-1,87.8658,223.331,32.2752,88.636,0.964383,-1,-1,-1
730,-1,278.135,187.49,44.583,89.95,0.963564,-1,-1,-1
730,-1,68.9894,164.935,30.1598,105.048,0.945211,-1,-1,-1
730,-1,261.704,187.928,30.116,69.251,0.661687,-1,-1,-1
731,-1,497.902,193.076,35.208,83.564,0.98021,-1,-1,-1
731,-1,90.0536,239.082,35.9804,66.562,0.978923,-1,-1,-1
731,-1,555.262,195.007,33.002,79.246,0.977437,-1,-1,-1
731,-1,584.108,109.331,33.844,74.656,0.972837,-1,-1,-1
731,-1,58.0396,166.579,33.5883,83.415,0.970656,-1,-1,-1
731,-1,275.774,184.337,31.761,74.343,0.962376,-1,-1,-1
731,-1,310.529,192.587,31.803,75.82,0.959982,-1,-1,-1
731,-1,526.555,190.847,25.303,97.684,0.59708,-1,-1,-1
731,-1,293.696,181.985,30.623,77.465,0.574922,-1,-1,-1
732,-1,88.6631,237.788,53.5659,85.697,0.991554,-1,-1,-1
732,-1,279.349,181.262,35.824,80.306,0.984329,-1,-1,-1
732,-1,492.281,195.841,34.668,82.355,0.983253,-1,-1,-1
732,-1,560.028,191.388,34.96,82.436,0.982355,-1,-1,-1
732,-1,52.7121,167.87,42.8183,82.716,0.979109,-1,-1,-1
732,-1,594.088,102.153,30.422,75.414,0.957493,-1,-1,-1
732,-1,317.382,194.87,28.709,71.715,0.874505,-1,-1,-1
732,-1,530.56,199.647,24.698,97.3,0.781122,-1,-1,-1
732,-1,259.028,175.511,37.16,87.836,0.542343,-1,-1,-1
733,-1,555.207,183.891,40.344,93.713,0.989717,-1,-1,-1
733,-1,482.468,205.897,36.192,64.264,0.98898,-1,-1,-1
733,-1,87.5172,230.823,45.3198,90.46,0.983511,-1,-1,-1
733,-1,275.054,188.934,36.631,85.585,0.976269,-1,-1,-1
733,-1,52.643,172.024,36.6173,79.044,0.96824,-1,-1,-1
733,-1,594.948,110.137,24.398,65.473,0.962285,-1,-1,-1
733,-1,313.268,189.791,42.293,83.064,0.952311,-1,-1,-1
733,-1,520.137,192.579,41.162,121.842,0.910898,-1,-1,-1
734,-1,102.353,223.413,36.029,81.682,0.988507,-1,-1,-1
734,-1,46.7946,170.252,31.7094,71.679,0.983684,-1,-1,-1
734,-1,482.553,193.747,41.481,84.022,0.98362,-1,-1,-1
734,-1,281.125,177.901,33.745,80.754,0.982636,-1,-1,-1
734,-1,313.848,196.8,40.396,74.905,0.981696,-1,-1,-1
734,-1,565.232,188.196,31.995,74.714,0.9792,-1,-1,-1
734,-1,592.719,106.684,27.564,62.399,0.953155,-1,-1,-1
734,-1,538.216,205.266,26.048,89.049,0.940941,-1,-1,-1
735,-1,34.6867,170.009,49.484,73.696,0.989971,-1,-1,-1
735,-1,268.494,178.429,34.051,81.941,0.984149,-1,-1,-1
735,-1,322.333,201.507,31.64,72.464,0.983308,-1,-1,-1
735,-1,104.408,224.684,41.029,86.777,0.980894,-1,-1,-1
735,-1,475.277,191.298,37.802,85.747,0.979594,-1,-1,-1
735,-1,564.424,194.935,28.96,89.808,0.9726,-1,-1,-1
735,-1,596.92,106.576,26.619,60.88,0.947879,-1,-1,-1
735,-1,534.634,183.314,39.538,128.987,0.935647,-1,-1,-1
736,-1,36.9232,170.045,36.3372,73.878,0.990543,-1,-1,-1
736,-1,595.682,111.945,27.533,53.15,0.988895,-1,-1,-1
736,-1,546.851,200.81,42.263,112.215,0.986169,-1,-1,-1
736,-1,463.028,192.311,49.068,82.138,0.98572,-1,-1,-1
736,-1,277.507,176.286,36.825,90.065,0.985644,-1,-1,-1
736,-1,106.212,221.613,35.749,86.888,0.984734,-1,-1,-1
736,-1,325.936,192.412,37.205,92.891,0.983379,-1,-1,-1
736,-1,573.634,188.074,28.049,82.055,0.888274,-1,-1,-1
737,-1,321.765,189.663,45.719,85.406,0.992341,-1,-1,-1
737,-1,602.699,111.075,29.428,55.771,0.988862,-1,-1,-1
737,-1,547.129,187.274,45.841,124.428,0.987178,-1,-1,-1
737,-1,455.625,192.406,41.482,79.036,0.985334,-1,-1,-1
737,-1,112.552,223.407,35.357,87.561,0.983539,-1,-1,-1
737,-1,271.523,187.403,30.2,83.345,0.980931,-1,-1,-1
737,-1,34.6691,165.588,32.0996,78.507,0.97639,-1,-1,-1
738,-1,453.966,192.627,47.433,75.31,0.99137,-1,-1,-1
738,-1,28.6263,168.728,39.8413,74.069,0.991198,-1,-1,-1
738,-1,548.634,195.808,46.796,128.643,0.988455,-1,-1,-1
738,-1,266.083,189.555,36.943,79.722,0.987701,-1,-1,-1
738,-1,113.302,228.284,41.238,80.442,0.98361,-1,-1,-1
738,-1,320.078,201.205,44.1,72.184,0.980541,-1,-1,-1
738,-1,598.087,107.722,25.34,57.788,0.974028,-1,-1,-1
738,-1,612.252,104.469,24.168,62.477,0.749607,-1,-1,-1
739,-1,114.117,216.099,41.237,82.698,0.991464,-1,-1,-1
739,-1,443.659,189.46,40.81,73.568,0.988046,-1,-1,-1
739,-1,321.087,191.359,47.744,95.411,0.987511,-1,-1,-1
739,-1,18.5513,160.478,32.1812,66.588,0.980475,-1,-1,-1
739,-1,561.961,184.109,42.687,137.018,0.979961,-1,-1,-1
739,-1,265.394,184.556,36.371,84.468,0.979388,-1,-1,-1
739,-1,613.505,113.188,27.222,57.904,0.972255,-1,-1,-1
740,-1,336.033,198.296,35.644,90.974,0.991441,-1,-1,-1
740,-1,436.611,193.516,40.171,75.055,0.990724,-1,-1,-1
740,-1,15.4351,158.336,31.5378,73.416,0.986914,-1,-1,-1
740,-1,609.066,109.675,29.194,61.431,0.980439,-1,-1,-1
740,-1,121.251,217.32,37.318,83.02,0.977691,-1,-1,-1
740,-1,564.774,192.446,39.172,123.786,0.961849,-1,-1,-1
740,-1,266.771,199.141,31.784,81.161,0.948256,-1,-1,-1
741,-1,425.354,173.949,46.464,93.794,0.992985,-1,-1,-1
741,-1,620.584,114.032,30.784,57.785,0.985705,-1,-1,-1
741,-1,569.258,216.418,40.756,103.384,0.98493,-1,-1,-1
741,-1,263.211,202.343,37.796,67.955,0.984153,-1,-1,-1
741,-1,10.7111,163.675,28.4516,62.77,0.982068,-1,-1,-1
741,-1,116.324,211.458,44.194,78.742,0.98183,-1,-1,-1
741,-1,335.357,202.802,33.933,78.353,0.95222,-1,-1,-1
741,-1,549.362,177.016,34.118,102.418,0.830217,-1,-1,-1
742,-1,257.682,193.645,37.415,82.144,0.991633,-1,-1,-1
742,-1,582.115,219.694,34.555,97.367,0.988996,-1,-1,-1
742,-1,119.724,222.69,50.744,79.012,0.988365,-1,-1,-1
742,-1,622.306,103.861,32.225,75.118,0.988121,-1,-1,-1
742,-1,331.888,197.524,53.278,92.805,0.987083,-1,-1,-1
742,-1,428.341,181.584,37.118,87.603,0.980657,-1,-1,-1
742,-1,2.75917,159.733,41.0013,84.771,0.980495,-1,-1,-1
742,-1,558.625,177.696,32.249,78.914,0.960442,-1,-1,-1
743,-1,589.821,212.648,35.445,105.18,0.99108,-1,-1,-1
743,-1,633.883,102.567,26.937,66.225,0.987764,-1,-1,-1
743,-1,254.234,194.85,33.122,83.196,0.986334,-1,-1,-1
743,-1,131.205,220.743,43.078,79.178,0.98583,-1,-1,-1
743,-1,344.685,203.181,47.307,96.458,0.982071,-1,-1,-1
743,-1,536.198,180.392,52.114,81.091,0.980198,-1,-1,-1
743,-1,3.73904,161.648,32.357,79.08,0.978858,-1,-1,-1
744,-1,596.918,216.39,37.215,100.339,0.990074,-1,-1,-1
744,-1,352.795,208.665,38.982,83.975,0.989884,-1,-1,-1
744,-1,134.9,208.297,33.78,81.462,0.988369,-1,-1,-1
744,-1,632.798,102.892,26.59,62.857,0.984999,-1,-1,-1
744,-1,533.074,176.763,49.766,86.035,0.980729,-1,-1,-1
744,-1,0.305878,167.912,25.0134,63.485,0.977589,-1,-1,-1
744,-1,250.412,201.946,35.617,79.601,0.958317,-1,-1,-1
744,-1,735.709,67.1722,27.423,28.6246,0.636297,-1,-1,-1
745,-1,141.314,202.022,36.533,85.201,0.992185,-1,-1,-1
745,-1,249.101,190.283,37.238,89.705,0.990218,-1,-1,-1
745,-1,605.653,212.407,33.216,100.039,0.99002,-1,-1,-1
745,-1,538.376,175.58,35.427,76.32,0.984232,-1,-1,-1
745,-1,631.599,108.018,27.785,68.332,0.97294,-1,-1,-1
745,-1,353.16,202.478,43.125,84.719,0.960364,-1,-1,-1
745,-1,0,159.846,19.9107,73.458,0.937311,-1,-1,-1
746,-1,604.583,212.99,50.298,109.507,0.990246,-1,-1,-1
746,-1,252.522,207.174,29.536,80.794,0.98676,-1,-1,-1
746,-1,519.21,173.547,57.861,88.224,0.985698,-1,-1,-1
746,-1,372.24,218.007,34.864,77.548,0.981801,-1,-1,-1
746,-1,145.012,199.799,47.401,88.309,0.980191,-1,-1,-1
746,-1,644.833,112.49,25.464,56.821,0.970863,-1,-1,-1
747,-1,153.404,191.739,42.122,104.49,0.992856,-1,-1,-1
747,-1,610.811,207.773,42.427,116.751,0.991768,-1,-1,-1
747,-1,242.124,204.371,30.997,82.64,0.990964,-1,-1,-1
747,-1,367.107,202.043,40.98,107.616,0.98581,-1,-1,-1
747,-1,522.814,179.815,46.049,77.943,0.985667,-1,-1,-1
747,-1,638.623,107.756,31.494,65.415,0.985132,-1,-1,-1
748,-1,372.624,192.068,40.072,109.059,0.992158,-1,-1,-1
748,-1,614.974,205.535,42.6,113.367,0.991962,-1,-1,-1
748,-1,158.145,194.33,33.984,92.807,0.986864,-1,-1,-1
748,-1,513.944,179.921,46.372,79.584,0.984743,-1,-1,-1
748,-1,644.398,112.263,36.218,55.221,0.981213,-1,-1,-1
748,-1,243.856,199.36,30.48,86.885,0.978977,-1,-1,-1
749,-1,374.248,185.096,39.342,88.823,0.990785,-1,-1,-1
749,-1,235.256,207.645,46.14,89.89,0.985388,-1,-1,-1
749,-1,513.667,166.84,36.893,83.915,0.982156,-1,-1,-1
749,-1,625.23,211.707,50.84,104.55,0.977389,-1,-1,-1
749,-1,169.779,198.704,32.333,81.835,0.97549,-1,-1,-1
749,-1,650.905,108.644,33.727,66.319,0.963681,-1,-1,-1
750,-1,228.87,204.221,48.518,107.049,0.990309,-1,-1,-1
750,-1,369.759,185.556,44.013,101.244,0.98945,-1,-1,-1
750,-1,634.9,206.711,39.17,111.908,0.988934,-1,-1,-1
750,-1,510.243,168.981,35.065,77.416,0.985337,-1,-1,-1
750,-1,172.26,198.403,39.315,85.114,0.981725,-1,-1,-1
750,-1,654.909,104.291,32.483,68.371,0.973291,-1,-1,-1
751,-1,632.401,209.245,38.697,107.767,0.992353,-1,-1,-1
751,-1,225.812,216.712,48.885,93.792,0.991096,-1,-1,-1
751,-1,502.091,174.332,35.216,70.937,0.989746,-1,-1,-1
751,-1,174.264,204.478,39.46,75.68,0.979024,-1,-1,-1
751,-1,659.659,115.374,29.386,57.18,0.9776,-1,-1,-1
751,-1,372.924,177.915,41.324,98.987,0.977099,-1,-1,-1
752,-1,361.324,181.592,36.482,78.33,0.991576,-1,-1,-1
752,-1,637.297,215.473,41.93,112.795,0.99055,-1,-1,-1
752,-1,224.899,206.706,42.345,104.098,0.990275,-1,-1,-1
752,-1,502.594,176.843,36.403,65.375,0.987157,-1,-1,-1
752,-1,664.345,118.795,28.343,54.929,0.978075,-1,-1,-1
752,-1,182.633,199.592,41.798,76.399,0.976076,-1,-1,-1
752,-1,397.21,180.614,41.376,128.83,0.767329,-1,-1,-1
753,-1,645.429,208.292,40.798,99.353,0.988557,-1,-1,-1
753,-1,489.593,179.947,42.69,69.363,0.987693,-1,-1,-1
753,-1,235.795,216.032,33.939,87.4,0.980962,-1,-1,-1
753,-1,355.089,184.48,31.489,71.542,0.979686,-1,-1,-1
753,-1,669.975,116.196,26.545,49.128,0.95345,-1,-1,-1
753,-1,403.4,183.834,43.475,127.744,0.919971,-1,-1,-1
753,-1,194.987,201.179,28.55,82.106,0.883191,-1,-1,-1
754,-1,640.791,211.643,54.614,100.296,0.993321,-1,-1,-1
754,-1,357.194,179.166,33.697,78.25,0.99306,-1,-1,-1
754,-1,232.35,219.994,42.849,84.037,0.987025,-1,-1,-1
754,-1,487.944,177.599,36.698,69.617,0.970856,-1,-1,-1
754,-1,672.713,111.866,28.282,58.654,0.907603,-1,-1,-1
754,-1,403.134,173.562,43.696,133.225,0.84337,-1,-1,-1
754,-1,202.207,204.587,26.407,79.735,0.579907,-1,-1,-1
755,-1,647.069,204.819,40.314,110.225,0.993977,-1,-1,-1
755,-1,233.736,222.141,34.901,98.621,0.987035,-1,-1,-1
755,-1,341.104,186.918,39.482,70.48,0.981755,-1,-1,-1
755,-1,482.55,180.245,38.839,70.929,0.964803,-1,-1,-1
755,-1,674.305,113.206,31.252,61.827,0.814134,-1,-1,-1
755,-1,408.559,182.758,41.484,116.286,0.696925,-1,-1,-1
755,-1,208.816,201.277,25.647,93.603,0.512391,-1,-1,-1
756,-1,649.257,205.183,41.761,106.104,0.994343,-1,-1,-1
756,-1,231.926,219.498,40.061,101.129,0.991463,-1,-1,-1
756,-1,329.962,178.711,48.149,81.252,0.982888,-1,-1,-1
756,-1,472.451,179.597,45.327,68.115,0.981004,-1,-1,-1
756,-1,412.873,177.495,48.389,131.301,0.977044,-1,-1,-1
756,-1,673.097,117.891,33.56,62.658,0.876666,-1,-1,-1
757,-1,651.394,212.491,36.498,98.104,0.994184,-1,-1,-1
757,-1,229.882,221.886,43.509,102.902,0.991219,-1,-1,-1
757,-1,318.756,179.178,56.129,72.376,0.990911,-1,-1,-1
757,-1,470.141,180.042,45.459,62.57,0.988286,-1,-1,-1
757,-1,419.144,228.131,46.207,83.874,0.97154,-1,-1,-1
757,-1,670.856,110.197,34.251,69.221,0.917133,-1,-1,-1
758,-1,233.725,223.52,41.114,99.357,0.992729,-1,-1,-1
758,-1,650.741,206.191,36.466,100.615,0.991865,-1,-1,-1
758,-1,469.858,177.609,40.906,75.712,0.985052,-1,-1,-1
758,-1,432.467,208.306,43.698,120.921,0.979771,-1,-1,-1
758,-1,326.89,183.453,38.892,71.161,0.976457,-1,-1,-1
758,-1,674.987,113.212,30.185,64.295,0.960471,-1,-1,-1
759,-1,229.649,237.84,40.614,81.914,0.995935,-1,-1,-1
759,-1,310.137,176.123,38.631,76.297,0.991599,-1,-1,-1
759,-1,649.694,202.02,33.688,98.39,0.989302,-1,-1,-1
759,-1,441.254,213.641,34.019,87.958,0.952481,-1,-1,-1
759,-1,466.215,182.445,30.864,75.16,0.862577,-1,-1,-1
759,-1,685.436,116.94,23.464,58.868,0.84143,-1,-1,-1
760,-1,446.063,182.432,43.062,141.969,0.988899,-1,-1,-1
760,-1,236.256,225.665,42.46,101.936,0.987106,-1,-1,-1
760,-1,648.966,197.755,40.287,112.946,0.984954,-1,-1,-1
760,-1,311.601,182.813,41.581,76.209,0.980115,-1,-1,-1
760,-1,683.978,121.555,27.805,72.165,0.542564,-1,-1,-1
761,-1,229.425,187.934,45.629,144.63,0.98959,-1,-1,-1
761,-1,645.623,204.103,43.974,90,0.988572,-1,-1,-1
761,-1,450.105,198.591,43.423,125.682,0.986209,-1,-1,-1
761,-1,300.239,179.564,36.809,75.214,0.980783,-1,-1,-1
762,-1,235.397,196.033,42.162,142.545,0.992754,-1,-1,-1
762,-1,298.9,175.28,44.811,76.782,0.989884,-1,-1,-1
762,-1,451.74,180.176,39.318,133.541,0.987731,-1,-1,-1
762,-1,645.619,198.261,36.868,106.598,0.984276,-1,-1,-1
763,-1,228.318,186.744,45.138,143.561,0.987507,-1,-1,-1
763,-1,644.003,194.075,38.484,104.966,0.987089,-1,-1,-1
763,-1,298.172,174.539,34.23,77.974,0.980301,-1,-1,-1
763,-1,448.968,186.031,42.623,130.31,0.967906,-1,-1,-1
764,-1,463.712,215.262,35.852,103.807,0.992885,-1,-1,-1
764,-1,640.899,192.602,39.007,107.456,0.985713,-1,-1,-1
764,-1,240.633,188.684,42.482,148.006,0.977133,-1,-1,-1
764,-1,286.833,175.138,43.759,69.952,0.977033,-1,-1,-1
764,-1,436.13,180.509,35.955,68.902,0.884597,-1,-1,-1
765,-1,468.96,219.874,38.164,102.225,0.99046,-1,-1,-1
765,-1,294.411,172.287,31.291,86.237,0.987009,-1,-1,-1
765,-1,644.348,195.063,36.237,103.452,0.984805,-1,-1,-1
765,-1,241.046,190.134,46.769,148.022,0.983931,-1,-1,-1
765,-1,428.03,181.613,39.57,71.833,0.961174,-1,-1,-1
766,-1,254.123,218.673,44.462,119.892,0.986788,-1,-1,-1
766,-1,476.797,223.961,37.943,103.568,0.986685,-1,-1,-1
766,-1,632.672,194.945,40.426,101.77,0.971881,-1,-1,-1
767,-1,622.953,201.01,55.37,100.317,0.987583,-1,-1,-1
767,-1,480.978,223.877,35.343,105.912,0.984361,-1,-1,-1
767,-1,256.87,185.438,47.192,158.523,0.978122,-1,-1,-1
768,-1,634.276,192.079,31.845,96.338,0.987948,-1,-1,-1
768,-1,262.729,176.285,49.53,167.034,0.987619,-1,-1,-1
768,-1,484.732,226.236,39.968,88.245,0.979252,-1,-1,-1
769,-1,269.392,163.783,53.017,185.849,0.995723,-1,-1,-1
769,-1,498.578,226.175,35.554,106.084,0.993509,-1,-1,-1
769,-1,618.795,197.3,39.935,99.505,0.992251,-1,-1,-1
770,-1,283.46,231.192,41.514,105.323,0.993772,-1,-1,-1
770,-1,616.36,191.607,37.169,99.806,0.990821,-1,-1,-1
770,-1,500.788,230.32,36.413,97.523,0.988908,-1,-1,-1
770,-1,260.969,175.556,43.42,104.703,0.930737,-1,-1,-1
770,-1,394.882,180.122,43.216,77.169,0.751629,-1,-1,-1
771,-1,506.347,226.897,37.764,97.104,0.992513,-1,-1,-1
771,-1,284.607,239.638,48.171,104.66,0.991708,-1,-1,-1
771,-1,613.372,192.491,38.391,103.262,0.980509,-1,-1,-1
771,-1,263.468,166.307,44.479,106.732,0.966269,-1,-1,-1
771,-1,387.836,189.156,34.283,82.809,0.949829,-1,-1,-1
771,-1,682.465,121.43,27.93,76.249,0.613176,-1,-1,-1
772,-1,511.645,233.638,41.161,95.819,0.99392,-1,-1,-1
772,-1,612.187,192.65,39.096,91.543,0.988874,-1,-1,-1
772,-1,303.158,239.866,39.84,105.683,0.985018,-1,-1,-1
772,-1,372.633,201.352,37.791,67.444,0.983461,-1,-1,-1
772,-1,261.594,166.178,40.806,82.893,0.980198,-1,-1,-1
772,-1,677.037,121.109,33.307,77.929,0.724052,-1,-1,-1
773,-1,526.895,231.645,36.791,103.825,0.985934,-1,-1,-1
773,-1,607.032,194.799,40.208,97.88,0.984982,-1,-1,-1
773,-1,310.083,241.395,36.684,98.161,0.984248,-1,-1,-1
773,-1,365.166,194.453,39.252,68.552,0.980568,-1,-1,-1
773,-1,265.326,170.314,41.824,86.139,0.969348,-1,-1,-1
773,-1,685.274,128.658,24.703,67.662,0.831459,-1,-1,-1
774,-1,520.034,232.267,46.876,110.406,0.992868,-1,-1,-1
774,-1,300.364,242.765,46.361,108.724,0.98886,-1,-1,-1
774,-1,610.217,194.604,32.526,93.849,0.983556,-1,-1,-1
774,-1,360.228,192.937,43.515,80.45,0.974483,-1,-1,-1
774,-1,255.883,174.393,31.755,69.095,0.956643,-1,-1,-1
774,-1,681.117,132.779,27.56,67.323,0.884567,-1,-1,-1
774,-1,278.975,174.91,31.967,77.301,0.86893,-1,-1,-1
775,-1,520.794,240.351,46.238,95.383,0.993485,-1,-1,-1
775,-1,608.708,194.816,32.477,99.568,0.992792,-1,-1,-1
775,-1,303.597,241.778,61.038,112.082,0.988018,-1,-1,-1
775,-1,356.571,187.982,38.318,85.476,0.957684,-1,-1,-1
775,-1,252.998,172.1,30.192,71.837,0.957202,-1,-1,-1
775,-1,287.475,172.659,35.286,82.48,0.918838,-1,-1,-1
775,-1,674.951,131.061,30.298,66.798,0.879343,-1,-1,-1
776,-1,607.07,198.51,35.117,99.094,0.992638,-1,-1,-1
776,-1,538.8,239.72,36.973,96.705,0.982585,-1,-1,-1
776,-1,320.542,238.158,53.616,114.49,0.982013,-1,-1,-1
776,-1,249.16,167.908,30.919,70.4,0.981651,-1,-1,-1
776,-1,289.447,174.316,36.089,82.708,0.947693,-1,-1,-1
776,-1,674.429,139.04,30.173,60.371,0.845337,-1,-1,-1
777,-1,605.28,187.926,35.719,106.096,0.992348,-1,-1,-1
777,-1,540.426,237.12,35.813,99.658,0.98728,-1,-1,-1
777,-1,328.823,202.528,47.965,152.009,0.979936,-1,-1,-1
777,-1,238.946,170.766,47.284,79.444,0.973773,-1,-1,-1
777,-1,290.56,170.229,35.873,91.51,0.957806,-1,-1,-1
777,-1,667.34,136.755,30.931,63.752,0.713446,-1,-1,-1
778,-1,594.9,197.144,54.982,103.418,0.993309,-1,-1,-1
778,-1,237.495,170.097,37.146,69.684,0.983734,-1,-1,-1
778,-1,545.893,235.929,36.661,108.1,0.982637,-1,-1,-1
778,-1,333.303,236.573,45.414,115.069,0.980232,-1,-1,-1
778,-1,297.105,165.168,31.075,81.288,0.928556,-1,-1,-1
778,-1,667.51,136.815,28.047,59.896,0.59684,-1,-1,-1
779,-1,333.094,248.219,53.85,114.161,0.995565,-1,-1,-1
779,-1,605.614,191.867,34.499,101.942,0.994468,-1,-1,-1
779,-1,546.34,238.202,54.603,110.962,0.983764,-1,-1,-1
779,-1,234.241,168.913,46.542,79.141,0.98287,-1,-1,-1
779,-1,310.756,167.482,43.408,106.379,0.948018,-1,-1,-1
779,-1,667.762,139.23,29.969,54.613,0.582301,-1,-1,-1
780,-1,340.073,253.195,50.307,115.224,0.992844,-1,-1,-1
780,-1,610.03,198.358,34.522,100.457,0.991229,-1,-1,-1
780,-1,558.589,238.137,36.607,99.468,0.990873,-1,-1,-1
780,-1,306.401,172.391,42.737,114.063,0.975398,-1,-1,-1
780,-1,238.124,165.716,31.006,80.984,0.931535,-1,-1,-1
780,-1,667.179,135.35,27.922,66.029,0.885589,-1,-1,-1
781,-1,344.827,253.635,47.553,123.499,0.991983,-1,-1,-1
781,-1,609.541,195.033,39.464,106.248,0.991186,-1,-1,-1
781,-1,303.082,165.869,43.142,111.335,0.988874,-1,-1,-1
781,-1,558.927,241.864,46.746,113.344,0.97543,-1,-1,-1
781,-1,234.637,166.998,31.588,79.106,0.958566,-1,-1,-1
781,-1,664.671,138.529,27.835,62.69,0.928763,-1,-1,-1
782,-1,350.388,252.163,39.227,112.894,0.989789,-1,-1,-1
782,-1,562.194,235.704,52.605,124.168,0.988816,-1,-1,-1
782,-1,612.781,196.216,30.952,96.013,0.988376,-1,-1,-1
782,-1,232.276,162.334,36.21,74.626,0.972059,-1,-1,-1
782,-1,294.12,190.979,39.24,78.832,0.964535,-1,-1,-1
782,-1,662.444,137.104,28.792,65.537,0.940924,-1,-1,-1
783,-1,570.133,247.963,38.605,100.948,0.995874,-1,-1,-1
783,-1,282.828,185.954,46.085,83.933,0.994459,-1,-1,-1
783,-1,362.39,255.869,39.346,108.174,0.99086,-1,-1,-1
783,-1,218.291,162.534,47.145,73.641,0.970371,-1,-1,-1
783,-1,617.63,205.886,33.485,104.196,0.96448,-1,-1,-1
783,-1,322.684,164.889,35.16,71.083,0.919105,-1,-1,-1
783,-1,657.101,128.623,31.883,64.382,0.813878,-1,-1,-1
784,-1,282.78,196.321,33.677,76.358,0.994985,-1,-1,-1
784,-1,579.819,247.457,40.934,117.327,0.992866,-1,-1,-1
784,-1,360.41,277.525,48.569,85.466,0.991896,-1,-1,-1
784,-1,214.742,166.678,48.248,70.82,0.980217,-1,-1,-1
784,-1,330.62,164.839,36.389,86.508,0.971682,-1,-1,-1
784,-1,619.681,208.324,29.309,100.118,0.910291,-1,-1,-1
784,-1,650.622,129.442,35.262,73.819,0.904055,-1,-1,-1
785,-1,270.639,198.796,33.593,76.628,0.994521,-1,-1,-1
785,-1,368.971,266.458,41.067,109.298,0.993728,-1,-1,-1
785,-1,575.745,242.664,46.637,118.774,0.990787,-1,-1,-1
785,-1,337.329,169.386,40.826,70.176,0.982269,-1,-1,-1
785,-1,222.796,164.677,28.114,70.801,0.970446,-1,-1,-1
785,-1,623.035,216.635,28.326,89.892,0.950097,-1,-1,-1
785,-1,650.831,143.217,31.444,58.14,0.885704,-1,-1,-1
786,-1,589.469,265.871,35.356,95.869,0.993882,-1,-1,-1
786,-1,379.463,257.493,43.231,111.435,0.990973,-1,-1,-1
786,-1,345.782,170.118,32.752,66.567,0.978023,-1,-1,-1
786,-1,222.894,158.184,27.795,72.877,0.966004,-1,-1,-1
786,-1,267.459,194.175,31.929,64.927,0.95438,-1,-1,-1
786,-1,624.026,217.513,32.408,76.005,0.833689,-1,-1,-1
787,-1,582.785,245.422,46.323,124.651,0.991251,-1,-1,-1
787,-1,343.841,160.28,43.061,79.165,0.988168,-1,-1,-1
787,-1,382.534,271.259,47.027,96.561,0.985822,-1,-1,-1
787,-1,224.361,159.829,29.913,76.928,0.981677,-1,-1,-1
787,-1,261.18,202.857,32.23,69.37,0.978092,-1,-1,-1
787,-1,626.28,211.691,37.16,107.395,0.906054,-1,-1,-1
787,-1,653.475,131.953,29.755,78.668,0.675732,-1,-1,-1
788,-1,260.529,193.575,33.696,74.198,0.993461,-1,-1,-1
788,-1,588.775,251.565,41.314,103.242,0.992335,-1,-1,-1
788,-1,348.201,156.364,39.397,77.59,0.983368,-1,-1,-1
788,-1,401.309,270.944,37.832,112.104,0.98191,-1,-1,-1
788,-1,223.205,156.556,28.762,79.017,0.941151,-1,-1,-1
788,-1,631.284,222.197,34.876,101.717,0.923689,-1,-1,-1
788,-1,642.678,139.452,37.485,60.811,0.868919,-1,-1,-1
789,-1,353.117,162.584,46.382,63.875,0.989575,-1,-1,-1
789,-1,601.306,257.624,35.713,107.528,0.979914,-1,-1,-1
789,-1,404.564,267.984,46.611,116.711,0.97614,-1,-1,-1
789,-1,252.372,188.458,34.453,86.603,0.957243,-1,-1,-1
789,-1,628.443,230.495,34.755,107.277,0.953333,-1,-1,-1
789,-1,224.792,162.639,27.139,79.282,0.908017,-1,-1,-1
789,-1,645.399,138.168,32.877,65.606,0.769074,-1,-1,-1
790,-1,361.758,165.873,37.696,68.224,0.985997,-1,-1,-1
790,-1,601.548,248.885,45.344,117.15,0.970444,-1,-1,-1
790,-1,638.048,232.014,31.36,92.007,0.961044,-1,-1,-1
790,-1,654.141,142.45,23.938,64.195,0.943464,-1,-1,-1
790,-1,250.166,201.393,31.988,60.349,0.932136,-1,-1,-1
791,-1,363.397,164.665,34.972,71.018,0.984066,-1,-1,-1
791,-1,244.31,182.11,30.426,76.196,0.977506,-1,-1,-1
791,-1,597.079,250.799,45.108,124.712,0.971542,-1,-1,-1
791,-1,636.131,217.926,42.337,114.217,0.970847,-1,-1,-1
791,-1,654.828,146.33,24.262,62.326,0.880494,-1,-1,-1
791,-1,215.893,168.602,28.571,60.239,0.79874,-1,-1,-1
791,-1,417.302,264.161,34.545,100.221,0.785702,-1,-1,-1
792,-1,603.014,249.183,45.222,108.829,0.971911,-1,-1,-1
792,-1,371.269,162.537,36.422,71.37,0.970711,-1,-1,-1
792,-1,635.4,223.192,42.268,102.503,0.970216,-1,-1,-1
792,-1,243.473,195.618,33.745,61.371,0.967252,-1,-1,-1
792,-1,423.455,266.012,39.216,107.528,0.966666,-1,-1,-1
792,-1,653.021,140.587,24.691,66.899,0.874827,-1,-1,-1
792,-1,215.985,166.465,29.937,67.953,0.733202,-1,-1,-1
793,-1,432.971,281.347,33.788,83.885,0.990501,-1,-1,-1
793,-1,237.913,185.479,30.791,76.524,0.966967,-1,-1,-1
793,-1,608.491,239.787,57.853,120.785,0.964537,-1,-1,-1
793,-1,376.377,166.019,34.067,71.995,0.956821,-1,-1,-1
793,-1,655.52,143.641,28.663,60.991,0.907057,-1,-1,-1
794,-1,608.087,260.032,39.041,108.85,0.984956,-1,-1,-1
794,-1,434.616,268.574,43.066,119.17,0.981464,-1,-1,-1
794,-1,227.974,185.027,43.194,85.656,0.980357,-1,-1,-1
794,-1,379.846,169.824,38.912,62.307,0.958942,-1,-1,-1
794,-1,642.539,237.27,39.933,94.816,0.943659,-1,-1,-1
794,-1,646.214,148.383,26.065,68.118,0.797936,-1,-1,-1
795,-1,440.141,273.083,39.768,106.051,0.986072,-1,-1,-1
795,-1,384.494,160.308,37.276,72.243,0.984113,-1,-1,-1
795,-1,228.362,179.127,38.73,85.894,0.978542,-1,-1,-1
795,-1,607.315,260.387,37.537,120.87,0.975396,-1,-1,-1
795,-1,642.86,232.588,31.535,111.739,0.962783,-1,-1,-1
795,-1,650.41,139.082,25.102,75.468,0.90717,-1,-1,-1
================================================
FILE: data/TUD-Campus/det.txt
================================================
1,-1,281.931,187.466,79.93,209.537,0.997784,-1,-1,-1
1,-1,56.6878,144.225,93.5572,295.907,0.997601,-1,-1,-1
1,-1,378.618,188.922,166.431,234.127,0.995973,-1,-1,-1
1,-1,203.983,207.153,45.553,133.834,0.985409,-1,-1,-1
1,-1,155.331,202.131,56.161,161.993,0.94249,-1,-1,-1
1,-1,136.718,190.031,41.27,176.146,0.852382,-1,-1,-1
2,-1,269.796,197.997,88.397,193.976,0.997721,-1,-1,-1
2,-1,56.5504,144.96,98.9106,303.352,0.997179,-1,-1,-1
2,-1,401.402,172.071,144.295,258.762,0.994948,-1,-1,-1
2,-1,167.374,227.424,51.28,131.007,0.9619,-1,-1,-1
2,-1,216.511,210.273,36.69,136.403,0.938671,-1,-1,-1
2,-1,147.794,204.774,39.482,159.201,0.838842,-1,-1,-1
3,-1,64.7874,157.4,108.544,283.358,0.997287,-1,-1,-1
3,-1,268.043,184.128,72.475,201.941,0.995447,-1,-1,-1
3,-1,416.857,161.232,120.985,266.794,0.993389,-1,-1,-1
3,-1,171.6,215.795,53.846,142.888,0.962757,-1,-1,-1
3,-1,215.405,195.66,44.924,150.998,0.949537,-1,-1,-1
3,-1,140.357,194.457,51.476,168.939,0.847853,-1,-1,-1
4,-1,420.791,164.003,129.139,270.287,0.996617,-1,-1,-1
4,-1,262.994,195.135,78.454,199.697,0.995761,-1,-1,-1
4,-1,61.256,150.2,126.576,301.18,0.995554,-1,-1,-1
4,-1,175.208,208.079,55.479,155.254,0.974032,-1,-1,-1
4,-1,224.823,211.013,38.287,134.287,0.941396,-1,-1,-1
4,-1,155.668,205.692,38.399,144.88,0.507287,-1,-1,-1
5,-1,434.105,159.018,124.947,275.907,0.995753,-1,-1,-1
5,-1,262.358,188.535,72.352,193.758,0.992384,-1,-1,-1
5,-1,64.7231,153.427,160.571,274.242,0.98755,-1,-1,-1
5,-1,228.192,212.353,42.889,135.124,0.980498,-1,-1,-1
5,-1,180.333,213.121,55.575,149.266,0.953667,-1,-1,-1
5,-1,106.094,162.331,69.714,178.466,0.667354,-1,-1,-1
6,-1,256.331,179.604,59.298,204.445,0.996394,-1,-1,-1
6,-1,441.627,174.493,107.1,250.987,0.992144,-1,-1,-1
6,-1,65.5473,164.478,162.939,280.467,0.989228,-1,-1,-1
6,-1,177.409,216.893,54.008,144.582,0.967242,-1,-1,-1
6,-1,235.833,203.613,40.113,145.399,0.945697,-1,-1,-1
6,-1,109.369,166.868,67.014,158.526,0.759937,-1,-1,-1
6,-1,66.6542,214.755,29.3487,49.62,0.630435,-1,-1,-1
6,-1,191.531,202.875,35.481,68.687,0.503938,-1,-1,-1
7,-1,449.201,163.894,108.957,269.857,0.998049,-1,-1,-1
7,-1,241.314,190.42,70.324,180.613,0.996652,-1,-1,-1
7,-1,71.6031,153.772,175.283,289.433,0.98706,-1,-1,-1
7,-1,185.659,234.378,53.154,120.168,0.954696,-1,-1,-1
7,-1,66.5255,212.778,30.7028,46.31,0.685141,-1,-1,-1
7,-1,115.778,166.117,72.839,177.268,0.591923,-1,-1,-1
8,-1,466.104,166.858,89.57,275.851,0.998298,-1,-1,-1
8,-1,244.407,174.561,61.66,215.743,0.996497,-1,-1,-1
8,-1,123.427,159.24,113.798,285.445,0.975059,-1,-1,-1
8,-1,201.122,217.371,44.858,143.165,0.950049,-1,-1,-1
9,-1,239.97,175.491,67.681,214.437,0.997788,-1,-1,-1
9,-1,470.983,158.791,86.855,266.716,0.994853,-1,-1,-1
9,-1,138.14,165.274,68.402,247.789,0.972396,-1,-1,-1
9,-1,209.038,223.205,29.442,123.454,0.699889,-1,-1,-1
10,-1,490.458,161.539,77.997,272.003,0.998887,-1,-1,-1
10,-1,227.859,180.966,80.777,208.864,0.997242,-1,-1,-1
10,-1,138.814,172.908,68.877,206.49,0.966586,-1,-1,-1
10,-1,207.795,207.341,32.676,156.651,0.771827,-1,-1,-1
11,-1,485.049,150.469,93.195,280.504,0.998951,-1,-1,-1
11,-1,218.328,194.324,90.187,191.6,0.991807,-1,-1,-1
11,-1,143.84,176.397,107.48,277.711,0.972094,-1,-1,-1
12,-1,492.869,156.645,94.179,276.098,0.999452,-1,-1,-1
12,-1,215.533,183.073,92.781,198.548,0.984114,-1,-1,-1
12,-1,154.816,151.072,92.624,290.63,0.9755,-1,-1,-1
13,-1,500.126,158.829,100.546,268.676,0.999186,-1,-1,-1
13,-1,161.066,145.736,103.624,302.782,0.993706,-1,-1,-1
13,-1,219.123,195.168,83.008,187.473,0.963507,-1,-1,-1
13,-1,268.418,207.036,43.63,109.807,0.769279,-1,-1,-1
14,-1,498.52,159.536,111.217,272.538,0.999149,-1,-1,-1
14,-1,159.829,138.46,138.931,303.042,0.997235,-1,-1,-1
14,-1,269.55,200.441,54.047,121.106,0.897891,-1,-1,-1
15,-1,176.066,149.162,106.475,296.273,0.996929,-1,-1,-1
15,-1,508.997,161.941,106.668,264.479,0.996709,-1,-1,-1
15,-1,279.589,206.513,47.986,132.068,0.991513,-1,-1,-1
16,-1,170.94,146.702,113.853,304.278,0.998414,-1,-1,-1
16,-1,510.357,169.143,113.596,261.805,0.997883,-1,-1,-1
16,-1,285.279,205.905,45.787,143.008,0.996877,-1,-1,-1
17,-1,513.378,168.154,113.737,270.782,0.998034,-1,-1,-1
17,-1,184.011,153.317,104.895,296.457,0.995869,-1,-1,-1
17,-1,284.166,201.934,62.379,141.058,0.917349,-1,-1,-1
18,-1,530.124,159.648,97.181,270.254,0.998161,-1,-1,-1
18,-1,295.778,203.537,48.616,138.326,0.990652,-1,-1,-1
18,-1,175.285,164.298,126.35,293.944,0.990241,-1,-1,-1
18,-1,173.823,181.474,53.406,209.544,0.620964,-1,-1,-1
18,-1,176.192,183.025,33.304,57.645,0.511746,-1,-1,-1
19,-1,539.591,153.148,99.409,281.173,0.997805,-1,-1,-1
19,-1,293.45,203.179,47.587,141.418,0.995965,-1,-1,-1
19,-1,189.64,154.469,116.908,306.153,0.988479,-1,-1,-1
19,-1,175.494,164.273,50.129,258.199,0.945116,-1,-1,-1
20,-1,537.547,161.26,100.558,263.552,0.994915,-1,-1,-1
20,-1,297.768,202.796,51.127,149.988,0.989496,-1,-1,-1
20,-1,165.673,178.039,55.952,215.088,0.979027,-1,-1,-1
20,-1,206.196,177.082,129.84,261.294,0.936912,-1,-1,-1
21,-1,161.149,174.498,65.619,210.752,0.993418,-1,-1,-1
21,-1,556.184,154.678,82.615,271.203,0.992796,-1,-1,-1
21,-1,308.105,214.424,51.618,137.41,0.982397,-1,-1,-1
21,-1,213.057,154.815,123.969,280.088,0.960469,-1,-1,-1
21,-1,0.304614,179.233,31.4182,114.456,0.783707,-1,-1,-1
21,-1,244.278,171.333,60.159,155.079,0.54348,-1,-1,-1
22,-1,149.979,174.619,70.719,217.891,0.994828,-1,-1,-1
22,-1,568.422,149.768,70.404,280.913,0.99077,-1,-1,-1
22,-1,207.229,176.429,158.534,273.265,0.963839,-1,-1,-1
22,-1,309.637,204.845,58.803,147.657,0.953732,-1,-1,-1
22,-1,0.341978,190.728,33.2533,118.414,0.598427,-1,-1,-1
23,-1,146.211,174.943,55.788,218.104,0.996437,-1,-1,-1
23,-1,222.515,166.049,146.811,285.421,0.984833,-1,-1,-1
23,-1,578.631,161.57,60.369,250.513,0.978597,-1,-1,-1
23,-1,315.149,211.57,51.41,139.016,0.82101,-1,-1,-1
23,-1,0,176.548,42.4124,182.788,0.807631,-1,-1,-1
23,-1,219.189,187.387,50.953,185.493,0.752326,-1,-1,-1
23,-1,232.408,190.999,35.075,77.37,0.665798,-1,-1,-1
23,-1,261.824,164.744,60.731,170.644,0.51734,-1,-1,-1
24,-1,120.94,168.093,92.762,217.972,0.997513,-1,-1,-1
24,-1,0,173.036,43.4966,249.438,0.995833,-1,-1,-1
24,-1,235.088,172.725,134.61,283.122,0.979642,-1,-1,-1
24,-1,587.703,167.199,49.034,194.509,0.83355,-1,-1,-1
24,-1,319.567,206.801,56.567,143.125,0.78107,-1,-1,-1
24,-1,237.824,193.942,33.006,63.059,0.745167,-1,-1,-1
24,-1,235.658,188.323,54.974,174.589,0.727878,-1,-1,-1
25,-1,128.08,175.868,78.991,217.391,0.998783,-1,-1,-1
25,-1,0,169.779,43.5329,264.267,0.991916,-1,-1,-1
25,-1,250.778,175.454,116.797,283.193,0.986607,-1,-1,-1
25,-1,594.308,164.484,41.633,165.173,0.924312,-1,-1,-1
25,-1,234.409,188.491,54.891,165.937,0.855918,-1,-1,-1
26,-1,117.979,169.148,91.506,231.195,0.996416,-1,-1,-1
26,-1,276.085,156.999,95.43,306.726,0.968984,-1,-1,-1
26,-1,598.229,166.819,40.771,140.663,0.937105,-1,-1,-1
26,-1,1.06226,162.698,48.8197,271.442,0.912433,-1,-1,-1
26,-1,246.053,185.637,44.164,91.566,0.899592,-1,-1,-1
27,-1,108.448,165.674,98.093,234.206,0.994798,-1,-1,-1
27,-1,1.2024,171.061,56.0132,267.714,0.972926,-1,-1,-1
27,-1,246.001,183.637,38.364,83.74,0.953834,-1,-1,-1
27,-1,297.584,158.02,72.841,298.984,0.901405,-1,-1,-1
27,-1,336.948,191.12,41.86,147.378,0.703058,-1,-1,-1
27,-1,207.225,251.565,106.188,107.56,0.541628,-1,-1,-1
28,-1,291.291,153.979,98.554,297.327,0.998769,-1,-1,-1
28,-1,2.65334,159.343,61.8022,270.842,0.996074,-1,-1,-1
28,-1,94.5332,160.062,106.569,229.124,0.994916,-1,-1,-1
28,-1,247.908,189.303,39.771,84.326,0.933535,-1,-1,-1
28,-1,240.511,202.438,58.227,156.799,0.892174,-1,-1,-1
29,-1,101.896,173.046,87.353,220.152,0.997026,-1,-1,-1
29,-1,3.57357,167.182,64.3818,267.084,0.996989,-1,-1,-1
29,-1,296.408,158.99,106.304,292.102,0.99595,-1,-1,-1
29,-1,233.094,235.938,81.058,127.304,0.978826,-1,-1,-1
29,-1,252.648,188.081,36.313,92.516,0.904551,-1,-1,-1
29,-1,282.918,197.294,31.465,90.84,0.533393,-1,-1,-1
30,-1,1.61432,165.358,84.5202,255.67,0.998407,-1,-1,-1
30,-1,84.9715,180.201,104.1,212.34,0.998033,-1,-1,-1
30,-1,298.765,156.522,107.762,287.927,0.997607,-1,-1,-1
30,-1,236.902,204.371,84.73,166.47,0.990803,-1,-1,-1
30,-1,260.489,193.295,34.741,76.84,0.96136,-1,-1,-1
30,-1,278.973,197.55,33.14,94.402,0.677042,-1,-1,-1
31,-1,298.533,164.243,120.345,292.144,0.997004,-1,-1,-1
31,-1,6.69603,168.509,77.3386,263.077,0.996586,-1,-1,-1
31,-1,79.7971,174.973,79.5639,225.656,0.995564,-1,-1,-1
31,-1,231.819,229.285,87.389,137.682,0.979197,-1,-1,-1
31,-1,261.922,194.421,30.702,78.838,0.950692,-1,-1,-1
31,-1,283.286,199.73,32.218,93.717,0.745606,-1,-1,-1
32,-1,78.4941,173.295,61.6979,232.272,0.997013,-1,-1,-1
32,-1,295.536,139.07,152.022,330.774,0.996519,-1,-1,-1
32,-1,254.08,191.101,64.058,175.491,0.99565,-1,-1,-1
32,-1,7.2247,179.15,87.1761,243.362,0.993169,-1,-1,-1
32,-1,263.553,198.501,36.144,79.56,0.916442,-1,-1,-1
32,-1,290.027,197.628,29.77,70.223,0.657551,-1,-1,-1
33,-1,301.642,154.963,146.467,301.105,0.997569,-1,-1,-1
33,-1,61.8175,184.27,93.2045,228.139,0.993515,-1,-1,-1
33,-1,256.862,197.953,63.877,165.937,0.990806,-1,-1,-1
33,-1,6.817,172.187,102.811,259.631,0.988907,-1,-1,-1
34,-1,325.309,158.45,131.699,301.195,0.996419,-1,-1,-1
34,-1,14.2686,186.743,129.69,228.132,0.996388,-1,-1,-1
34,-1,253.285,199.615,91.692,152.105,0.993194,-1,-1,-1
35,-1,326.76,168.898,131.84,291.788,0.995634,-1,-1,-1
35,-1,21.7875,178.825,112.406,249.32,0.992658,-1,-1,-1
35,-1,271.246,205.494,58.332,142.633,0.990056,-1,-1,-1
35,-1,181.266,202.465,28.409,45.086,0.573162,-1,-1,-1
36,-1,272.934,194.701,65.744,165.553,0.993505,-1,-1,-1
36,-1,345.346,160.774,125.408,302.775,0.99231,-1,-1,-1
36,-1,18.1651,183.853,125.926,246.998,0.991854,-1,-1,-1
36,-1,179.21,201.164,31.26,47.609,0.571801,-1,-1,-1
37,-1,278.425,192.768,67.382,165.509,0.996993,-1,-1,-1
37,-1,29.4217,189.89,100.517,225.353,0.993843,-1,-1,-1
37,-1,369.038,153.962,106.275,311.762,0.987658,-1,-1,-1
37,-1,26.3468,163.22,78.3662,122.548,0.604894,-1,-1,-1
38,-1,284.714,184.991,64.88,189.809,0.998419,-1,-1,-1
38,-1,375.979,155.153,113.622,316.029,0.996165,-1,-1,-1
38,-1,31.2307,153.131,92.2403,276.115,0.991285,-1,-1,-1
38,-1,34.3067,166.579,68.0333,86.014,0.588207,-1,-1,-1
39,-1,288.115,181.843,63.887,184.699,0.9978,-1,-1,-1
39,-1,33.9692,160.57,103.549,265.974,0.991199,-1,-1,-1
39,-1,390.001,138.03,95.184,327.333,0.983115,-1,-1,-1
40,-1,407.878,143.926,88.163,316.579,0.996842,-1,-1,-1
40,-1,16.4275,151.833,117.767,279.303,0.995886,-1,-1,-1
40,-1,289.984,192.418,69.409,175.954,0.995138,-1,-1,-1
40,-1,93.1497,170.342,52.8303,179.169,0.614041,-1,-1,-1
41,-1,400.443,139.002,99.102,320.273,0.997364,-1,-1,-1
41,-1,11.568,154.639,111.837,265.703,0.994788,-1,-1,-1
41,-1,304.011,198.958,52.204,145.665,0.990437,-1,-1,-1
41,-1,89.3375,172.641,59.3485,244.464,0.943441,-1,-1,-1
42,-1,412.382,147.176,102.682,311.293,0.998236,-1,-1,-1
42,-1,2.57338,158.935,114.21,265.946,0.997482,-1,-1,-1
42,-1,296.445,192.45,74.149,181.024,0.996432,-1,-1,-1
42,-1,92.0947,175.231,65.1163,239.653,0.963116,-1,-1,-1
43,-1,416.788,152.405,111.552,296.599,0.998226,-1,-1,-1
43,-1,4.08447,161.158,100.633,245.684,0.998079,-1,-1,-1
43,-1,303.764,192.901,73.902,182.642,0.997738,-1,-1,-1
43,-1,93.651,170.653,86.766,246.614,0.939239,-1,-1,-1
44,-1,419.964,135.649,114.734,330.791,0.998119,-1,-1,-1
44,-1,1.53414,174.309,82.6401,236.213,0.997731,-1,-1,-1
44,-1,303.117,205.545,80.945,155.834,0.996518,-1,-1,-1
44,-1,102.629,159.039,87.582,270.84,0.995254,-1,-1,-1
45,-1,1.67256,163.401,79.9973,247.567,0.998111,-1,-1,-1
45,-1,106.874,182.181,98.855,242.721,0.997768,-1,-1,-1
45,-1,418.572,147.323,118.812,313.66,0.997332,-1,-1,-1
45,-1,305.236,192.174,77.17,182.94,0.99676,-1,-1,-1
45,-1,148.706,177.068,54.11,104.433,0.760432,-1,-1,-1
46,-1,105.945,168.679,99.697,262.231,0.998493,-1,-1,-1
46,-1,305.053,195.14,76.231,174.384,0.997502,-1,-1,-1
46,-1,2.10851,158.744,69.3669,266.687,0.994696,-1,-1,-1
46,-1,424.021,133.457,130.946,319.476,0.994492,-1,-1,-1
47,-1,310.933,191.254,80.899,177.009,0.997615,-1,-1,-1
47,-1,111.517,160.711,107.784,261.454,0.997252,-1,-1,-1
47,-1,425.51,137.56,145.968,320.383,0.990545,-1,-1,-1
47,-1,0.395605,167.023,51.7516,201.432,0.962598,-1,-1,-1
48,-1,313.601,192.976,89.252,168.073,0.997545,-1,-1,-1
48,-1,435.931,138.466,148.324,330.787,0.993456,-1,-1,-1
48,-1,120.926,179.105,118.257,244.923,0.991124,-1,-1,-1
48,-1,0,173.276,42.6584,153.81,0.826132,-1,-1,-1
49,-1,318.534,206.975,75.493,154.623,0.994457,-1,-1,-1
49,-1,132.966,178.61,103.994,251.826,0.993245,-1,-1,-1
49,-1,438.767,151.366,138.48,308.437,0.991756,-1,-1,-1
49,-1,0.573276,184.988,30.2769,88.303,0.730952,-1,-1,-1
49,-1,454.513,200.934,55.726,141.052,0.614578,-1,-1,-1
50,-1,130.185,180.243,115.309,251.223,0.995544,-1,-1,-1
50,-1,452.875,159,133.895,302.181,0.994177,-1,-1,-1
50,-1,319.953,197.972,76.386,165.975,0.993406,-1,-1,-1
50,-1,465.487,207.47,55.95,145.202,0.842629,-1,-1,-1
51,-1,322.557,200.138,86.385,163.409,0.99487,-1,-1,-1
51,-1,458.495,152.945,143.977,307.623,0.973867,-1,-1,-1
51,-1,140.506,182.978,115.96,250.359,0.964487,-1,-1,-1
52,-1,334.544,200.407,85.245,171.222,0.996382,-1,-1,-1
52,-1,478.914,160.765,125.731,310.963,0.982917,-1,-1,-1
52,-1,164.951,186.157,95.672,240.461,0.945487,-1,-1,-1
52,-1,473.932,221.486,35.998,120.086,0.809936,-1,-1,-1
53,-1,333.684,203.933,81.051,164.82,0.993741,-1,-1,-1
53,-1,491.371,151.248,116.711,315.818,0.984342,-1,-1,-1
53,-1,173.8,178.639,89.222,139.368,0.978852,-1,-1,-1
53,-1,472.441,212.116,53.277,131.418,0.971175,-1,-1,-1
54,-1,346.089,191.553,71.768,174.547,0.988951,-1,-1,-1
54,-1,186.549,177.229,86.583,256.933,0.983098,-1,-1,-1
54,-1,496.234,157.59,122.11,301.835,0.97932,-1,-1,-1
54,-1,476.85,205.448,53.569,147.936,0.96676,-1,-1,-1
55,-1,512.724,142.999,115.03,318.323,0.995673,-1,-1,-1
55,-1,352.578,192.958,67.676,174.749,0.994056,-1,-1,-1
55,-1,193.69,184.511,78.22,253.339,0.987409,-1,-1,-1
55,-1,482.192,207.135,58.97,140.33,0.896179,-1,-1,-1
56,-1,197.877,171.213,93.298,252.52,0.999236,-1,-1,-1
56,-1,524.343,146.264,100.813,305.775,0.996306,-1,-1,-1
56,-1,353.16,201.659,63.97,146.763,0.988969,-1,-1,-1
56,-1,391.168,216.634,46.996,145.888,0.827745,-1,-1,-1
56,-1,485.683,208.17,86.652,147.703,0.661032,-1,-1,-1
57,-1,207.491,171.448,87.525,250.375,0.998257,-1,-1,-1
57,-1,526.406,151.83,107.909,308.497,0.997857,-1,-1,-1
57,-1,359.461,203.402,72.526,160.5,0.993262,-1,-1,-1
57,-1,488.928,209.988,83.074,142.147,0.754082,-1,-1,-1
58,-1,537.477,160.348,101.523,297.272,0.997085,-1,-1,-1
58,-1,207.834,169.808,105.124,254.892,0.996057,-1,-1,-1
58,-1,362.254,202.414,74.495,171.838,0.994832,-1,-1,-1
58,-1,494.682,212.734,72.417,139.282,0.815401,-1,-1,-1
59,-1,368.487,194.141,70.57,173.377,0.997523,-1,-1,-1
59,-1,551.123,145.261,85.155,311.827,0.996532,-1,-1,-1
59,-1,210.975,179.613,129.481,244.193,0.995308,-1,-1,-1
59,-1,495.879,223.886,70.621,137.252,0.935703,-1,-1,-1
60,-1,221.927,177.682,137.949,244.241,0.996689,-1,-1,-1
60,-1,365.071,200.737,82.778,171.595,0.99539,-1,-1,-1
60,-1,538.359,156.408,100.641,312.892,0.99308,-1,-1,-1
60,-1,507.234,219.557,60.747,134.32,0.835582,-1,-1,-1
61,-1,222.393,185.307,143.185,241.288,0.995221,-1,-1,-1
61,-1,367.485,199.75,78.681,151.5,0.991305,-1,-1,-1
61,-1,534.125,152.785,104.875,319.12,0.963246,-1,-1,-1
61,-1,576.377,184.333,49.141,190.192,0.655385,-1,-1,-1
61,-1,516.42,215.457,61.031,135.829,0.56515,-1,-1,-1
61,-1,419.678,203.381,33.259,140.307,0.542471,-1,-1,-1
62,-1,226.414,191.655,136.172,244.242,0.99621,-1,-1,-1
62,-1,371.399,204.638,73.482,160.841,0.995558,-1,-1,-1
62,-1,544.485,176.05,94.515,286.094,0.991782,-1,-1,-1
62,-1,517.609,203.262,57.069,140.613,0.9687,-1,-1,-1
62,-1,418.844,208.81,43.851,146.545,0.914553,-1,-1,-1
63,-1,249.48,182.113,113.83,252.98,0.998128,-1,-1,-1
63,-1,389.089,199.35,65.642,178.314,0.986921,-1,-1,-1
63,-1,532.68,202.899,49.574,142.749,0.986447,-1,-1,-1
63,-1,540.482,187.889,96.022,269.676,0.960656,-1,-1,-1
63,-1,592.438,210.12,37.023,134.644,0.888554,-1,-1,-1
64,-1,275.435,173.969,91.126,265.116,0.995931,-1,-1,-1
64,-1,383.635,200.812,65.029,161.449,0.99113,-1,-1,-1
64,-1,532.442,207.932,47.736,139.043,0.975959,-1,-1,-1
64,-1,423.71,208.82,39.692,138.565,0.819596,-1,-1,-1
64,-1,600.478,200.495,31.678,99.278,0.508747,-1,-1,-1
65,-1,391.67,204.976,73.277,163.219,0.997027,-1,-1,-1
65,-1,289.864,169.411,85.886,263.576,0.994629,-1,-1,-1
65,-1,535.735,209.005,49.269,139.408,0.991204,-1,-1,-1
66,-1,537.726,210.834,55.999,135.087,0.994092,-1,-1,-1
66,-1,400.242,200.479,71.843,167.368,0.989536,-1,-1,-1
66,-1,296.324,164.527,89.966,281.299,0.876203,-1,-1,-1
67,-1,549.847,219.569,46.553,128.14,0.993483,-1,-1,-1
67,-1,392.671,201.957,85.792,160.703,0.989303,-1,-1,-1
67,-1,308.794,169.16,87.247,183.762,0.85751,-1,-1,-1
67,-1,436.704,208.636,32.88,116.821,0.653179,-1,-1,-1
68,-1,549.636,217.381,58.854,137.686,0.994496,-1,-1,-1
68,-1,309.806,183.57,99.159,251.645,0.990782,-1,-1,-1
68,-1,406.915,204.189,68.436,155.128,0.984797,-1,-1,-1
68,-1,451.69,214.829,38.811,149.114,0.918864,-1,-1,-1
69,-1,554.066,227.194,57.351,118.977,0.993298,-1,-1,-1
69,-1,407.946,199.183,81.448,174.628,0.990582,-1,-1,-1
69,-1,314.189,178.561,104.102,262.096,0.989359,-1,-1,-1
70,-1,322.195,167.601,103.975,271.325,0.996437,-1,-1,-1
70,-1,407.877,192.019,77.257,184.875,0.994615,-1,-1,-1
70,-1,555.829,219.508,59.637,132.527,0.989564,-1,-1,-1
70,-1,448.859,237.861,62.513,133.123,0.807496,-1,-1,-1
70,-1,366.493,170.653,52.355,114.637,0.675409,-1,-1,-1
71,-1,324.38,189.225,107.07,243.089,0.992714,-1,-1,-1
71,-1,421.225,202.738,74.047,164.796,0.991345,-1,-1,-1
71,-1,548.108,216.599,83.053,135.563,0.977693,-1,-1,-1
71,-1,164.16,214.71,36.95,26.306,0.724231,-1,-1,-1
================================================
FILE: data/TUD-Stadtmitte/det.txt
================================================
1,-1,340.829,79.4999,87.662,244.25,0.998128,-1,-1,-1
1,-1,570.789,80.8348,68.211,203.59,0.998087,-1,-1,-1
1,-1,181.388,89.6698,75.918,245.934,0.996294,-1,-1,-1
1,-1,100.807,87.2512,56.321,224.146,0.995322,-1,-1,-1
1,-1,437.157,94.9248,85.081,237.233,0.994651,-1,-1,-1
1,-1,520.616,113.596,30.205,124.091,0.968336,-1,-1,-1
2,-1,97.0775,83.2642,58.4135,232.146,0.998106,-1,-1,-1
2,-1,573.922,81.0864,65.078,202.36,0.998105,-1,-1,-1
2,-1,349.87,89.174,86.212,241.482,0.998009,-1,-1,-1
2,-1,187.088,87.5556,68.702,238.831,0.997814,-1,-1,-1
2,-1,446.866,96.1759,69.447,226.378,0.997473,-1,-1,-1
2,-1,521.24,107.224,37.25,126.9,0.986026,-1,-1,-1
2,-1,327.722,124.831,24.344,96.085,0.670759,-1,-1,-1
3,-1,349.079,80.7724,94.12,245.942,0.998689,-1,-1,-1
3,-1,566.849,85.1364,72.151,196.446,0.998396,-1,-1,-1
3,-1,184.93,85.6058,86.298,232.863,0.998192,-1,-1,-1
3,-1,86.7213,98.8494,70.3807,213.088,0.997845,-1,-1,-1
3,-1,444.826,82.7449,79.067,225.436,0.995654,-1,-1,-1
3,-1,516.256,114.47,33.387,132.207,0.92989,-1,-1,-1
4,-1,189.043,91.9007,77.517,218.71,0.998407,-1,-1,-1
4,-1,568.979,86.5418,70.021,192.44,0.998405,-1,-1,-1
4,-1,80.9963,101.928,71.9227,221.362,0.998137,-1,-1,-1
4,-1,453.578,85.6511,77.218,231.315,0.997381,-1,-1,-1
4,-1,350.704,76.6974,93.79,245.317,0.99688,-1,-1,-1
4,-1,511.639,109.963,37.464,136.753,0.919178,-1,-1,-1
5,-1,570.654,84.2671,55.37,200.839,0.997947,-1,-1,-1
5,-1,192.449,85.8529,76.96,219.161,0.997057,-1,-1,-1
5,-1,352.022,79.1466,103.443,242.682,0.996507,-1,-1,-1
5,-1,71.1761,102.485,77.9469,207.947,0.996449,-1,-1,-1
5,-1,452.187,92.0178,90.27,237.497,0.993838,-1,-1,-1
5,-1,511.966,113.171,42.721,131.685,0.879587,-1,-1,-1
5,-1,319.055,125.825,28.841,97.198,0.688969,-1,-1,-1
6,-1,446.647,78.6826,95.465,243.213,0.998946,-1,-1,-1
6,-1,561.876,85.5521,73.049,203.063,0.998647,-1,-1,-1
6,-1,58.7576,90.2598,84.8504,222.748,0.998519,-1,-1,-1
6,-1,357.84,87.3011,98.558,233.834,0.998417,-1,-1,-1
6,-1,206.201,91.141,76.136,218.984,0.9953,-1,-1,-1
6,-1,186.476,84.7366,40.892,176,0.7921,-1,-1,-1
6,-1,321.651,104.963,32.827,119.433,0.572598,-1,-1,-1
7,-1,561.278,90.882,70.775,193.656,0.999183,-1,-1,-1
7,-1,463.075,76.7742,80.592,240.401,0.998672,-1,-1,-1
7,-1,52.1129,99.6685,92.8231,220.829,0.998654,-1,-1,-1
7,-1,363.678,87.3315,92.68,233.495,0.998325,-1,-1,-1
7,-1,209.527,103.226,79.491,206.047,0.997513,-1,-1,-1
7,-1,177.458,85.642,55.648,171.407,0.994606,-1,-1,-1
8,-1,556.548,92.1538,75.879,194.558,0.998623,-1,-1,-1
8,-1,48.1517,104.746,85.6253,220.058,0.998309,-1,-1,-1
8,-1,473.663,82.6675,69.032,238.935,0.998169,-1,-1,-1
8,-1,207.866,99.6997,94.345,220.807,0.997714,-1,-1,-1
8,-1,362.296,81.3088,92.036,232.315,0.996921,-1,-1,-1
8,-1,172.757,81.6272,55.479,177.974,0.991619,-1,-1,-1
9,-1,557.677,95.2909,74.751,189.032,0.999263,-1,-1,-1
9,-1,46.0914,101.342,73.9036,212.699,0.998675,-1,-1,-1
9,-1,367.73,88.3972,85.466,234.124,0.998375,-1,-1,-1
9,-1,219.798,107.32,82.113,208.339,0.99816,-1,-1,-1
9,-1,459.93,78.6761,87.623,242.668,0.997752,-1,-1,-1
9,-1,175.331,93.6647,49.034,159.11,0.993369,-1,-1,-1
10,-1,227.066,95.2336,76.636,219.798,0.999305,-1,-1,-1
10,-1,49.924,90.3371,57.499,236.772,0.999097,-1,-1,-1
10,-1,554.311,88.9891,81.025,194.171,0.999025,-1,-1,-1
10,-1,467.814,76.5485,75.776,242.42,0.998301,-1,-1,-1
10,-1,374.351,83.3036,84.754,243.49,0.998113,-1,-1,-1
10,-1,176.575,89.3011,50.072,167.215,0.990916,-1,-1,-1
11,-1,554.035,91.9547,78.215,187.304,0.999457,-1,-1,-1
11,-1,42.1422,101.909,58.9808,214.432,0.998456,-1,-1,-1
11,-1,468.559,82.9238,78.567,240.112,0.998145,-1,-1,-1
11,-1,368.409,82.4894,99.302,233.254,0.997806,-1,-1,-1
11,-1,228.29,103.767,81.579,211.694,0.996903,-1,-1,-1
11,-1,174.074,90.6407,53.328,169.979,0.995538,-1,-1,-1
12,-1,233.769,98.1591,82.824,225.315,0.998901,-1,-1,-1
12,-1,561.61,83.6892,69.895,199.873,0.998786,-1,-1,-1
12,-1,377.307,84.2437,87.672,238.163,0.998336,-1,-1,-1
12,-1,29.5807,88.8029,63.4114,219.072,0.997822,-1,-1,-1
12,-1,173.236,91.2729,50.094,161.913,0.996062,-1,-1,-1
12,-1,471.83,91.6358,82.602,230.764,0.995835,-1,-1,-1
13,-1,229.282,84.0016,83.93,230.467,0.999144,-1,-1,-1
13,-1,382.897,76.0137,79.825,240.31,0.998801,-1,-1,-1
13,-1,28.7348,96.497,61.4519,225.551,0.998588,-1,-1,-1
13,-1,557.716,87.3578,70.681,193.787,0.998018,-1,-1,-1
13,-1,470.899,88.1844,77.905,231.846,0.996771,-1,-1,-1
13,-1,176.426,86.1237,53.079,173.03,0.99531,-1,-1,-1
14,-1,377.675,71.8828,98.555,249.549,0.99886,-1,-1,-1
14,-1,29.3636,104.396,61.8036,220.805,0.99833,-1,-1,-1
14,-1,473.36,82.9761,94.019,241.767,0.998139,-1,-1,-1
14,-1,237.248,96.4523,75.527,218.347,0.997419,-1,-1,-1
14,-1,557.041,91.2056,66.919,188.132,0.991016,-1,-1,-1
14,-1,178.358,92.6356,45.822,156.605,0.985108,-1,-1,-1
15,-1,386.461,83.7864,93.58,233.277,0.999426,-1,-1,-1
15,-1,245,96.5816,74.424,215.019,0.998387,-1,-1,-1
15,-1,5.35827,99.2361,87.1455,220.029,0.997268,-1,-1,-1
15,-1,471.78,101.377,93.774,211.946,0.996208,-1,-1,-1
15,-1,546.159,102.889,71.536,173.76,0.994442,-1,-1,-1
15,-1,178.528,97.2639,40.66,154.085,0.947006,-1,-1,-1
15,-1,590.601,101.368,34.359,140.463,0.888385,-1,-1,-1
16,-1,386.558,82.8147,94.815,245.114,0.998765,-1,-1,-1
16,-1,16.5672,91.0276,63.1978,231.321,0.99816,-1,-1,-1
16,-1,481.603,94.0299,84.436,223.934,0.996724,-1,-1,-1
16,-1,248.23,98.3124,72.415,207.336,0.994797,-1,-1,-1
16,-1,174.703,88.6001,45.916,169.287,0.992542,-1,-1,-1
16,-1,543.305,99.4637,84.906,167.051,0.985239,-1,-1,-1
17,-1,384.575,82.6382,101.029,238.605,0.998742,-1,-1,-1
17,-1,249.215,97.0587,76.67,208.622,0.998611,-1,-1,-1
17,-1,3.48611,103.343,78.013,225.365,0.997949,-1,-1,-1
17,-1,479.105,86.4804,83.51,228.894,0.994942,-1,-1,-1
17,-1,540.925,97.9557,77.759,180.292,0.991896,-1,-1,-1
17,-1,173.892,87.9242,50.029,163.972,0.981278,-1,-1,-1
18,-1,389.762,84.7915,87.751,244.021,0.999041,-1,-1,-1
18,-1,255.76,98.8554,72.987,211.296,0.998743,-1,-1,-1
18,-1,3.0369,98.4176,70.5787,221.864,0.997297,-1,-1,-1
18,-1,482.305,85.361,100.074,228.876,0.996049,-1,-1,-1
18,-1,173.422,82.6391,46.121,188.012,0.982079,-1,-1,-1
18,-1,545.487,104.533,85.735,160.985,0.973848,-1,-1,-1
18,-1,559.229,92.3259,32.386,37.3151,0.521227,-1,-1,-1
19,-1,394.93,82.3077,85.104,245.735,0.999069,-1,-1,-1
19,-1,253.743,90.0802,81.412,214.618,0.997853,-1,-1,-1
19,-1,485.258,82.5867,108.924,245.355,0.996953,-1,-1,-1
19,-1,2.3352,95.4402,66.9948,226.934,0.974388,-1,-1,-1
19,-1,177.551,92.7096,41.264,161.188,0.974311,-1,-1,-1
19,-1,540.471,100.111,86.646,147.394,0.855613,-1,-1,-1
20,-1,383.677,90.1656,110.49,230.241,0.998774,-1,-1,-1
20,-1,260.244,92.7229,81.811,213.824,0.998206,-1,-1,-1
20,-1,493.916,85.9693,99.078,237.66,0.996075,-1,-1,-1
20,-1,177.589,84.2617,53.026,161.637,0.988701,-1,-1,-1
20,-1,1.66929,89.9828,65.9984,240.144,0.988602,-1,-1,-1
20,-1,580.947,115.743,52.547,139.199,0.936239,-1,-1,-1
21,-1,393.552,88.0446,92.431,237.706,0.99891,-1,-1,-1
21,-1,255.296,101.628,79.851,208.594,0.998775,-1,-1,-1
21,-1,501.122,91.2858,88.49,228.29,0.998693,-1,-1,-1
21,-1,0.714073,93.2036,60.4463,246.475,0.982606,-1,-1,-1
21,-1,176.401,84.7576,43.982,169.484,0.981219,-1,-1,-1
21,-1,592.591,116.501,33.79,129.059,0.97482,-1,-1,-1
22,-1,397.912,88.1935,101.066,223.302,0.99891,-1,-1,-1
22,-1,501.226,83.2164,95.876,227.974,0.998247,-1,-1,-1
22,-1,259.457,101.751,84.07,195.371,0.995462,-1,-1,-1
22,-1,593.185,115.681,37.868,131.849,0.986397,-1,-1,-1
22,-1,175.708,87.9317,46.037,160.429,0.979163,-1,-1,-1
22,-1,2.31029,100.859,46.1721,241.726,0.949047,-1,-1,-1
23,-1,505.083,78.1385,91.914,235.994,0.998555,-1,-1,-1
23,-1,408.768,86.5889,88.18,230.106,0.998509,-1,-1,-1
23,-1,275.308,101.049,63.19,208.838,0.998107,-1,-1,-1
23,-1,176.911,83.1803,44.117,163.622,0.981625,-1,-1,-1
23,-1,591.64,111.211,40.668,131.767,0.965347,-1,-1,-1
23,-1,1.90718,116.378,46.356,214.905,0.712624,-1,-1,-1
24,-1,406.655,76.2298,97.686,236.149,0.998877,-1,-1,-1
24,-1,504.939,79.3457,85.702,227.857,0.998168,-1,-1,-1
24,-1,277.239,93.6267,81.29,215.205,0.997789,-1,-1,-1
24,-1,585.979,108.465,42.874,133.548,0.985868,-1,-1,-1
24,-1,176.881,81.2615,44.468,166.139,0.981755,-1,-1,-1
25,-1,414.468,85.9972,86.843,228.416,0.998346,-1,-1,-1
25,-1,282.812,100.03,66.631,210.27,0.998323,-1,-1,-1
25,-1,511.474,80.7371,84.265,235.607,0.99735,-1,-1,-1
25,-1,175.626,93.6935,47.046,151.256,0.992554,-1,-1,-1
25,-1,576.811,113.898,56.15,132.559,0.958421,-1,-1,-1
26,-1,420.608,83.0714,89.181,227.61,0.998048,-1,-1,-1
26,-1,276.235,100.707,82.064,193.14,0.997793,-1,-1,-1
26,-1,510.53,89.9076,84.581,207.504,0.99612,-1,-1,-1
26,-1,176.256,97.267,45.96,148.13,0.991971,-1,-1,-1
26,-1,578.445,104.952,53.641,149.245,0.918584,-1,-1,-1
27,-1,281.371,92.8424,87.386,205.342,0.998633,-1,-1,-1
27,-1,416.457,77.5451,91.319,242.935,0.998356,-1,-1,-1
27,-1,170.828,87.0045,55.608,156.861,0.992116,-1,-1,-1
27,-1,509.224,90.4577,90.715,209.544,0.97499,-1,-1,-1
27,-1,573.041,99.8006,59.793,157.517,0.850076,-1,-1,-1
28,-1,296.056,92.8359,68.245,211.704,0.999245,-1,-1,-1
28,-1,424.681,83.7113,93.073,228.674,0.995553,-1,-1,-1
28,-1,510.241,98.7799,110.816,205.97,0.994025,-1,-1,-1
28,-1,176.981,96.087,44.331,153.497,0.98763,-1,-1,-1
29,-1,301.206,97.5939,77.595,204.422,0.999058,-1,-1,-1
29,-1,425.645,81.559,84.403,237.459,0.997282,-1,-1,-1
29,-1,502.289,100.991,126.019,209.52,0.98868,-1,-1,-1
29,-1,171.653,83.7414,52.754,170.303,0.967854,-1,-1,-1
29,-1,588.613,132.822,39.573,117.738,0.78036,-1,-1,-1
29,-1,509.567,96.5367,43.781,163.035,0.602867,-1,-1,-1
30,-1,298.442,95.7229,87.153,197.374,0.998478,-1,-1,-1
30,-1,435.789,89.7325,85.958,219.923,0.995264,-1,-1,-1
30,-1,500.865,103.119,129.015,206.691,0.992291,-1,-1,-1
30,-1,172.675,90.0716,51.782,162.453,0.983445,-1,-1,-1
30,-1,597.039,158.19,31.174,87.441,0.886261,-1,-1,-1
30,-1,507.491,93.3425,34.998,99.7615,0.754403,-1,-1,-1
31,-1,302.55,91.9077,76.912,206.086,0.999159,-1,-1,-1
31,-1,434.419,87.8827,84.945,226.044,0.995463,-1,-1,-1
31,-1,527.103,100.515,85.698,210.851,0.994956,-1,-1,-1
31,-1,173.127,94.831,52.407,153.991,0.9812,-1,-1,-1
31,-1,597.497,158.541,26.901,87.528,0.864821,-1,-1,-1
31,-1,498.902,86.0324,43.852,102.384,0.781979,-1,-1,-1
31,-1,577.902,114.51,53.299,163.377,0.547697,-1,-1,-1
32,-1,310.721,89.642,69.869,214.335,0.999292,-1,-1,-1
32,-1,530.196,95.7185,85.97,218.666,0.995839,-1,-1,-1
32,-1,173.613,82.8787,51.465,167.898,0.980458,-1,-1,-1
32,-1,439.207,79.8518,87.712,229.92,0.979349,-1,-1,-1
32,-1,495.636,92.5719,42.062,49.6381,0.869107,-1,-1,-1
33,-1,312.559,94.0156,73.861,206.805,0.999427,-1,-1,-1
33,-1,539.329,91.2521,81.255,223.921,0.992946,-1,-1,-1
33,-1,438.649,96.329,120.334,200.7,0.982356,-1,-1,-1
33,-1,178.207,89.5912,42.692,169.495,0.955202,-1,-1,-1
33,-1,546.296,93.4837,79.053,71.4243,0.636907,-1,-1,-1
33,-1,489.669,90.0404,58.526,51.9766,0.605391,-1,-1,-1
34,-1,316.34,96.7414,81.134,199.117,0.998259,-1,-1,-1
34,-1,543.615,84.3664,73.021,228.797,0.993576,-1,-1,-1
34,-1,447.605,100.075,104.744,208.601,0.980819,-1,-1,-1
34,-1,177.998,89.8609,41.553,163.998,0.973977,-1,-1,-1
34,-1,565.236,89.2751,45.367,59.1589,0.5422,-1,-1,-1
35,-1,320.704,104.602,79.34,201.534,0.998831,-1,-1,-1
35,-1,451.782,82.7561,93.855,226.029,0.998186,-1,-1,-1
35,-1,549.889,85.7385,87.464,221.151,0.991632,-1,-1,-1
35,-1,176.502,95.596,45.657,151.047,0.977038,-1,-1,-1
36,-1,311.619,100.029,92.834,198.873,0.999185,-1,-1,-1
36,-1,443.118,83.1911,109.438,213.857,0.997848,-1,-1,-1
36,-1,542.987,86.8345,86.583,232.832,0.997407,-1,-1,-1
36,-1,177.852,96.3956,40.766,153.15,0.969365,-1,-1,-1
37,-1,322.431,88.3604,90.63,208.81,0.999231,-1,-1,-1
37,-1,538.946,82.247,93.114,228.06,0.998721,-1,-1,-1
37,-1,445.852,87.2042,98.546,222.139,0.998448,-1,-1,-1
37,-1,170.392,96.7119,54.562,157.084,0.988998,-1,-1,-1
38,-1,333.073,104.458,71.654,190.357,0.999097,-1,-1,-1
38,-1,561.499,87.3,70.708,228.346,0.99764,-1,-1,-1
38,-1,445.587,84.9772,96.953,219.418,0.995918,-1,-1,-1
38,-1,177.61,92.3465,47.367,158.474,0.933489,-1,-1,-1
39,-1,331.4,99.9525,80.816,200.601,0.999241,-1,-1,-1
39,-1,549.489,84.5592,86.752,213.096,0.998682,-1,-1,-1
39,-1,445.325,88.7601,100.032,216.036,0.991712,-1,-1,-1
39,-1,178.426,102.767,45.176,149.037,0.948595,-1,-1,-1
40,-1,344.641,98.9502,60.828,196.449,0.99839,-1,-1,-1
40,-1,560.447,83.7274,72.582,219.973,0.998165,-1,-1,-1
40,-1,454.813,83.0841,97.489,216.175,0.996611,-1,-1,-1
40,-1,176.252,95.7199,50.209,165.432,0.944359,-1,-1,-1
40,-1,454.027,100.287,31.667,133.773,0.65429,-1,-1,-1
41,-1,560.06,87.2494,74.817,221.872,0.998876,-1,-1,-1
41,-1,347.188,91.372,68.847,214.35,0.997703,-1,-1,-1
41,-1,461.5,90.2104,94.363,210.68,0.997331,-1,-1,-1
41,-1,169.535,91.6268,55.149,157.501,0.970615,-1,-1,-1
41,-1,443.676,103.161,32.705,128.38,0.926193,-1,-1,-1
42,-1,559.356,88.6204,72.95,215.12,0.999204,-1,-1,-1
42,-1,351.204,99.5306,64.894,200.403,0.99907,-1,-1,-1
42,-1,463.41,92.4935,93.615,214.832,0.997474,-1,-1,-1
42,-1,171.054,91.8726,55.105,154.65,0.982399,-1,-1,-1
42,-1,441.543,110.478,28.43,120.765,0.976143,-1,-1,-1
43,-1,562.781,87.0513,72.477,226.249,0.999191,-1,-1,-1
43,-1,357.634,101.005,61.133,193.823,0.998569,-1,-1,-1
43,-1,466.037,80.0393,91.796,217.817,0.994492,-1,-1,-1
43,-1,439.519,115.962,30.834,123.541,0.976711,-1,-1,-1
43,-1,175.604,91.9786,53.003,161.515,0.975133,-1,-1,-1
44,-1,565.592,89.2264,73.408,226.698,0.998843,-1,-1,-1
44,-1,357.532,95.426,61.844,196.162,0.998035,-1,-1,-1
44,-1,457.789,92.0847,100.11,203.543,0.997401,-1,-1,-1
44,-1,173.493,96.1817,45.254,153.318,0.97567,-1,-1,-1
44,-1,438.204,116.607,35.289,128.277,0.974374,-1,-1,-1
45,-1,571.101,95.3376,67.899,217.543,0.999003,-1,-1,-1
45,-1,360.929,95.1499,66.997,205.053,0.996246,-1,-1,-1
45,-1,467.876,90.3959,95.648,224.86,0.991003,-1,-1,-1
45,-1,434.752,111.056,39.469,137.602,0.977156,-1,-1,-1
45,-1,173.401,92.5143,46.315,162.955,0.964553,-1,-1,-1
46,-1,358.634,103.941,71.018,181.565,0.9977,-1,-1,-1
46,-1,567.547,91.5333,64.885,229.621,0.99662,-1,-1,-1
46,-1,460.199,89.5727,109.631,220.042,0.99276,-1,-1,-1
46,-1,169.244,84.5191,54.897,162.504,0.988023,-1,-1,-1
46,-1,431.7,110.895,40.475,144.312,0.979612,-1,-1,-1
47,-1,571.201,83.0046,67.799,238.981,0.997412,-1,-1,-1
47,-1,369.554,102.559,69.363,187.987,0.997325,-1,-1,-1
47,-1,467.203,83.4581,97.175,234.187,0.985609,-1,-1,-1
47,-1,431.045,98.2386,36.915,172.481,0.945787,-1,-1,-1
47,-1,178.435,94.5132,47.368,155.954,0.938029,-1,-1,-1
48,-1,363.237,105.8,83.7,188.979,0.996548,-1,-1,-1
48,-1,577.662,80.9867,60.791,239.097,0.996204,-1,-1,-1
48,-1,462.009,93.1023,116.605,222.1,0.992148,-1,-1,-1
48,-1,167.134,92.6244,55.609,155.346,0.985998,-1,-1,-1
48,-1,439.735,94.8642,39.813,184.007,0.683541,-1,-1,-1
49,-1,378.607,102.35,60.783,186.264,0.996633,-1,-1,-1
49,-1,581.819,58.4738,57.181,267.477,0.992311,-1,-1,-1
49,-1,477.46,90.6719,107.867,228.632,0.990201,-1,-1,-1
49,-1,176.793,90.3014,48.082,157.893,0.964544,-1,-1,-1
49,-1,452.769,99.5843,51.387,184.033,0.923665,-1,-1,-1
50,-1,380.052,103.278,71.388,187.953,0.99863,-1,-1,-1
50,-1,483.65,105.206,102.975,199.535,0.995106,-1,-1,-1
50,-1,447.892,92.2306,52.582,205.377,0.981021,-1,-1,-1
50,-1,170.531,89.031,53.601,167.489,0.9783,-1,-1,-1
50,-1,579.516,48.3555,54.854,282.897,0.943915,-1,-1,-1
51,-1,381.553,108.356,72.258,176.664,0.998588,-1,-1,-1
51,-1,491.323,91.5308,104.163,221.208,0.998205,-1,-1,-1
51,-1,588.024,76.0609,50.976,252.025,0.985749,-1,-1,-1
51,-1,449.574,92.8305,46.522,192.374,0.982836,-1,-1,-1
51,-1,174.537,96.8375,43.025,155.948,0.950515,-1,-1,-1
52,-1,492.962,90.2753,96.943,216.426,0.997815,-1,-1,-1
52,-1,381.979,103.115,80.139,181.495,0.996576,-1,-1,-1
52,-1,434.347,100.566,61.752,173.534,0.98768,-1,-1,-1
52,-1,581.271,76.5527,51.194,239.41,0.970225,-1,-1,-1
52,-1,175.857,95.5257,39.8,160.213,0.920304,-1,-1,-1
53,-1,503.931,90.5428,86.226,215.038,0.996665,-1,-1,-1
53,-1,386.605,101.434,104.313,182.018,0.991642,-1,-1,-1
53,-1,584.402,64.402,50.551,237.205,0.97136,-1,-1,-1
53,-1,173.789,96.5741,44.907,154.69,0.941516,-1,-1,-1
54,-1,504.035,92.3046,97.95,208.591,0.996151,-1,-1,-1
54,-1,389.153,88.7795,94.836,194.221,0.994718,-1,-1,-1
54,-1,587.081,81.1729,48.133,196.975,0.978948,-1,-1,-1
54,-1,173.635,94.6802,45.455,169.221,0.807339,-1,-1,-1
54,-1,452.821,97.7998,45.579,179.256,0.659541,-1,-1,-1
55,-1,511.561,88.8258,96.917,221.722,0.997879,-1,-1,-1
55,-1,400.129,104.153,80.942,186.098,0.996397,-1,-1,-1
55,-1,173.428,97.9461,43.073,147.113,0.974979,-1,-1,-1
55,-1,595.69,98.0339,36.354,156.398,0.9091,-1,-1,-1
56,-1,395.666,92.1925,101.956,195.712,0.998756,-1,-1,-1
56,-1,509.725,86.0054,96.197,217.313,0.998236,-1,-1,-1
56,-1,175.064,99.8905,47.984,163.847,0.966825,-1,-1,-1
56,-1,587.352,92.15,42.785,159.971,0.911645,-1,-1,-1
57,-1,406.934,86.2656,83.838,201.771,0.999216,-1,-1,-1
57,-1,516.468,96.6742,85.465,205.349,0.997397,-1,-1,-1
57,-1,171.185,96.5845,47.997,157.154,0.978026,-1,-1,-1
57,-1,597.752,182.627,28.794,72.488,0.932195,-1,-1,-1
57,-1,584.732,110.813,52.605,93.924,0.907053,-1,-1,-1
58,-1,405.696,96.6223,88.156,196.028,0.999168,-1,-1,-1
58,-1,519.278,86.1362,81.393,209.506,0.998399,-1,-1,-1
58,-1,177.416,86.0764,46.891,155.222,0.981488,-1,-1,-1
58,-1,597.954,177.427,27.279,75.37,0.938758,-1,-1,-1
58,-1,593.723,113.832,32.066,85.173,0.782958,-1,-1,-1
59,-1,398.963,101.811,96.03,193.465,0.998539,-1,-1,-1
59,-1,529.104,89.686,82.812,215.274,0.998504,-1,-1,-1
59,-1,172.22,92.276,47.847,154.796,0.983753,-1,-1,-1
59,-1,592.47,166.094,32.612,86.099,0.928022,-1,-1,-1
59,-1,597.94,118.709,28.856,79.975,0.631028,-1,-1,-1
60,-1,405.667,93.7675,93.314,193.783,0.998854,-1,-1,-1
60,-1,530.805,92.5121,77.409,202.319,0.998769,-1,-1,-1
60,-1,176.448,84.6,48.885,160.765,0.979161,-1,-1,-1
60,-1,595.474,182.22,31.03,70.026,0.818526,-1,-1,-1
61,-1,404.221,93.5537,90.863,196.858,0.99905,-1,-1,-1
61,-1,543.61,103.986,72.8,185.153,0.995921,-1,-1,-1
61,-1,169.149,92.1938,49.658,152.462,0.984891,-1,-1,-1
61,-1,594.891,185.149,28.676,62.508,0.854083,-1,-1,-1
62,-1,406.513,97.325,80.211,195.487,0.998707,-1,-1,-1
62,-1,543.701,97.3062,66.801,197.543,0.992058,-1,-1,-1
62,-1,175.398,83.7596,50.756,158.606,0.960469,-1,-1,-1
62,-1,593.798,187.791,27.818,57.554,0.874247,-1,-1,-1
63,-1,542.369,86.8525,74.886,211.036,0.997854,-1,-1,-1
63,-1,418.602,92.4029,72.672,204.863,0.996277,-1,-1,-1
63,-1,169.695,85.7384,56.205,155.906,0.983429,-1,-1,-1
63,-1,396.682,141.288,37.177,136.917,0.616993,-1,-1,-1
63,-1,584.184,149.21,40.028,102.469,0.605965,-1,-1,-1
64,-1,419.859,102.04,85.769,189.628,0.995122,-1,-1,-1
64,-1,546.772,90.6983,74.331,197.849,0.994192,-1,-1,-1
64,-1,176.073,88.2184,48.236,147.909,0.926886,-1,-1,-1
64,-1,397.064,103.2,50.72,175.802,0.844622,-1,-1,-1
65,-1,547.792,92.7578,77.285,205.821,0.995111,-1,-1,-1
65,-1,427.243,99.2067,74.679,184.183,0.992266,-1,-1,-1
65,-1,169.167,79.5878,52.458,167.715,0.984753,-1,-1,-1
65,-1,401.804,84.4283,55.322,192.528,0.957244,-1,-1,-1
66,-1,549.706,92.4637,76.337,207.167,0.995941,-1,-1,-1
66,-1,382.437,103.389,107.265,174.92,0.991113,-1,-1,-1
66,-1,166.747,82.848,55.702,163.042,0.990127,-1,-1,-1
66,-1,606.421,178.605,30.146,70.586,0.834255,-1,-1,-1
67,-1,551.506,95.3813,79.138,198.312,0.998255,-1,-1,-1
67,-1,395.857,91.4643,63.54,192.621,0.995168,-1,-1,-1
67,-1,444.306,95.0591,56.843,192.17,0.994886,-1,-1,-1
67,-1,170.06,91.2252,49.827,163.68,0.978451,-1,-1,-1
67,-1,600.917,177.304,28.086,79.39,0.843607,-1,-1,-1
68,-1,556.165,84.561,74.537,203.948,0.997748,-1,-1,-1
68,-1,443.886,94.3288,66.177,185.401,0.996019,-1,-1,-1
68,-1,394.535,88.276,51.124,188.791,0.995135,-1,-1,-1
68,-1,172.104,91.0431,47.436,158.077,0.990032,-1,-1,-1
69,-1,550.109,93.6216,86.401,200.965,0.999121,-1,-1,-1
69,-1,450.632,96.5126,52.402,182.655,0.997084,-1,-1,-1
69,-1,381.348,95.8281,67.028,185.144,0.994318,-1,-1,-1
69,-1,175.502,84.2553,48.03,172.494,0.899609,-1,-1,-1
70,-1,557.365,101.077,79.953,189.577,0.999054,-1,-1,-1
70,-1,380.593,94.5981,59.737,185.285,0.998445,-1,-1,-1
70,-1,452.624,97.3927,52.561,192.102,0.997524,-1,-1,-1
70,-1,167.599,94.7115,47.436,166.577,0.931522,-1,-1,-1
71,-1,559.958,91.5302,79.042,208.758,0.999471,-1,-1,-1
71,-1,390.046,79.4493,51.923,194.027,0.997625,-1,-1,-1
71,-1,452.316,96.2064,57.537,186.138,0.996851,-1,-1,-1
71,-1,168.791,90.213,46.206,159.869,0.82502,-1,-1,-1
72,-1,562.331,85.5532,76.669,214.737,0.998985,-1,-1,-1
72,-1,455.939,95.0239,53.478,191.828,0.996509,-1,-1,-1
72,-1,386.517,103.517,58.156,175.778,0.99615,-1,-1,-1
72,-1,174.823,87.5252,47.419,167.026,0.685373,-1,-1,-1
73,-1,558.265,82.3983,79.968,216.762,0.998766,-1,-1,-1
73,-1,457.479,96.5395,62.464,182.237,0.998221,-1,-1,-1
73,-1,387.341,90.1536,53.61,184.152,0.996853,-1,-1,-1
73,-1,178.629,85.9112,43.655,163.429,0.911242,-1,-1,-1
74,-1,462.402,96.3309,69.763,182.223,0.998259,-1,-1,-1
74,-1,380.453,98.4044,58.951,175.95,0.998129,-1,-1,-1
74,-1,566.84,76.7546,72.16,223.658,0.997787,-1,-1,-1
74,-1,172.543,86.6772,50.961,164.12,0.951585,-1,-1,-1
75,-1,380.121,100.611,59.704,174.714,0.998796,-1,-1,-1
75,-1,464.164,97.3128,63.487,178.982,0.997469,-1,-1,-1
75,-1,559.704,84.2386,79.296,212.096,0.995,-1,-1,-1
75,-1,173.331,90.6944,52.762,156.964,0.970819,-1,-1,-1
76,-1,466.552,103.905,60.266,181.364,0.998396,-1,-1,-1
76,-1,373.288,98.796,67.451,167.883,0.99826,-1,-1,-1
76,-1,558.401,83.3516,80.599,212.712,0.996342,-1,-1,-1
76,-1,170.551,75.132,55.522,172.734,0.981467,-1,-1,-1
77,-1,468.054,97.3825,61.034,176.112,0.998556,-1,-1,-1
77,-1,371.597,95.8445,66.763,179.964,0.998547,-1,-1,-1
77,-1,564.467,102.725,74.533,193.438,0.997838,-1,-1,-1
77,-1,183.222,82.215,48.551,171.952,0.986723,-1,-1,-1
78,-1,373.24,103.458,60.981,168.972,0.998386,-1,-1,-1
78,-1,462.863,100.174,82.358,172.402,0.998205,-1,-1,-1
78,-1,565.624,102.169,70.461,194.077,0.991826,-1,-1,-1
78,-1,175.582,84.3473,55.583,162.021,0.980774,-1,-1,-1
78,-1,561.203,100.467,36.136,129.184,0.826771,-1,-1,-1
79,-1,467.636,105.398,68.632,170.84,0.998886,-1,-1,-1
79,-1,371.417,107.146,61.604,168.566,0.99565,-1,-1,-1
79,-1,175.879,85.4594,50.172,161.944,0.987969,-1,-1,-1
79,-1,555.755,89.5137,82.627,197.45,0.9876,-1,-1,-1
79,-1,555.637,101.26,31.753,119.836,0.912748,-1,-1,-1
80,-1,479.866,92.8912,66.507,176.467,0.998622,-1,-1,-1
80,-1,177.882,87.9318,52.301,168.602,0.993442,-1,-1,-1
80,-1,374.045,106.786,50.987,162.792,0.991909,-1,-1,-1
80,-1,574.006,103.33,61.307,193.576,0.968992,-1,-1,-1
80,-1,554.195,102.54,38.683,119.799,0.955312,-1,-1,-1
81,-1,485.323,92.663,63.463,181.087,0.99836,-1,-1,-1
81,-1,370.271,107.062,59.554,164.102,0.995233,-1,-1,-1
81,-1,180.731,83.4888,52.572,167.25,0.994756,-1,-1,-1
81,-1,573.332,102.057,62.016,189.367,0.988039,-1,-1,-1
81,-1,552.433,99.1239,38.767,116.072,0.860672,-1,-1,-1
82,-1,476.508,91.3676,70.976,175.341,0.998876,-1,-1,-1
82,-1,170.45,87.735,70.844,170.003,0.990438,-1,-1,-1
82,-1,368.261,107.784,57.044,159.084,0.984034,-1,-1,-1
82,-1,579.125,94.422,56.51,195.328,0.971292,-1,-1,-1
82,-1,568.764,110.465,30.545,158.113,0.873962,-1,-1,-1
82,-1,552.713,106.922,30.915,78.917,0.689068,-1,-1,-1
83,-1,487.008,94.7145,67.104,179.243,0.998083,-1,-1,-1
83,-1,172.284,89.3095,62.159,165.878,0.993276,-1,-1,-1
83,-1,367.128,110.127,63.829,155.999,0.986935,-1,-1,-1
83,-1,575.611,107.769,55.542,178.916,0.952642,-1,-1,-1
83,-1,550.375,105.789,27.824,77.833,0.642854,-1,-1,-1
83,-1,602.348,95.2692,36.652,127.61,0.541627,-1,-1,-1
84,-1,489.833,108.417,64.525,167.948,0.99707,-1,-1,-1
84,-1,175.723,91.3069,60.102,164.038,0.993839,-1,-1,-1
84,-1,354.313,98.7853,70.047,153.8,0.980482,-1,-1,-1
84,-1,555.258,133.083,56.668,144.27,0.97551,-1,-1,-1
84,-1,398.774,115.644,39.993,127.696,0.914203,-1,-1,-1
84,-1,597.589,82.626,41.12,219.021,0.788266,-1,-1,-1
84,-1,555.148,109.493,28.169,51.734,0.529906,-1,-1,-1
85,-1,493.334,110.302,61.735,165.691,0.997696,-1,-1,-1
85,-1,176.803,89.24,59.46,162.811,0.994839,-1,-1,-1
85,-1,557.4,116.035,54.383,166.331,0.987457,-1,-1,-1
85,-1,361.438,104.867,52.729,158.046,0.976749,-1,-1,-1
85,-1,394.324,108.832,45.878,136.917,0.957929,-1,-1,-1
85,-1,607.787,93.4014,31.213,175.515,0.87808,-1,-1,-1
86,-1,496.287,103.16,68.446,176.535,0.997189,-1,-1,-1
86,-1,177.865,84.5196,62.101,162.655,0.995762,-1,-1,-1
86,-1,391.555,111.035,51.723,134.777,0.991345,-1,-1,-1
86,-1,554.404,118.832,45.535,148.875,0.991284,-1,-1,-1
86,-1,351.263,101.709,56.687,170.952,0.989668,-1,-1,-1
86,-1,613.118,96.0851,25.882,95.5399,0.903711,-1,-1,-1
87,-1,180.838,86.6234,60.531,162.084,0.995649,-1,-1,-1
87,-1,352.526,96.5251,56.41,172.112,0.992288,-1,-1,-1
87,-1,498.224,104.485,72.892,164.545,0.992208,-1,-1,-1
87,-1,394.642,115.311,46.274,126.752,0.991009,-1,-1,-1
87,-1,551.804,113.592,50.182,153.737,0.978907,-1,-1,-1
87,-1,612.038,104.41,26.962,83.83,0.763133,-1,-1,-1
87,-1,570.565,116.717,32.345,70.22,0.705992,-1,-1,-1
87,-1,458.476,156.226,36.799,81.267,0.546795,-1,-1,-1
88,-1,505.628,110.352,98.969,154.558,0.996913,-1,-1,-1
88,-1,344.165,97.6416,63.72,178.857,0.995989,-1,-1,-1
88,-1,176.164,88.5958,57.322,165.324,0.994494,-1,-1,-1
88,-1,399.572,105.576,42.684,133.169,0.979169,-1,-1,-1
88,-1,566.858,112.421,32.256,77.963,0.819371,-1,-1,-1
88,-1,612.471,94.3627,26.529,95.3713,0.651939,-1,-1,-1
89,-1,181.204,88.9371,58.856,163.985,0.996199,-1,-1,-1
89,-1,507.732,103.49,88.537,177.352,0.995748,-1,-1,-1
89,-1,347.038,97.0704,55.388,178.417,0.995722,-1,-1,-1
89,-1,397.726,113.87,41.397,135.606,0.992466,-1,-1,-1
89,-1,555.917,103.454,42.058,97.123,0.856157,-1,-1,-1
90,-1,509.811,106.725,86.453,168.036,0.998969,-1,-1,-1
90,-1,181.189,82.4186,61.509,171.999,0.994835,-1,-1,-1
90,-1,345.621,99.9206,57.145,166.472,0.994052,-1,-1,-1
90,-1,399.194,111.621,39.777,134.918,0.993413,-1,-1,-1
90,-1,464.497,163.539,37.664,63.731,0.640311,-1,-1,-1
91,-1,516.01,99.4043,80.353,175.998,0.999034,-1,-1,-1
91,-1,342.907,89.2626,50.803,174.936,0.997249,-1,-1,-1
91,-1,397.748,109.873,40.053,134.275,0.992732,-1,-1,-1
91,-1,182.065,83.0425,61.865,164.116,0.973058,-1,-1,-1
92,-1,516.383,94.2755,81.45,166.244,0.999318,-1,-1,-1
92,-1,396.463,116.99,42.576,123.915,0.994193,-1,-1,-1
92,-1,336.961,100.701,62.575,167.641,0.993684,-1,-1,-1
92,-1,176.702,84.0286,61.346,158.968,0.966732,-1,-1,-1
93,-1,522.278,90.9007,75.153,184.872,0.998722,-1,-1,-1
93,-1,328.734,109.638,78.427,153.729,0.99665,-1,-1,-1
93,-1,183.394,87.0894,60.191,168.061,0.992475,-1,-1,-1
93,-1,393.655,101.944,43.107,138.918,0.976917,-1,-1,-1
94,-1,527.207,92.1148,67.014,186.01,0.998372,-1,-1,-1
94,-1,182.076,80.9314,62.066,167.049,0.996812,-1,-1,-1
94,-1,322.773,105.295,82.415,155.636,0.996186,-1,-1,-1
94,-1,391.215,114.585,50.714,121.898,0.989261,-1,-1,-1
94,-1,464.091,164.147,45.537,78.518,0.524315,-1,-1,-1
95,-1,519.418,100.625,87.804,170.02,0.998631,-1,-1,-1
95,-1,328.521,108.974,60.046,164.27,0.994826,-1,-1,-1
95,-1,391.625,108.641,42.043,135.848,0.994466,-1,-1,-1
95,-1,189.167,84.5096,51.506,162.737,0.992884,-1,-1,-1
96,-1,526.564,97.6387,70.042,170.971,0.998902,-1,-1,-1
96,-1,328.384,113.831,56.28,150.983,0.994769,-1,-1,-1
96,-1,395.121,110.898,38.452,129.061,0.994695,-1,-1,-1
96,-1,182.263,77.477,62.203,172.655,0.99128,-1,-1,-1
96,-1,463.846,161.93,42.391,79.991,0.545536,-1,-1,-1
97,-1,317.096,100.481,82.271,162.259,0.996894,-1,-1,-1
97,-1,185.437,82.8441,57.753,169.052,0.996678,-1,-1,-1
97,-1,516.037,109.719,93.56,154.619,0.996613,-1,-1,-1
97,-1,401.166,110.787,33.521,128.273,0.994986,-1,-1,-1
98,-1,186.565,87.6666,56.503,161.565,0.99789,-1,-1,-1
98,-1,395.082,105.656,44.705,131.548,0.995791,-1,-1,-1
98,-1,511.986,117.225,104.033,145.472,0.995605,-1,-1,-1
98,-1,318.556,98.3817,76.056,163.751,0.995354,-1,-1,-1
99,-1,187.18,87.4217,56.318,159.497,0.997715,-1,-1,-1
99,-1,319.08,91.5592,72.475,168.243,0.994632,-1,-1,-1
99,-1,392.057,112.846,44.953,131.008,0.9875,-1,-1,-1
99,-1,548.678,110.899,63.632,156.942,0.984645,-1,-1,-1
99,-1,510.682,123.207,50.642,149.881,0.978864,-1,-1,-1
100,-1,186.729,89.0914,56.797,158.292,0.997586,-1,-1,-1
100,-1,390,112.814,46.919,131.234,0.994805,-1,-1,-1
100,-1,322.991,86.6939,55.87,193.418,0.993529,-1,-1,-1
100,-1,547.049,101.767,62.514,174.714,0.992503,-1,-1,-1
100,-1,509.961,143.557,53.152,125.817,0.951881,-1,-1,-1
101,-1,188.184,89.8332,55.147,162.534,0.996896,-1,-1,-1
101,-1,321.724,90.731,54.736,169.86,0.99685,-1,-1,-1
101,-1,539.214,108.788,80.146,158.106,0.991223,-1,-1,-1
101,-1,391.096,101.901,43.266,147.252,0.986933,-1,-1,-1
101,-1,505.701,139.32,52.488,126.057,0.982888,-1,-1,-1
101,-1,469.593,166.177,32.074,52.222,0.762155,-1,-1,-1
102,-1,540.918,100.276,86.58,169.411,0.996113,-1,-1,-1
102,-1,190.749,94.7635,49.698,157.145,0.995455,-1,-1,-1
102,-1,389.11,112.147,51.476,127.077,0.993499,-1,-1,-1
102,-1,312.423,92.457,63.57,175.774,0.988851,-1,-1,-1
102,-1,503.786,130.41,52.321,141.38,0.981933,-1,-1,-1
102,-1,468.736,165.798,37.607,67.333,0.701026,-1,-1,-1
103,-1,385.642,103.295,51.536,133.808,0.996892,-1,-1,-1
103,-1,557.891,100.17,60.751,174.749,0.996272,-1,-1,-1
103,-1,191.203,94.9586,48.744,162.124,0.996153,-1,-1,-1
103,-1,495.301,139.229,51.972,131.833,0.992205,-1,-1,-1
103,-1,312.435,96.326,64.988,169.201,0.987853,-1,-1,-1
103,-1,467.384,168.42,29.808,55.92,0.672577,-1,-1,-1
104,-1,187.856,87.8561,52.021,162.772,0.997681,-1,-1,-1
104,-1,382.881,108.998,59.593,130.843,0.996788,-1,-1,-1
104,-1,561.888,95.427,57.061,185.27,0.995157,-1,-1,-1
104,-1,312,87.0747,64.536,170.758,0.993677,-1,-1,-1
104,-1,491.512,134.453,61.823,124.543,0.992156,-1,-1,-1
105,-1,382.893,105.504,61.077,137.439,0.99764,-1,-1,-1
105,-1,185.44,90.4191,55.635,156.809,0.997163,-1,-1,-1
105,-1,579.145,93.3306,45.435,185.179,0.996369,-1,-1,-1
105,-1,492.718,112.56,54.189,163.408,0.992631,-1,-1,-1
105,-1,312.243,66.5203,58.183,193.65,0.951559,-1,-1,-1
106,-1,381.54,112.126,54.475,130.293,0.998667,-1,-1,-1
106,-1,582.795,96.0158,49.277,176.705,0.997513,-1,-1,-1
106,-1,185.953,89.5757,53.434,160.326,0.997092,-1,-1,-1
106,-1,481.75,121.298,79.47,136.966,0.985526,-1,-1,-1
106,-1,320.735,78.5631,44.534,177.661,0.97126,-1,-1,-1
107,-1,380.174,111.707,53.798,132.635,0.998552,-1,-1,-1
107,-1,187.233,96.7451,51.282,163.336,0.997843,-1,-1,-1
107,-1,577.221,95.8581,54.344,177.738,0.99696,-1,-1,-1
107,-1,313.022,84.6852,51.559,176.306,0.992029,-1,-1,-1
107,-1,477.075,117.322,72.927,145.645,0.981227,-1,-1,-1
107,-1,525.465,108.343,46.257,143.085,0.699084,-1,-1,-1
108,-1,379.734,112.483,53.127,133.703,0.998389,-1,-1,-1
108,-1,186.99,95.304,51.821,161.162,0.997953,-1,-1,-1
108,-1,580.756,109.192,58.244,163.885,0.993735,-1,-1,-1
108,-1,465.626,124.778,97.623,129.183,0.992846,-1,-1,-1
108,-1,311.782,84.0546,51.323,177.213,0.991767,-1,-1,-1
109,-1,381.389,111.736,52.335,131.882,0.998273,-1,-1,-1
109,-1,189.161,98.4488,49.642,166.447,0.99731,-1,-1,-1
109,-1,580.087,100.689,57.389,170.156,0.995993,-1,-1,-1
109,-1,473.439,112.593,76.579,150.655,0.992568,-1,-1,-1
109,-1,308.507,56.8251,56.358,215.06,0.988957,-1,-1,-1
109,-1,518.924,123.495,52.692,132.069,0.970515,-1,-1,-1
110,-1,379.236,113.377,55.846,132.719,0.998504,-1,-1,-1
110,-1,183.618,83.1247,62.561,179.478,0.99837,-1,-1,-1
110,-1,578.881,104.708,59.36,168.868,0.994621,-1,-1,-1
110,-1,463.484,125.918,86.877,135.45,0.990075,-1,-1,-1
110,-1,314.44,50.3092,45.628,216.136,0.968489,-1,-1,-1
110,-1,526.735,120.446,41.061,139.862,0.877063,-1,-1,-1
111,-1,182.453,77.8928,63.371,189.126,0.998474,-1,-1,-1
111,-1,381.912,112.434,60.501,131.404,0.998081,-1,-1,-1
111,-1,581.28,104.568,57.602,165.807,0.995521,-1,-1,-1
111,-1,458.554,122.743,80.448,142.289,0.988492,-1,-1,-1
111,-1,516.876,120.432,52.751,139.115,0.984513,-1,-1,-1
111,-1,311.95,67.9269,54.091,198.936,0.960335,-1,-1,-1
112,-1,184.034,83.1293,62.25,175.956,0.998291,-1,-1,-1
112,-1,389.882,113.931,47.978,131.114,0.995288,-1,-1,-1
112,-1,589.842,93.9494,49.158,184.042,0.992797,-1,-1,-1
112,-1,313.684,66.721,46.118,200.183,0.99172,-1,-1,-1
112,-1,507.804,116.023,61.672,137.195,0.983175,-1,-1,-1
112,-1,455.907,119.589,73.189,142.19,0.98257,-1,-1,-1
113,-1,385.627,115.744,55.065,125.38,0.997839,-1,-1,-1
113,-1,187.627,96.5803,51.729,152.571,0.997607,-1,-1,-1
113,-1,314.322,70.9479,47.317,190.854,0.996364,-1,-1,-1
113,-1,594.293,88.6746,44.707,189.187,0.988414,-1,-1,-1
113,-1,463.339,123.082,51.889,142.962,0.98515,-1,-1,-1
113,-1,507.513,102.959,52.02,148.343,0.984098,-1,-1,-1
114,-1,188.435,88.0964,50.495,162.871,0.99713,-1,-1,-1
114,-1,389.996,111.686,53.448,132.429,0.995271,-1,-1,-1
114,-1,311.395,83.739,47.466,179.037,0.994722,-1,-1,-1
114,-1,460.468,127.733,48.256,131.227,0.992736,-1,-1,-1
114,-1,517.89,108.156,45.881,129.495,0.983816,-1,-1,-1
114,-1,590.774,101.544,48.226,171.875,0.981174,-1,-1,-1
115,-1,187.247,88.0157,52.147,166.166,0.996696,-1,-1,-1
115,-1,389.811,120.306,47.822,125.096,0.995628,-1,-1,-1
115,-1,302.155,88.3714,63.108,168.584,0.995614,-1,-1,-1
115,-1,509.724,115.018,55.48,119.2,0.98719,-1,-1,-1
115,-1,456.403,132.184,50.995,136.991,0.986614,-1,-1,-1
115,-1,603.443,103.873,34.768,175.182,0.951871,-1,-1,-1
116,-1,187.138,94.2279,53.332,157.552,0.995761,-1,-1,-1
116,-1,301.404,89.0163,58.425,163.59,0.994131,-1,-1,-1
116,-1,455.192,146.262,53.21,126.257,0.990029,-1,-1,-1
116,-1,513.081,108.777,50.863,134.422,0.989313,-1,-1,-1
116,-1,393.745,118.672,47.419,126.116,0.984959,-1,-1,-1
116,-1,599.009,100.807,38.566,154.78,0.964596,-1,-1,-1
117,-1,185.913,86.9457,58.094,158.199,0.996287,-1,-1,-1
117,-1,391.001,108.344,50.417,138.303,0.995601,-1,-1,-1
117,-1,451.917,122.357,44.058,144.293,0.994242,-1,-1,-1
117,-1,504.56,114.264,52.603,134.325,0.991858,-1,-1,-1
117,-1,309.129,85.5073,55.738,176.539,0.991559,-1,-1,-1
117,-1,599.836,95.6919,39.164,156.366,0.969586,-1,-1,-1
118,-1,186.338,90.7097,57.338,160.672,0.996356,-1,-1,-1
118,-1,394.534,118.004,44.53,126.695,0.993397,-1,-1,-1
118,-1,505.097,111.296,49.579,145.851,0.99163,-1,-1,-1
118,-1,303.602,89.0109,45.724,168.816,0.9882,-1,-1,-1
118,-1,602.254,89.7134,36.746,151.982,0.98325,-1,-1,-1
118,-1,451.325,124.173,46.813,145.337,0.981673,-1,-1,-1
119,-1,394.081,111.275,59.675,137.175,0.996209,-1,-1,-1
119,-1,186.472,86.9101,59.097,165.988,0.99575,-1,-1,-1
119,-1,503.992,107.774,50.191,147.698,0.994302,-1,-1,-1
119,-1,443.484,108.092,43.876,157.392,0.99211,-1,-1,-1
119,-1,306.425,83.1608,42.256,178.607,0.986646,-1,-1,-1
119,-1,602.767,94.2366,36.233,139.324,0.97209,-1,-1,-1
120,-1,190.413,91.7873,56.084,160.391,0.996454,-1,-1,-1
120,-1,302.234,75.4442,46.877,189.442,0.995103,-1,-1,-1
120,-1,392.154,113.048,55.101,131.474,0.994923,-1,-1,-1
120,-1,441.776,109.352,43.039,156.635,0.97577,-1,-1,-1
120,-1,494.836,107.651,50.398,145.991,0.957651,-1,-1,-1
120,-1,604.945,97.0901,34.055,149.648,0.956337,-1,-1,-1
121,-1,189.536,90.183,56.676,159.035,0.996143,-1,-1,-1
121,-1,392.728,107.89,53.32,137.379,0.994821,-1,-1,-1
121,-1,299.006,80.8708,49.566,185.561,0.991687,-1,-1,-1
121,-1,509.5,112.258,43.344,140.063,0.979858,-1,-1,-1
121,-1,446.316,130.69,35.743,135.819,0.945969,-1,-1,-1
121,-1,606.597,99.9443,32.403,143.061,0.942052,-1,-1,-1
122,-1,194.2,85.7336,60.394,176.232,0.997269,-1,-1,-1
122,-1,392.32,112.084,48.734,134.211,0.99215,-1,-1,-1
122,-1,495.132,112.572,49.326,127.318,0.989859,-1,-1,-1
122,-1,439.355,118.127,42.68,145.14,0.970851,-1,-1,-1
122,-1,299.936,75.2607,51.503,188.207,0.965127,-1,-1,-1
123,-1,188.199,97.596,61.237,150.847,0.99796,-1,-1,-1
123,-1,294.743,85.5403,55.656,176.531,0.997711,-1,-1,-1
123,-1,391.376,103.69,54.634,145.155,0.992397,-1,-1,-1
123,-1,497.181,105.401,45.851,140.959,0.987136,-1,-1,-1
123,-1,438.314,111.605,41.416,167.881,0.984487,-1,-1,-1
124,-1,291.783,91.3875,60.575,170.418,0.997742,-1,-1,-1
124,-1,190.602,92.0138,57.537,157.413,0.996886,-1,-1,-1
124,-1,392.422,108.583,54.938,133.696,0.995222,-1,-1,-1
124,-1,496.022,110.166,53.444,127.989,0.990072,-1,-1,-1
124,-1,430.812,113.181,46.827,150.921,0.989376,-1,-1,-1
125,-1,192.086,92.9829,57.396,157.682,0.997398,-1,-1,-1
125,-1,296.573,88.9575,54.136,170.627,0.995442,-1,-1,-1
125,-1,424.83,124.503,49.691,141.47,0.994028,-1,-1,-1
125,-1,493.361,115.344,49.416,132.473,0.99271,-1,-1,-1
125,-1,391.269,107.883,52.111,137.012,0.990582,-1,-1,-1
126,-1,193.498,94.5409,59.081,163.089,0.997047,-1,-1,-1
126,-1,291.81,89.9156,61.063,178.883,0.996933,-1,-1,-1
126,-1,486.102,104.951,53.624,157.193,0.993897,-1,-1,-1
126,-1,395.792,123.249,66.446,138.143,0.987156,-1,-1,-1
127,-1,292.129,84.8204,55.048,180.35,0.998537,-1,-1,-1
127,-1,196.404,85.6164,59.41,171.826,0.997375,-1,-1,-1
127,-1,407.754,123.293,56.821,142.936,0.993022,-1,-1,-1
127,-1,478.946,116.754,75.891,137.579,0.990623,-1,-1,-1
127,-1,503.645,155.651,31.269,101.147,0.54588,-1,-1,-1
128,-1,290.191,84.123,59.129,171.713,0.998459,-1,-1,-1
128,-1,194.933,89.7861,58.641,163.326,0.997083,-1,-1,-1
128,-1,404.179,127.407,68.499,134.619,0.995727,-1,-1,-1
128,-1,482.545,107.842,52.264,133.927,0.978366,-1,-1,-1
129,-1,394.915,128.492,79.537,137.264,0.996665,-1,-1,-1
129,-1,195.87,85.9014,57.886,165.705,0.996386,-1,-1,-1
129,-1,286.686,80.4695,68.267,181.764,0.994848,-1,-1,-1
129,-1,478.166,118.604,69.439,130.031,0.994128,-1,-1,-1
130,-1,289.401,83.9549,67.714,173.114,0.99881,-1,-1,-1
130,-1,476.331,113.631,58.387,140.022,0.997507,-1,-1,-1
130,-1,192.583,91.1657,58.162,164.647,0.997244,-1,-1,-1
130,-1,394.45,124.018,73.003,134.356,0.994017,-1,-1,-1
131,-1,469.984,115.375,65.767,144.279,0.997521,-1,-1,-1
131,-1,193.862,95.8363,54.085,148.62,0.997459,-1,-1,-1
131,-1,287.219,95.3496,63.169,162.555,0.997342,-1,-1,-1
131,-1,401.74,123.534,52.107,150.825,0.984208,-1,-1,-1
132,-1,467.306,122.669,69.527,129.588,0.99838,-1,-1,-1
132,-1,283.74,93.5696,66.936,160.028,0.998359,-1,-1,-1
132,-1,194.055,90.1641,54.176,160.734,0.995604,-1,-1,-1
132,-1,405.061,115.863,47.374,148.61,0.983589,-1,-1,-1
133,-1,283.987,93.4222,65.84,169.889,0.99876,-1,-1,-1
133,-1,194.921,95.1102,53.296,155.521,0.996715,-1,-1,-1
133,-1,470.712,112.279,64.698,140.837,0.995182,-1,-1,-1
133,-1,399.367,117.458,53.094,146.006,0.994369,-1,-1,-1
134,-1,288.423,95.6445,55.408,172.569,0.998594,-1,-1,-1
134,-1,189.617,87.17,53.455,165.612,0.996302,-1,-1,-1
134,-1,467.417,111.067,64.469,144.382,0.994757,-1,-1,-1
134,-1,395.856,115.779,52.706,141.763,0.991608,-1,-1,-1
135,-1,394.63,105.906,60.352,153.716,0.996894,-1,-1,-1
135,-1,284.461,99.3426,66.363,162.337,0.996123,-1,-1,-1
135,-1,471.856,115.332,59.322,131.989,0.993326,-1,-1,-1
135,-1,196.309,91.9614,47.225,171.86,0.988874,-1,-1,-1
136,-1,391.947,111.614,60.344,157.758,0.996286,-1,-1,-1
136,-1,195.243,87.1798,56.28,164.222,0.996097,-1,-1,-1
136,-1,282.883,94.78,62.668,169.516,0.995855,-1,-1,-1
136,-1,466.095,111.23,56.912,153.049,0.993003,-1,-1,-1
136,-1,1.69421,126.483,58.0708,121.652,0.771348,-1,-1,-1
137,-1,282.171,101.735,53.786,152.233,0.996825,-1,-1,-1
137,-1,194.626,88.6059,53.617,160.641,0.99622,-1,-1,-1
137,-1,464.185,116.251,57.383,132.527,0.994376,-1,-1,-1
137,-1,389.883,113.106,60.715,146.005,0.99413,-1,-1,-1
137,-1,1.36782,107.733,57.82,133.662,0.807415,-1,-1,-1
138,-1,279.511,101.95,62.872,163.762,0.99739,-1,-1,-1
138,-1,194.57,87.843,50.428,163.512,0.994357,-1,-1,-1
138,-1,392.02,120.288,57.37,147.598,0.983584,-1,-1,-1
138,-1,470.61,112.047,55.083,141.74,0.980924,-1,-1,-1
138,-1,5.61858,91.9774,66.7627,198.171,0.741585,-1,-1,-1
139,-1,188.632,81.6414,60.928,185.73,0.997321,-1,-1,-1
139,-1,383.596,122.176,68.039,145.47,0.99697,-1,-1,-1
139,-1,277.66,100.747,58.719,162.586,0.996721,-1,-1,-1
139,-1,463.267,114.247,61.442,140.728,0.988196,-1,-1,-1
139,-1,4.19132,116.208,52.4214,112.886,0.963358,-1,-1,-1
140,-1,276.068,99.0104,56.962,153.468,0.998175,-1,-1,-1
140,-1,383.052,123.297,62.185,136.911,0.997417,-1,-1,-1
140,-1,458.847,119.278,62.213,139.63,0.996247,-1,-1,-1
140,-1,183.679,85.1264,59.26,177.33,0.987297,-1,-1,-1
140,-1,8.43991,76.5377,52.8126,178.009,0.550229,-1,-1,-1
141,-1,381.832,117.553,61.461,143.599,0.997779,-1,-1,-1
141,-1,277.401,101.613,50.523,152.805,0.996811,-1,-1,-1
141,-1,192.244,87.8683,49.047,158.983,0.996473,-1,-1,-1
141,-1,463.654,122.457,57.203,135.014,0.978712,-1,-1,-1
141,-1,14.5304,69.4151,56.4257,203.807,0.575752,-1,-1,-1
142,-1,382.271,118.966,62.995,146.058,0.997461,-1,-1,-1
142,-1,274.224,92.8469,50.371,166.899,0.99642,-1,-1,-1
142,-1,193.255,90.2767,46.58,154.263,0.995644,-1,-1,-1
142,-1,462.802,112.657,56.434,163.803,0.977681,-1,-1,-1
142,-1,11.4367,94.6408,60.9647,189.213,0.97559,-1,-1,-1
142,-1,425.283,121.999,33.157,142.139,0.53261,-1,-1,-1
143,-1,269.174,86.9817,49.763,169.339,0.997972,-1,-1,-1
143,-1,183.703,92.2863,58.666,156.216,0.996135,-1,-1,-1
143,-1,13.6539,101.003,58.4279,179.458,0.995813,-1,-1,-1
143,-1,380.558,114.635,75.077,146.037,0.994557,-1,-1,-1
143,-1,462.34,115.08,52.393,144.678,0.990955,-1,-1,-1
144,-1,190.976,91.9852,48.942,162.58,0.996107,-1,-1,-1
144,-1,15.6379,112.501,55.4456,167.864,0.99599,-1,-1,-1
144,-1,376.859,116.111,77.089,148.403,0.993897,-1,-1,-1
144,-1,263.851,93.1548,57.935,161.431,0.991564,-1,-1,-1
144,-1,455.217,115.15,62.119,143.796,0.991512,-1,-1,-1
145,-1,271.579,83.6922,53.963,177.006,0.9974,-1,-1,-1
145,-1,377.396,123.171,73.511,137.517,0.997151,-1,-1,-1
145,-1,22.7926,111.232,53.835,167.477,0.996256,-1,-1,-1
145,-1,190.453,86.5037,46.741,161.148,0.99482,-1,-1,-1
145,-1,464.033,113.555,55.766,136.597,0.953121,-1,-1,-1
146,-1,25.9709,111.275,59.4157,171.735,0.996102,-1,-1,-1
146,-1,192.358,84.596,47.469,169.164,0.995663,-1,-1,-1
146,-1,269.919,87.3422,51.848,169.315,0.995462,-1,-1,-1
146,-1,388.191,119.392,73.756,143.988,0.980981,-1,-1,-1
146,-1,465.492,113.739,47.325,137.701,0.974528,-1,-1,-1
146,-1,365.444,132.283,49.957,121.453,0.962298,-1,-1,-1
147,-1,20.3865,114.068,67.7137,173.396,0.99755,-1,-1,-1
147,-1,265.303,88.5567,56.308,172.437,0.995384,-1,-1,-1
147,-1,187.053,79.0209,51.109,181.283,0.994288,-1,-1,-1
147,-1,404.733,115.555,52.368,147.205,0.994015,-1,-1,-1
147,-1,366.249,127.691,49.439,134.719,0.979415,-1,-1,-1
147,-1,462.444,109.457,52.205,145.227,0.959601,-1,-1,-1
148,-1,20.972,114.867,74.4071,173.365,0.996958,-1,-1,-1
148,-1,192.097,84.2102,42.382,174.573,0.996277,-1,-1,-1
148,-1,265.821,92.9972,49.326,157.592,0.996022,-1,-1,-1
148,-1,458.232,115.192,49.434,147.946,0.99222,-1,-1,-1
148,-1,364.173,137.331,52.291,123.521,0.989967,-1,-1,-1
148,-1,405.463,111.095,41.028,140.279,0.985696,-1,-1,-1
149,-1,190.737,81.0862,41.375,167.132,0.996047,-1,-1,-1
149,-1,454.185,115.063,54.393,147.201,0.995948,-1,-1,-1
149,-1,264.74,92.6969,48.756,154.499,0.994915,-1,-1,-1
149,-1,406.878,112.291,43.26,146.705,0.992792,-1,-1,-1
149,-1,26.2626,110.124,75.6634,183.513,0.991287,-1,-1,-1
149,-1,362.45,143.353,47.514,119.939,0.987491,-1,-1,-1
150,-1,32.4188,105.956,67.0362,190.525,0.996151,-1,-1,-1
150,-1,190.283,80.4731,40.535,179.132,0.996014,-1,-1,-1
150,-1,266.447,89.1317,46.166,156.71,0.995747,-1,-1,-1
150,-1,408.224,116.75,47.104,139.119,0.993748,-1,-1,-1
150,-1,363.748,120.65,43.752,141.288,0.992824,-1,-1,-1
150,-1,455.868,114.728,58.527,144.575,0.987382,-1,-1,-1
151,-1,266.527,90.2779,44.801,152.545,0.99686,-1,-1,-1
151,-1,40.6528,103.047,57.6432,183.311,0.996335,-1,-1,-1
151,-1,189.263,82.1044,41.317,179.594,0.995515,-1,-1,-1
151,-1,404.631,118.277,46.328,147.087,0.9919,-1,-1,-1
151,-1,360.649,115.693,42.784,149.36,0.985319,-1,-1,-1
151,-1,458.198,114.449,55.187,149.047,0.984265,-1,-1,-1
152,-1,262.681,90.5894,54.037,155.42,0.997174,-1,-1,-1
152,-1,410.259,119.612,45.774,145.81,0.995785,-1,-1,-1
152,-1,47.3587,110.468,50.1441,181.793,0.993916,-1,-1,-1
152,-1,190.067,80.3669,42.465,178.427,0.993494,-1,-1,-1
152,-1,455.282,117.983,53.919,142.297,0.986561,-1,-1,-1
152,-1,359.152,112.61,35.319,131.589,0.965302,-1,-1,-1
153,-1,264.72,90.8408,40.318,172.04,0.99761,-1,-1,-1
153,-1,46.9451,107.158,61.4419,179.653,0.997014,-1,-1,-1
153,-1,190.908,83.9592,41.79,175.085,0.995966,-1,-1,-1
153,-1,396.18,116.721,63.86,140.019,0.991537,-1,-1,-1
153,-1,355.359,116.47,39.538,138.338,0.971934,-1,-1,-1
153,-1,451.854,113.052,50.782,153.435,0.970777,-1,-1,-1
153,-1,324.819,105.2,29.501,120.998,0.528365,-1,-1,-1
154,-1,265.707,95.0006,39.961,164.461,0.998014,-1,-1,-1
154,-1,57.5715,108.45,53.8355,183.356,0.997114,-1,-1,-1
154,-1,190.508,83.2394,40.816,176.319,0.994658,-1,-1,-1
154,-1,410.34,116.129,49.291,138.663,0.993524,-1,-1,-1
154,-1,454.802,109.99,59.538,149.401,0.978154,-1,-1,-1
154,-1,363.032,114.135,39.639,140.506,0.95771,-1,-1,-1
155,-1,262.312,87.5179,43.918,169.042,0.995424,-1,-1,-1
155,-1,190.133,79.5495,51.818,173.869,0.994482,-1,-1,-1
155,-1,62.5617,99.8332,52.9023,187.542,0.993912,-1,-1,-1
155,-1,447.533,112.72,52.962,146.197,0.984574,-1,-1,-1
155,-1,398.877,113.886,64.335,151.071,0.984557,-1,-1,-1
155,-1,360.605,105.935,37.955,153.279,0.939203,-1,-1,-1
156,-1,70.3214,103.111,48.7576,183.903,0.995006,-1,-1,-1
156,-1,191.733,87.9716,42.248,164.057,0.994912,-1,-1,-1
156,-1,260.342,93.7896,41.521,153.587,0.994168,-1,-1,-1
156,-1,402.248,115.477,52.045,148.085,0.991454,-1,-1,-1
156,-1,452.302,109.798,47.955,145.649,0.990653,-1,-1,-1
156,-1,357.579,114.095,41.824,154.63,0.978253,-1,-1,-1
157,-1,65.5382,113.596,62.4818,171.365,0.994301,-1,-1,-1
157,-1,191.556,84.9754,42.678,162.049,0.994286,-1,-1,-1
157,-1,263.608,92.509,44.791,171.404,0.992763,-1,-1,-1
157,-1,406.163,116.82,48.543,139.498,0.991764,-1,-1,-1
157,-1,349.986,118.464,44.33,147.135,0.986229,-1,-1,-1
157,-1,446.696,110.415,46.418,147.576,0.985884,-1,-1,-1
158,-1,193.45,88.2491,44.293,165.769,0.994921,-1,-1,-1
158,-1,76.5824,104.908,62.5826,188.12,0.994647,-1,-1,-1
158,-1,264.046,96.4183,41.69,163.476,0.992971,-1,-1,-1
158,-1,345.25,118.214,48.594,134.779,0.992886,-1,-1,-1
158,-1,402.563,118.987,49.49,145.574,0.988226,-1,-1,-1
158,-1,454.62,112.473,40.164,145.481,0.985612,-1,-1,-1
159,-1,77.6758,102.525,61.4062,178.691,0.997194,-1,-1,-1
159,-1,261.07,89.8759,42.769,167.294,0.995056,-1,-1,-1
159,-1,189.432,90.1238,45.382,153.97,0.994941,-1,-1,-1
159,-1,443.176,116.271,52.579,143.343,0.993051,-1,-1,-1
159,-1,404.535,111.852,52.737,156.901,0.991019,-1,-1,-1
159,-1,342.668,112.835,48.268,148.348,0.972481,-1,-1,-1
160,-1,193.046,86.6949,45.599,165.986,0.995463,-1,-1,-1
160,-1,262.344,97.3598,44.042,161.683,0.994765,-1,-1,-1
160,-1,80.2915,108.27,60.0055,150.684,0.991198,-1,-1,-1
160,-1,399.026,121.019,52.003,143.289,0.990427,-1,-1,-1
160,-1,345.718,121.874,43.279,146.366,0.988235,-1,-1,-1
160,-1,437.913,114.126,61.675,146.204,0.984816,-1,-1,-1
161,-1,260.955,89.074,46.09,170.838,0.997256,-1,-1,-1
161,-1,194.084,88.089,45.387,157.633,0.993665,-1,-1,-1
161,-1,88.9629,103.409,54.9441,166.109,0.992411,-1,-1,-1
161,-1,400.907,117.247,48.184,142.958,0.989733,-1,-1,-1
161,-1,439.407,120.972,56.126,133.909,0.979072,-1,-1,-1
161,-1,341.507,118.125,49.467,148.89,0.967998,-1,-1,-1
162,-1,261.037,98.0307,47.216,156.1,0.996091,-1,-1,-1
162,-1,193.246,84.2891,46.325,169.567,0.995545,-1,-1,-1
162,-1,86.8242,100.151,61.3778,174.13,0.995061,-1,-1,-1
162,-1,403.289,111.646,48.224,161.439,0.991682,-1,-1,-1
162,-1,427.206,117.888,81.175,141.048,0.983961,-1,-1,-1
162,-1,340.96,118.952,47.811,149.537,0.956125,-1,-1,-1
163,-1,191.234,87.2152,49.029,160.914,0.994666,-1,-1,-1
163,-1,394.369,115.402,53.63,147.885,0.99151,-1,-1,-1
163,-1,98.6388,79.3184,60.9342,199.45,0.990118,-1,-1,-1
163,-1,345.785,117.781,39.456,135.828,0.987955,-1,-1,-1
163,-1,263.766,94.7408,41.911,159.746,0.986876,-1,-1,-1
163,-1,440.301,117.526,53.68,144.53,0.980921,-1,-1,-1
164,-1,190.056,91.7517,54.423,159.365,0.995445,-1,-1,-1
164,-1,397.875,121.34,47.336,144.303,0.994966,-1,-1,-1
164,-1,262.266,87.3212,43.963,173.296,0.993939,-1,-1,-1
164,-1,340.807,119.975,42.085,144.165,0.988317,-1,-1,-1
164,-1,94.5606,89.1271,67.1104,183.713,0.980936,-1,-1,-1
164,-1,444.421,119.178,49.014,131.518,0.980589,-1,-1,-1
165,-1,189.929,82.5559,49.471,173.606,0.995523,-1,-1,-1
165,-1,263.001,92.55,47.268,157.336,0.995025,-1,-1,-1
165,-1,397.603,113.061,47.679,141.364,0.991565,-1,-1,-1
165,-1,438.742,115.436,52.838,138.403,0.987353,-1,-1,-1
165,-1,111.461,94.0048,56.685,186.71,0.985979,-1,-1,-1
165,-1,338.05,111.368,39.262,145.813,0.984429,-1,-1,-1
166,-1,190.193,86.5657,51.95,165.821,0.995496,-1,-1,-1
166,-1,261.667,96.0877,43.091,154.038,0.994121,-1,-1,-1
166,-1,339.917,111.641,41.236,151.552,0.989379,-1,-1,-1
166,-1,392.025,114.955,56.356,145.322,0.988034,-1,-1,-1
166,-1,435.093,120.684,54.844,139.327,0.980993,-1,-1,-1
166,-1,100.87,102.009,66.554,174.726,0.977168,-1,-1,-1
167,-1,190.163,85.1725,48.752,167.56,0.996026,-1,-1,-1
167,-1,103.855,93.8679,69.851,184.931,0.995293,-1,-1,-1
167,-1,257.724,82.2848,50.221,165.978,0.993625,-1,-1,-1
167,-1,436.571,117.912,50.435,139.895,0.991818,-1,-1,-1
167,-1,395.198,114.978,42.922,150.036,0.987755,-1,-1,-1
167,-1,339.06,116.74,40.088,139.56,0.984057,-1,-1,-1
168,-1,104.944,90.4175,71.839,194.041,0.997227,-1,-1,-1
168,-1,189.895,80.2043,50.061,174.019,0.996007,-1,-1,-1
168,-1,260.956,91.0617,47.644,155.571,0.993357,-1,-1,-1
168,-1,438.042,111.989,46.65,163.907,0.98859,-1,-1,-1
168,-1,393.802,118.046,42.233,143.47,0.98428,-1,-1,-1
168,-1,336.068,115.249,41.729,135.407,0.972393,-1,-1,-1
169,-1,191.654,86.4936,46.706,164.209,0.996168,-1,-1,-1
169,-1,434.602,117.842,57.359,145.828,0.995903,-1,-1,-1
169,-1,261.947,89.7429,45.672,155.17,0.992561,-1,-1,-1
169,-1,119.688,99.5436,57.053,187.564,0.990653,-1,-1,-1
169,-1,389.782,115.775,47.373,150.083,0.989262,-1,-1,-1
169,-1,327.891,121.65,53.377,130.267,0.983534,-1,-1,-1
170,-1,118.761,97.7413,59.637,179.733,0.99607,-1,-1,-1
170,-1,190.099,88.5804,49.365,159.872,0.99553,-1,-1,-1
170,-1,385.847,113.213,55.774,145.748,0.99473,-1,-1,-1
170,-1,261.188,87.7218,46.743,161.55,0.99242,-1,-1,-1
170,-1,334.883,120.508,41.021,126.269,0.986919,-1,-1,-1
170,-1,434.721,107.457,56.582,154.995,0.986527,-1,-1,-1
171,-1,191.308,88.2141,51.606,169.818,0.996338,-1,-1,-1
171,-1,256.675,80.9781,50.873,181.708,0.995504,-1,-1,-1
171,-1,385.765,114.462,54.353,149.654,0.994636,-1,-1,-1
171,-1,427.082,116.375,59.641,146.122,0.992513,-1,-1,-1
171,-1,128.403,73.2173,52.505,207.874,0.992287,-1,-1,-1
171,-1,325.031,122,52.148,136.929,0.981858,-1,-1,-1
172,-1,193.931,78.3311,47.488,182.125,0.995534,-1,-1,-1
172,-1,381.447,113.34,50.89,144.859,0.991624,-1,-1,-1
172,-1,260.124,91.3498,48.458,154.917,0.988955,-1,-1,-1
172,-1,129.957,84.3036,51.531,196.478,0.987853,-1,-1,-1
172,-1,424.715,108.298,54.025,163.101,0.984374,-1,-1,-1
172,-1,326.582,118.207,49.673,140.264,0.983813,-1,-1,-1
173,-1,255.157,86.8528,55.741,163.241,0.995466,-1,-1,-1
173,-1,186.576,96.4917,50.512,156.241,0.995188,-1,-1,-1
173,-1,383.599,115.931,49.343,138.337,0.988214,-1,-1,-1
173,-1,420.396,110.397,67.316,147.032,0.987829,-1,-1,-1
173,-1,326.435,120.257,48.321,133.625,0.982813,-1,-1,-1
173,-1,127.853,72.7673,57.603,202.198,0.930721,-1,-1,-1
174,-1,253.819,85.4457,56.203,169.494,0.995925,-1,-1,-1
174,-1,186.111,88.4397,51.338,172.322,0.995029,-1,-1,-1
174,-1,378.03,111.948,51.441,155.495,0.993825,-1,-1,-1
174,-1,424.019,111.278,54.076,161.507,0.991121,-1,-1,-1
174,-1,328.742,116.323,37.332,134.276,0.986435,-1,-1,-1
174,-1,118.013,63.3255,64.379,217.629,0.874499,-1,-1,-1
175,-1,257.017,84.0212,51.407,169.419,0.995134,-1,-1,-1
175,-1,373.511,122.364,50.528,137.893,0.994894,-1,-1,-1
175,-1,429.497,111.553,52.869,155.884,0.994829,-1,-1,-1
175,-1,192.015,98.8913,46.394,155.98,0.993007,-1,-1,-1
175,-1,327.029,125.486,43.592,128.608,0.989196,-1,-1,-1
175,-1,137.447,86.5991,51.671,183.389,0.970276,-1,-1,-1
176,-1,374.885,115.609,51.462,139.395,0.99571,-1,-1,-1
176,-1,256.165,84.3941,52.52,167.983,0.995303,-1,-1,-1
176,-1,143.108,89.3297,58.457,190.286,0.992452,-1,-1,-1
176,-1,196.617,93.7843,37.927,157.359,0.990317,-1,-1,-1
176,-1,426.893,111.746,51.736,158.29,0.989966,-1,-1,-1
176,-1,325.501,118.341,46.444,130.043,0.98648,-1,-1,-1
177,-1,254.831,76.0087,54.409,181.412,0.996376,-1,-1,-1
177,-1,378.509,118.053,49.881,140.016,0.99564,-1,-1,-1
177,-1,413.456,109.83,72.685,157.65,0.995527,-1,-1,-1
177,-1,143.25,79.3265,63.381,197.284,0.98825,-1,-1,-1
177,-1,325.468,111.871,45.365,142.332,0.973283,-1,-1,-1
177,-1,198.625,89.5154,38.529,157.515,0.959353,-1,-1,-1
178,-1,262.37,83.1937,38.712,177.048,0.997344,-1,-1,-1
178,-1,424.075,107.863,50.565,159.024,0.996151,-1,-1,-1
178,-1,362.455,116.23,69.355,143.084,0.994377,-1,-1,-1
178,-1,137.994,94.3141,78.244,190.695,0.992487,-1,-1,-1
178,-1,325.194,108.029,43.651,147.254,0.972904,-1,-1,-1
178,-1,195.735,94.7674,41.479,149.224,0.833962,-1,-1,-1
179,-1,421.493,112.577,55.241,154.127,0.997985,-1,-1,-1
179,-1,257.407,79.0296,48.444,178.403,0.996701,-1,-1,-1
179,-1,371.204,109.704,53.749,155.886,0.996352,-1,-1,-1
179,-1,145.574,92.3835,87.503,181.141,0.987884,-1,-1,-1
179,-1,322.929,113.667,45.785,138.553,0.985387,-1,-1,-1
179,-1,203.324,82.7671,30.07,166.284,0.651763,-1,-1,-1
================================================
FILE: data/Venice-2/det.txt
================================================
1,-1,1312.61,434.465,203.63,350.962,0.995395,-1,-1,-1
1,-1,1459.3,441.642,119.05,340.046,0.985937,-1,-1,-1
1,-1,442.754,460.529,110.712,262.931,0.983699,-1,-1,-1
1,-1,574.811,433.993,110.002,278.611,0.978454,-1,-1,-1
1,-1,1261.67,424.868,46.4,104.84,0.956984,-1,-1,-1
1,-1,1686.16,432.891,75.11,153.882,0.945084,-1,-1,-1
1,-1,1849.09,426.983,64.15,248.743,0.901798,-1,-1,-1
1,-1,655.716,470.113,62.111,147.284,0.719905,-1,-1,-1
1,-1,698.27,462.295,46.049,131.506,0.60495,-1,-1,-1
2,-1,1326.37,444.555,184.62,344.162,0.994424,-1,-1,-1
2,-1,443.501,454.845,115.103,265.637,0.986351,-1,-1,-1
2,-1,1471.88,446.754,113.02,307.952,0.986267,-1,-1,-1
2,-1,576.418,456.777,90.18,262.908,0.976573,-1,-1,-1
2,-1,1268.8,429.517,49.31,108.659,0.959168,-1,-1,-1
2,-1,1685.36,429.682,77.51,155.253,0.933646,-1,-1,-1
2,-1,1851.08,443.78,60.32,227.978,0.867524,-1,-1,-1
2,-1,628.693,453.632,73.632,197.653,0.828371,-1,-1,-1
2,-1,699.927,464.119,48.289,130.506,0.720299,-1,-1,-1
2,-1,1294,419.422,55.47,117.233,0.679111,-1,-1,-1
3,-1,1326.71,442.032,219.06,341.17,0.994808,-1,-1,-1
3,-1,444.541,460.73,110.672,261.595,0.981891,-1,-1,-1
3,-1,1477.9,433.938,119.65,334.054,0.978915,-1,-1,-1
3,-1,575.789,463.201,87.803,260.466,0.971351,-1,-1,-1
3,-1,1261.24,422.729,51.22,103.431,0.945254,-1,-1,-1
3,-1,1678.36,427.265,86.48,158.114,0.918838,-1,-1,-1
3,-1,1850.89,431.862,63,245.312,0.901683,-1,-1,-1
3,-1,632.806,457.495,75.526,187.507,0.872105,-1,-1,-1
3,-1,677.626,461.177,53.222,145.788,0.729565,-1,-1,-1
3,-1,709.355,471.446,36.714,120.024,0.56533,-1,-1,-1
3,-1,1072.86,460.922,40.65,112.48,0.524333,-1,-1,-1
4,-1,1332.92,425.105,192.07,384.037,0.995884,-1,-1,-1
4,-1,1480.56,437.552,113.39,347.36,0.987541,-1,-1,-1
4,-1,398.789,445.264,162.852,278.984,0.983518,-1,-1,-1
4,-1,576.412,463.279,85.443,259.074,0.969944,-1,-1,-1
4,-1,1269.01,423.404,52.97,111.597,0.94196,-1,-1,-1
4,-1,1851.33,430.107,62.41,251.673,0.8913,-1,-1,-1
4,-1,636.032,451.052,75.903,191.036,0.887303,-1,-1,-1
4,-1,1676.26,420.818,89.26,176.446,0.886679,-1,-1,-1
4,-1,1254.86,440.84,41.25,71.844,0.82004,-1,-1,-1
4,-1,698.974,465.047,43.698,125.471,0.773652,-1,-1,-1
4,-1,1071.24,468.128,42.8,113.417,0.536563,-1,-1,-1
5,-1,1359.41,432.499,177.9,349.215,0.995667,-1,-1,-1
5,-1,1495.24,438.899,110.42,318.056,0.984572,-1,-1,-1
5,-1,399.507,446.262,161.099,275.327,0.982252,-1,-1,-1
5,-1,581.181,440.695,97.379,271.456,0.967741,-1,-1,-1
5,-1,1253.43,420.372,62.69,120.617,0.931668,-1,-1,-1
5,-1,1850.81,424.695,63.19,230.152,0.92263,-1,-1,-1
5,-1,640.543,457.48,75.825,177.51,0.906838,-1,-1,-1
5,-1,1673.07,421.007,83.91,174.736,0.888334,-1,-1,-1
5,-1,707.069,473.986,38.252,107.932,0.832311,-1,-1,-1
5,-1,1072.16,467.075,41.24,110.427,0.546582,-1,-1,-1
6,-1,1366.47,416.872,183.13,396.913,0.997486,-1,-1,-1
6,-1,431.308,451.239,150.188,262.25,0.986369,-1,-1,-1
6,-1,1502.44,433.784,115.12,331.279,0.98247,-1,-1,-1
6,-1,582.641,440.076,92.625,274.425,0.971308,-1,-1,-1
6,-1,1850.33,427.056,63.87,229.202,0.930639,-1,-1,-1
6,-1,1266.77,429.502,38.11,97.314,0.925336,-1,-1,-1
6,-1,1663.56,424.223,112.09,178.157,0.88598,-1,-1,-1
6,-1,645.569,457.133,62.614,177.806,0.851295,-1,-1,-1
6,-1,701.723,463.19,48.409,136.652,0.830059,-1,-1,-1
7,-1,1369.6,434.695,172.36,352.967,0.997204,-1,-1,-1
7,-1,429.58,449.66,154.432,266.666,0.988523,-1,-1,-1
7,-1,1496.21,437.306,105.1,317.316,0.987286,-1,-1,-1
7,-1,581.624,443.119,90.689,270.817,0.972229,-1,-1,-1
7,-1,1673.13,425.978,85.19,164.865,0.944691,-1,-1,-1
7,-1,1846.9,434.263,63.99,239.959,0.930504,-1,-1,-1
7,-1,1265.92,432.87,38.3,90.687,0.924535,-1,-1,-1
7,-1,637.296,455.086,72.2,197.175,0.922062,-1,-1,-1
7,-1,703.234,470.246,44.772,126.298,0.825795,-1,-1,-1
7,-1,1069.01,460.586,55.71,131.338,0.652385,-1,-1,-1
8,-1,1396.66,425.896,137.52,351.841,0.995686,-1,-1,-1
8,-1,429.511,453.351,159.449,258.404,0.988685,-1,-1,-1
8,-1,580.945,444.385,91.015,273.103,0.973589,-1,-1,-1
8,-1,1501.18,411.303,101.6,376.306,0.966568,-1,-1,-1
8,-1,635.141,447.456,73.775,207.509,0.938818,-1,-1,-1
8,-1,1846.79,435.172,65.24,243.175,0.930824,-1,-1,-1
8,-1,1267.61,433.091,35.81,85.703,0.923396,-1,-1,-1
8,-1,1683.71,426.143,95.39,180.16,0.895979,-1,-1,-1
8,-1,684.753,471.181,44.398,137.186,0.862052,-1,-1,-1
9,-1,1403.13,425.422,161.05,378.793,0.995136,-1,-1,-1
9,-1,580.989,437.854,90.683,265.831,0.982652,-1,-1,-1
9,-1,1500.72,399.29,109.5,389.152,0.98235,-1,-1,-1
9,-1,414.32,463.711,148.209,223.496,0.97217,-1,-1,-1
9,-1,1273.54,425.938,41.55,103.226,0.947466,-1,-1,-1
9,-1,1847.12,430.785,61.65,247.132,0.927076,-1,-1,-1
9,-1,649.245,466.126,62.193,175.662,0.921931,-1,-1,-1
9,-1,1679.21,416.395,85.84,188.342,0.894539,-1,-1,-1
9,-1,685.932,477.346,44.218,123.948,0.803811,-1,-1,-1
10,-1,1385.33,440.149,194.19,347.487,0.99309,-1,-1,-1
10,-1,1526.94,412.337,92.21,361.419,0.990898,-1,-1,-1
10,-1,581.295,442.028,88.413,260.868,0.984184,-1,-1,-1
10,-1,408.569,462.321,155.796,239.947,0.968445,-1,-1,-1
10,-1,1846.21,397.384,64.65,255.17,0.938752,-1,-1,-1
10,-1,1274.02,426.791,40.3,103.586,0.933822,-1,-1,-1
10,-1,686.296,470.663,46.167,137.159,0.898483,-1,-1,-1
10,-1,1680.74,421.124,83.52,190.603,0.895556,-1,-1,-1
10,-1,648.096,465.051,55.821,177.407,0.86706,-1,-1,-1
10,-1,1374.71,437.965,47.74,129.735,0.826539,-1,-1,-1
10,-1,713.068,467.211,49.058,113.342,0.632503,-1,-1,-1
11,-1,1401.39,432.108,192.82,348.806,0.993446,-1,-1,-1
11,-1,437.437,460.09,122.566,276.934,0.974192,-1,-1,-1
11,-1,582.049,447.016,85.676,272.031,0.973849,-1,-1,-1
11,-1,1530.49,430.354,92.59,336.96,0.95108,-1,-1,-1
11,-1,1273.45,428.981,39.71,104.555,0.934013,-1,-1,-1
11,-1,1847.3,437.34,65.22,237.595,0.926672,-1,-1,-1
11,-1,695.757,465.913,52.312,126.282,0.910738,-1,-1,-1
11,-1,1370.9,434.129,49.89,127.956,0.900915,-1,-1,-1
11,-1,1666.16,412.948,91.99,191.384,0.859041,-1,-1,-1
11,-1,657.566,467.571,59.171,175.686,0.849487,-1,-1,-1
11,-1,1067.23,460.605,44.1,120.83,0.563116,-1,-1,-1
12,-1,1423.38,405.939,171.86,407.646,0.993958,-1,-1,-1
12,-1,435.151,455.99,132.985,256.493,0.982774,-1,-1,-1
12,-1,1528.72,427.893,114.67,352.902,0.98248,-1,-1,-1
12,-1,585.377,447.377,84.576,253.333,0.971144,-1,-1,-1
12,-1,1846.28,426.617,68.91,254.41,0.933333,-1,-1,-1
12,-1,645.975,466.971,59.21,165.897,0.914071,-1,-1,-1
12,-1,1278.61,416.422,37.09,95.179,0.893473,-1,-1,-1
12,-1,705.173,474.727,42.804,112.752,0.885963,-1,-1,-1
12,-1,1667.46,424.764,110.07,158.376,0.846592,-1,-1,-1
12,-1,1380.72,429.877,49.8,129.32,0.706486,-1,-1,-1
12,-1,1067.85,462.936,43.51,117.692,0.59636,-1,-1,-1
12,-1,1087.47,436.861,52.12,136.19,0.514072,-1,-1,-1
13,-1,1432.46,395.477,169.18,403.134,0.995039,-1,-1,-1
13,-1,1542.15,433.472,110.94,325.482,0.986289,-1,-1,-1
13,-1,416.422,451.449,158.246,265.526,0.976394,-1,-1,-1
13,-1,584.84,447.046,86.182,262.732,0.968767,-1,-1,-1
13,-1,1845.45,423.486,70.16,231.474,0.949518,-1,-1,-1
13,-1,1272.84,426.836,43.47,100.797,0.918521,-1,-1,-1
13,-1,645.832,466.099,57.725,165.404,0.86636,-1,-1,-1
13,-1,1696.38,404.328,75.91,178.619,0.855551,-1,-1,-1
13,-1,700.782,461.081,52.613,133.846,0.800137,-1,-1,-1
13,-1,1066.85,463.251,45.58,119.918,0.589175,-1,-1,-1
13,-1,1086.97,437.996,54.16,135.555,0.535392,-1,-1,-1
14,-1,1538.96,418.91,114.43,365.446,0.992472,-1,-1,-1
14,-1,1450.19,420.82,139.34,372.533,0.991227,-1,-1,-1
14,-1,411.568,449.608,167.428,270.718,0.980941,-1,-1,-1
14,-1,587.66,452.636,97.981,267.783,0.973522,-1,-1,-1
14,-1,1272.92,428.148,43.45,100.493,0.939818,-1,-1,-1
14,-1,1694.5,411.92,95.97,152.155,0.923148,-1,-1,-1
14,-1,1839.42,419.785,71.72,234.218,0.908805,-1,-1,-1
14,-1,650.352,464.176,58.845,176.715,0.762592,-1,-1,-1
14,-1,719.144,474.012,40.19,103.013,0.703896,-1,-1,-1
14,-1,685.097,459.989,53.404,144.87,0.687744,-1,-1,-1
14,-1,1069.14,461.456,43.36,121.233,0.546978,-1,-1,-1
14,-1,1306.74,426.147,38.47,92.931,0.526861,-1,-1,-1
15,-1,1550.99,432.34,132.65,335.361,0.990323,-1,-1,-1
15,-1,1429.27,432.335,187.64,341.228,0.983014,-1,-1,-1
15,-1,415.445,456.254,173.758,264.388,0.982314,-1,-1,-1
15,-1,573.046,445.528,85.103,273.152,0.978002,-1,-1,-1
15,-1,1678.71,414.027,98.63,170.651,0.943254,-1,-1,-1
15,-1,1294.11,418.496,38.05,105.623,0.931052,-1,-1,-1
15,-1,1845.52,428.858,69.12,254.293,0.923666,-1,-1,-1
15,-1,641.716,467.227,60.468,169.987,0.878242,-1,-1,-1
15,-1,718.529,477.19,41.196,105.015,0.810709,-1,-1,-1
15,-1,682.613,462.581,53.927,142.874,0.760254,-1,-1,-1
15,-1,1256.44,428.933,48.02,93.22,0.756043,-1,-1,-1
16,-1,1573.55,444.956,119,342.516,0.992341,-1,-1,-1
16,-1,1441.63,453.508,159.9,345.909,0.991569,-1,-1,-1
16,-1,432.156,439.398,132.769,292.017,0.982729,-1,-1,-1
16,-1,582.934,443.991,89.977,258.178,0.981801,-1,-1,-1
16,-1,1845.08,431.509,67.23,227.552,0.949397,-1,-1,-1
16,-1,1278.86,415.153,45.55,109.505,0.93547,-1,-1,-1
16,-1,1680.73,422.748,92.82,145.566,0.907195,-1,-1,-1
16,-1,641.839,466.101,59.195,190.418,0.887872,-1,-1,-1
16,-1,698.398,467.699,52.368,123.077,0.879944,-1,-1,-1
16,-1,522.312,454.558,67.892,237.105,0.53241,-1,-1,-1
17,-1,1465.15,425.198,138.95,366.784,0.98881,-1,-1,-1
17,-1,1583.98,434.725,114.31,348.586,0.987235,-1,-1,-1
17,-1,414.846,458.152,176.811,262.28,0.983782,-1,-1,-1
17,-1,584.118,442.75,85.784,260.515,0.981617,-1,-1,-1
17,-1,1840.58,459.936,74.64,203.784,0.956675,-1,-1,-1
17,-1,1293.01,418.972,38.21,106.059,0.930151,-1,-1,-1
17,-1,696.588,463.397,53.355,127.296,0.897781,-1,-1,-1
17,-1,1256.82,446.654,63.29,92.917,0.894983,-1,-1,-1
17,-1,645.462,462.843,59.156,200.895,0.861999,-1,-1,-1
17,-1,1686.07,429.564,89.35,139.916,0.836484,-1,-1,-1
18,-1,1563.72,428.768,140.27,367.055,0.99338,-1,-1,-1
18,-1,1462.06,452.264,153.79,342.66,0.988264,-1,-1,-1
18,-1,587.174,447.205,83.465,261.629,0.983214,-1,-1,-1
18,-1,445.428,437.318,122.06,301.199,0.982102,-1,-1,-1
18,-1,1861.25,461.173,47.55,184.517,0.961314,-1,-1,-1
18,-1,1279.73,429.8,44.11,100.485,0.89194,-1,-1,-1
18,-1,654.918,469.984,57.772,175.868,0.824461,-1,-1,-1
18,-1,700.21,466.396,50.784,122.859,0.805702,-1,-1,-1
18,-1,1690.99,427.815,83.43,170.334,0.594534,-1,-1,-1
18,-1,401.395,470.216,110.303,183.55,0.523352,-1,-1,-1
19,-1,1449.23,444.586,195.59,352.37,0.994142,-1,-1,-1
19,-1,586.507,449.581,86.125,259.392,0.984248,-1,-1,-1
19,-1,446.598,450.692,122.892,275.417,0.98347,-1,-1,-1
19,-1,1581.48,443.423,153.41,355.058,0.975521,-1,-1,-1
19,-1,1860.3,459.75,47.42,182.265,0.956057,-1,-1,-1
19,-1,1294.05,430.516,36.19,91.871,0.912796,-1,-1,-1
19,-1,1268.23,436.966,36.25,83.764,0.89762,-1,-1,-1
19,-1,704.156,468.2,48.049,114.697,0.781635,-1,-1,-1
19,-1,644.239,464.951,61.911,201.832,0.771405,-1,-1,-1
20,-1,1471.52,424.431,194.56,383.243,0.99505,-1,-1,-1
20,-1,454.324,437.612,126.342,291.525,0.989372,-1,-1,-1
20,-1,585.646,448.593,89.818,255.764,0.983309,-1,-1,-1
20,-1,1591.51,441.612,159.1,364.276,0.977927,-1,-1,-1
20,-1,1861.05,448.352,48.44,193.402,0.948848,-1,-1,-1
20,-1,1275.81,422.357,41.05,96.006,0.870253,-1,-1,-1
20,-1,645.015,463.76,62.961,201.262,0.797068,-1,-1,-1
20,-1,703.682,466.815,47.618,115.423,0.796379,-1,-1,-1
21,-1,1460.94,435.26,180.94,358.217,0.994797,-1,-1,-1
21,-1,1599.13,423.793,134.74,383.606,0.98881,-1,-1,-1
21,-1,421.972,465.455,169.843,259.665,0.986358,-1,-1,-1
21,-1,585.189,445.713,89.887,262.449,0.986001,-1,-1,-1
21,-1,1849.81,447.514,64.88,189.572,0.941209,-1,-1,-1
21,-1,1291.52,437.982,39.24,94.71,0.891215,-1,-1,-1
21,-1,1260.4,426.097,53.05,108.041,0.879767,-1,-1,-1
21,-1,703.533,463.52,47.822,116.947,0.76271,-1,-1,-1
21,-1,643.524,462.673,60.918,208.058,0.725318,-1,-1,-1
22,-1,1482.58,449.391,234.92,350.617,0.995527,-1,-1,-1
22,-1,586.332,439.676,93.261,278.43,0.98647,-1,-1,-1
22,-1,427.297,468.674,161.78,249.351,0.985666,-1,-1,-1
22,-1,1291.25,429.141,40.25,110.005,0.912857,-1,-1,-1
22,-1,1848.5,446.535,57.96,223.137,0.906792,-1,-1,-1
22,-1,1268.71,436.148,41.99,99.072,0.900057,-1,-1,-1
22,-1,704.239,461.914,50.545,121.272,0.848208,-1,-1,-1
22,-1,1647.6,449.259,98.6,307.036,0.7995,-1,-1,-1
22,-1,640.335,458.832,61.642,213.239,0.653397,-1,-1,-1
23,-1,1476.8,421.572,192.21,383.681,0.996057,-1,-1,-1
23,-1,422.174,439.492,161.842,265.098,0.98741,-1,-1,-1
23,-1,597.338,450.468,94.332,263.737,0.984261,-1,-1,-1
23,-1,1631.58,439.784,113.41,355.131,0.980681,-1,-1,-1
23,-1,1846.17,445.219,67.88,208.573,0.948729,-1,-1,-1
23,-1,1402.66,429.943,51.4,109.79,0.879213,-1,-1,-1
23,-1,705.982,469.688,47.472,114.989,0.815596,-1,-1,-1
23,-1,1277.14,430.707,46.24,102.555,0.810264,-1,-1,-1
24,-1,1489.01,432.185,202.74,389.075,0.996383,-1,-1,-1
24,-1,597.033,452.824,95.051,265.027,0.985684,-1,-1,-1
24,-1,443.901,448.135,144.502,280.031,0.983645,-1,-1,-1
24,-1,1643.55,431.278,128.21,379.081,0.980567,-1,-1,-1
24,-1,1845.95,430.058,68.59,230.042,0.952452,-1,-1,-1
24,-1,702.419,455.81,53.966,139.714,0.833781,-1,-1,-1
24,-1,1262.8,435.955,38.82,78.045,0.805485,-1,-1,-1
25,-1,1499.75,414.677,187.51,410.131,0.995787,-1,-1,-1
25,-1,449.824,436.117,134.637,280.117,0.990599,-1,-1,-1
25,-1,1667.83,431.62,102.67,350.023,0.984866,-1,-1,-1
25,-1,590.385,425.692,77.504,296.283,0.981091,-1,-1,-1
25,-1,1846.89,430.431,67.33,232.677,0.929547,-1,-1,-1
25,-1,1261.55,439.868,41.19,79.987,0.815239,-1,-1,-1
25,-1,705.576,473.476,48.493,118.344,0.79764,-1,-1,-1
25,-1,655.663,449.141,65.23,250.768,0.661988,-1,-1,-1
26,-1,1528.33,411.654,159.77,383.77,0.994516,-1,-1,-1
26,-1,429.928,454.846,169.332,252.617,0.986416,-1,-1,-1
26,-1,588.529,438.783,78.107,282.067,0.985217,-1,-1,-1
26,-1,1675.11,418.784,92.16,373.775,0.982814,-1,-1,-1
26,-1,1849.96,440.737,63.89,217.133,0.915311,-1,-1,-1
26,-1,1261,442.944,39.56,81.944,0.835413,-1,-1,-1
26,-1,707.615,474.985,48.375,116.469,0.805628,-1,-1,-1
26,-1,1635.49,388.016,72.76,418.006,0.743492,-1,-1,-1
26,-1,1280.07,418.968,48.69,103.75,0.734655,-1,-1,-1
26,-1,657.156,464.237,70.738,245.109,0.573844,-1,-1,-1
27,-1,1541.55,435.505,162.11,377.088,0.992347,-1,-1,-1
27,-1,454.27,438.22,128.244,277.897,0.990444,-1,-1,-1
27,-1,591.091,432.957,78.485,299.088,0.984283,-1,-1,-1
27,-1,1663.39,429.108,111.38,369.943,0.973212,-1,-1,-1
27,-1,1849.96,431.915,64.26,232.477,0.911807,-1,-1,-1
27,-1,1262.9,442.627,38.98,75.313,0.759058,-1,-1,-1
27,-1,1414.69,434.842,47.27,120.381,0.748649,-1,-1,-1
27,-1,716.211,491.751,56.378,90.846,0.71098,-1,-1,-1
27,-1,1278.81,424.793,49.66,96.311,0.696695,-1,-1,-1
27,-1,653.694,462.388,67.572,239.399,0.567935,-1,-1,-1
28,-1,1565.93,425.238,158.87,390.183,0.991325,-1,-1,-1
28,-1,572.458,447.768,128.353,271.395,0.987512,-1,-1,-1
28,-1,468.618,443.385,115.326,289.767,0.983713,-1,-1,-1
28,-1,1699.69,419.557,101.54,363.786,0.97045,-1,-1,-1
28,-1,1289.35,428.683,41.56,106.091,0.905918,-1,-1,-1
28,-1,1265.11,439.634,40.43,81.708,0.898464,-1,-1,-1
28,-1,1842.39,448.111,70.77,218.001,0.876672,-1,-1,-1
28,-1,1429.27,430.251,43.83,122.834,0.866052,-1,-1,-1
28,-1,698.397,454.911,53.604,134.416,0.831394,-1,-1,-1
29,-1,1577.28,420.686,153.05,390.553,0.992593,-1,-1,-1
29,-1,583.429,451.139,120.007,259.434,0.986617,-1,-1,-1
29,-1,469.635,445.782,112.248,289.893,0.98571,-1,-1,-1
29,-1,1683.51,426.272,117.61,369.332,0.975081,-1,-1,-1
29,-1,1266.8,429.653,45.75,103.594,0.896651,-1,-1,-1
29,-1,1844.18,429.625,69.88,232.527,0.769212,-1,-1,-1
29,-1,713.081,475.407,46.738,112.127,0.740715,-1,-1,-1
29,-1,680.527,467.512,51.067,187.454,0.558268,-1,-1,-1
30,-1,1578.81,407.894,153.01,415.362,0.995335,-1,-1,-1
30,-1,470.216,445.288,116.06,294.545,0.985291,-1,-1,-1
30,-1,601.335,440.206,88.768,280.19,0.984181,-1,-1,-1
30,-1,1705.17,428.108,111.69,372.266,0.95553,-1,-1,-1
30,-1,1263.33,439.546,39.59,82.042,0.867971,-1,-1,-1
30,-1,703.643,475.937,50.214,122.831,0.827618,-1,-1,-1
30,-1,1855.67,450.626,59.68,212.022,0.74739,-1,-1,-1
30,-1,679.83,467.595,50.392,178.217,0.563985,-1,-1,-1
31,-1,1589.23,423.588,172.99,399.135,0.997042,-1,-1,-1
31,-1,468.549,445.447,119.056,292.352,0.98477,-1,-1,-1
31,-1,596.202,444.208,99.355,273.657,0.976871,-1,-1,-1
31,-1,1264.55,432.124,44.67,100.994,0.882594,-1,-1,-1
31,-1,702.061,495.313,44.239,105.003,0.735593,-1,-1,-1
31,-1,1706.67,402.988,142.46,399.923,0.710748,-1,-1,-1
31,-1,677.364,473.586,49.232,167.213,0.631548,-1,-1,-1
32,-1,1613.56,387.17,158.33,459.095,0.997696,-1,-1,-1
32,-1,468.864,448.44,118.883,293.393,0.98246,-1,-1,-1
32,-1,597.831,440.301,96.585,283.434,0.98127,-1,-1,-1
32,-1,1716.14,392.056,137.99,416.949,0.978153,-1,-1,-1
32,-1,1255.89,430.076,54.67,105.912,0.868332,-1,-1,-1
32,-1,702.141,472.022,48.744,128.318,0.745081,-1,-1,-1
32,-1,1850.27,436.626,62.85,253.752,0.582316,-1,-1,-1
32,-1,676.687,470.39,46.602,176.147,0.528201,-1,-1,-1
33,-1,1606.61,399.342,172.9,426.693,0.997056,-1,-1,-1
33,-1,472.304,451.977,121.206,286.05,0.986363,-1,-1,-1
33,-1,615.535,446.269,104.735,257.977,0.986246,-1,-1,-1
33,-1,1701.55,394.051,155.93,404.315,0.94091,-1,-1,-1
33,-1,1264.97,430.904,47.74,97.406,0.922547,-1,-1,-1
33,-1,579.016,447.976,72.07,275.721,0.720235,-1,-1,-1
34,-1,1615.93,413.07,177.59,426.696,0.997252,-1,-1,-1
34,-1,475.794,458.597,119.481,268.195,0.992617,-1,-1,-1
34,-1,618.561,440.492,98.037,266.535,0.988881,-1,-1,-1
34,-1,1264.56,430.864,47.03,100.933,0.930052,-1,-1,-1
34,-1,582.36,424.306,64.648,295.862,0.648125,-1,-1,-1
34,-1,1743.37,419.481,124.68,344.329,0.618112,-1,-1,-1
34,-1,1297.51,420.316,43.61,98.06,0.530808,-1,-1,-1
34,-1,673.838,474.436,51.563,178.241,0.509475,-1,-1,-1
35,-1,1592.55,414.218,241.83,397.348,0.997001,-1,-1,-1
35,-1,473.796,449.203,122.804,281.49,0.992753,-1,-1,-1
35,-1,617.912,445.488,91.138,261.523,0.988704,-1,-1,-1
35,-1,1265.1,435.15,43.71,100.18,0.895985,-1,-1,-1
35,-1,1758.1,439.935,108.84,305.644,0.691628,-1,-1,-1
35,-1,580.58,429.51,65.937,303.331,0.629972,-1,-1,-1
36,-1,1634.24,420.545,193.53,414.795,0.996366,-1,-1,-1
36,-1,473.665,464.276,121.633,272.735,0.992791,-1,-1,-1
36,-1,621.537,442.308,88.429,267.374,0.98707,-1,-1,-1
36,-1,1272.09,426.127,44.09,110.917,0.926675,-1,-1,-1
36,-1,1751.11,434.872,136.73,385.879,0.925834,-1,-1,-1
36,-1,1254.99,448.683,36.66,73.837,0.906428,-1,-1,-1
36,-1,1474.38,451.445,44.72,87.269,0.82168,-1,-1,-1
36,-1,673.356,471.227,54.21,207.124,0.757559,-1,-1,-1
36,-1,1786.03,433.083,82.95,182.445,0.656833,-1,-1,-1
37,-1,1633.88,415.938,261.88,421.91,0.996941,-1,-1,-1
37,-1,481.381,445.343,116.354,274.12,0.990574,-1,-1,-1
37,-1,615.232,437.77,100.989,270.206,0.986658,-1,-1,-1
37,-1,1276.34,425.101,46.01,108.294,0.937353,-1,-1,-1
37,-1,1254.78,447.357,37.93,68.914,0.871349,-1,-1,-1
37,-1,675.578,466.417,57.439,202.165,0.740573,-1,-1,-1
37,-1,1463.87,454.274,53.47,85.931,0.703286,-1,-1,-1
37,-1,581.851,441.925,64.575,276.435,0.552464,-1,-1,-1
37,-1,703.675,494.576,38.929,114.69,0.54177,-1,-1,-1
37,-1,1797.33,439.373,90.81,263.529,0.530582,-1,-1,-1
38,-1,1619.79,429.545,297.28,413.507,0.997011,-1,-1,-1
38,-1,480.427,443.77,122.541,279.558,0.989977,-1,-1,-1
38,-1,610.511,444.853,106.344,268.933,0.987965,-1,-1,-1
38,-1,1269.97,430.516,45.19,103.808,0.950764,-1,-1,-1
38,-1,1470.71,434.938,49.76,121.65,0.783147,-1,-1,-1
38,-1,673.744,470.809,60.048,201.922,0.730572,-1,-1,-1
38,-1,1295.52,417.411,45.61,105.129,0.696366,-1,-1,-1
38,-1,1815.36,425.982,82.04,339.566,0.568194,-1,-1,-1
39,-1,1628.81,397.396,232.9,454.841,0.997162,-1,-1,-1
39,-1,493.034,447.079,97.802,294.836,0.98579,-1,-1,-1
39,-1,602.926,433.872,100.759,287.692,0.984012,-1,-1,-1
39,-1,1821.1,408.238,94.87,446.975,0.935696,-1,-1,-1
39,-1,1271.44,432.025,44.77,102.634,0.932456,-1,-1,-1
39,-1,1481.76,446.225,41.26,104.199,0.814766,-1,-1,-1
39,-1,1294.98,414.122,45.58,105.887,0.641031,-1,-1,-1
40,-1,1656.64,401.363,215.12,464.11,0.99623,-1,-1,-1
40,-1,465.886,467.047,131.885,278.89,0.991471,-1,-1,-1
40,-1,610.852,441.9,107.976,270.926,0.990053,-1,-1,-1
40,-1,1273.03,427.586,44.78,105.919,0.931678,-1,-1,-1
40,-1,1485.67,427.781,50.52,117.097,0.872338,-1,-1,-1
40,-1,1782.26,467.958,132.76,350.626,0.845461,-1,-1,-1
41,-1,1630.64,418.151,288.36,431.444,0.995873,-1,-1,-1
41,-1,459.989,458.389,140.129,292.685,0.992809,-1,-1,-1
41,-1,599.078,460.09,132.381,262.186,0.979813,-1,-1,-1
41,-1,1276.64,417.19,47.62,114.201,0.947192,-1,-1,-1
41,-1,1849.86,444.097,64.87,185.198,0.696443,-1,-1,-1
41,-1,1473.84,426.51,60.85,127.429,0.693403,-1,-1,-1
42,-1,1672.68,406.113,224.54,464.83,0.994115,-1,-1,-1
42,-1,603.262,423.567,102.551,302.509,0.990676,-1,-1,-1
42,-1,479.244,440.654,119.299,292.263,0.988415,-1,-1,-1
42,-1,1270.4,437.885,38.17,81.985,0.929969,-1,-1,-1
42,-1,1473.14,413.973,59.5,148.582,0.899021,-1,-1,-1
42,-1,1858.52,438.212,56.95,158.564,0.722269,-1,-1,-1
42,-1,664.057,458.919,59.761,222.712,0.691567,-1,-1,-1
43,-1,1654.71,417.799,264.29,450.622,0.995415,-1,-1,-1
43,-1,617.821,450.845,107.538,267.968,0.99138,-1,-1,-1
43,-1,463.355,456.439,154.37,285.528,0.983487,-1,-1,-1
43,-1,1273.84,423.489,43.43,106.59,0.916588,-1,-1,-1
43,-1,1862.45,462.143,52.22,122.907,0.740592,-1,-1,-1
43,-1,1666.53,403.852,67.74,187.52,0.548937,-1,-1,-1
44,-1,1688.14,412.303,206.13,451.16,0.993837,-1,-1,-1
44,-1,617.326,447.602,104.837,272.731,0.99073,-1,-1,-1
44,-1,458.775,460.981,138.914,297.302,0.988125,-1,-1,-1
44,-1,1273.13,425.887,44.07,102.66,0.912138,-1,-1,-1
44,-1,1672.8,431.835,63.08,162.564,0.79273,-1,-1,-1
45,-1,1728.03,383.762,170.31,489.621,0.997755,-1,-1,-1
45,-1,621.695,453.264,101.263,264.95,0.988975,-1,-1,-1
45,-1,464.169,458.937,152.841,287.267,0.981927,-1,-1,-1
45,-1,1672.74,421.763,68.88,169.916,0.8889,-1,-1,-1
45,-1,1263.11,434.624,41.48,90.616,0.876633,-1,-1,-1
45,-1,1496.32,420.992,46.86,123.092,0.699216,-1,-1,-1
46,-1,1748.48,407.279,167.75,442.754,0.996444,-1,-1,-1
46,-1,606.792,435.397,116.785,284.528,0.987683,-1,-1,-1
46,-1,463.295,457.315,156.824,285.867,0.987586,-1,-1,-1
46,-1,1676.01,419.101,69.55,170.115,0.953107,-1,-1,-1
46,-1,1272.55,423.865,44.64,109.675,0.920221,-1,-1,-1
47,-1,1777.99,376.994,130.76,492.956,0.996631,-1,-1,-1
47,-1,623.925,431.617,92.798,271.344,0.989627,-1,-1,-1
47,-1,438.125,455.201,170.305,268.731,0.989354,-1,-1,-1
47,-1,1679.8,430.531,68.53,171.666,0.925025,-1,-1,-1
47,-1,1256.69,433.131,64.42,104.704,0.897097,-1,-1,-1
48,-1,1784.26,406.108,114.92,459.912,0.997141,-1,-1,-1
48,-1,622.248,454.527,106.207,258.189,0.992384,-1,-1,-1
48,-1,461.836,456.8,158.82,290.833,0.988532,-1,-1,-1
48,-1,1267.5,429.499,38.01,83.6,0.950541,-1,-1,-1
48,-1,1685.32,420.266,97.05,195.151,0.743998,-1,-1,-1
49,-1,1787.48,389.996,131.52,470.946,0.998226,-1,-1,-1
49,-1,622.503,442.956,105.721,269.635,0.988541,-1,-1,-1
49,-1,468.549,438.446,126.948,313.847,0.984517,-1,-1,-1
49,-1,1270.92,425.516,46.07,109.972,0.950687,-1,-1,-1
49,-1,1672.87,415.508,109.23,196.731,0.917042,-1,-1,-1
50,-1,1784.54,410.083,134.46,471.967,0.994567,-1,-1,-1
50,-1,623.099,454.226,107.156,259.772,0.992488,-1,-1,-1
50,-1,449.861,437.025,146.573,311.504,0.992172,-1,-1,-1
50,-1,1271.49,430.709,46.19,105.209,0.954587,-1,-1,-1
50,-1,1676.69,423.8,82.44,158.318,0.90184,-1,-1,-1
51,-1,1810.94,416.168,103.33,468.994,0.99579,-1,-1,-1
51,-1,458.029,455.281,159.847,276.292,0.992519,-1,-1,-1
51,-1,623.187,446.831,99.129,264.664,0.990711,-1,-1,-1
51,-1,1284.44,428.141,45.95,103.086,0.958051,-1,-1,-1
51,-1,1679.02,439.642,78.5,148.52,0.954902,-1,-1,-1
51,-1,1260.17,428.478,44.69,90.488,0.869748,-1,-1,-1
52,-1,1803.15,425.373,115.85,467.017,0.99399,-1,-1,-1
52,-1,459.595,454.651,120.297,283.674,0.991836,-1,-1,-1
52,-1,612.33,438.714,112.131,286.41,0.988653,-1,-1,-1
52,-1,1270.72,429.723,44.71,106.872,0.948382,-1,-1,-1
52,-1,1675.09,440.783,72.54,137.284,0.948082,-1,-1,-1
52,-1,678.48,472.858,66.413,207.903,0.73316,-1,-1,-1
53,-1,475.556,442.693,125.968,299.826,0.992134,-1,-1,-1
53,-1,1823.1,407.757,95.9,502.895,0.9903,-1,-1,-1
53,-1,611.565,441.924,112.224,281.152,0.9868,-1,-1,-1
53,-1,1285.48,424.699,45.09,105.059,0.952667,-1,-1,-1
53,-1,1673.44,442.293,71.92,145.826,0.929301,-1,-1,-1
53,-1,1260.91,432.902,45.46,90.257,0.852661,-1,-1,-1
53,-1,681.601,495.332,59.213,179.338,0.54004,-1,-1,-1
54,-1,471.042,440.968,133.323,319.708,0.991402,-1,-1,-1
54,-1,615.3,430.726,106.387,292.984,0.987912,-1,-1,-1
54,-1,1821.3,455.107,97.7,431.648,0.982759,-1,-1,-1
54,-1,1265.13,422.554,42.97,109.929,0.949595,-1,-1,-1
54,-1,1673.52,444.057,73.37,146.307,0.920054,-1,-1,-1
54,-1,1290.5,408.132,41.56,105.624,0.904342,-1,-1,-1
54,-1,701.891,464.951,51.906,183.246,0.567127,-1,-1,-1
54,-1,1523.87,433.323,45.55,116.486,0.5117,-1,-1,-1
55,-1,1825.96,429.426,93.04,463.393,0.990089,-1,-1,-1
55,-1,471.747,450.881,128.189,311.115,0.988401,-1,-1,-1
55,-1,627.341,438.97,86.4,260.834,0.987012,-1,-1,-1
55,-1,1270.38,432.544,44.79,108.999,0.951241,-1,-1,-1
55,-1,1673.4,439.406,73.77,147.913,0.933493,-1,-1,-1
55,-1,1524.26,428.237,37.89,116.683,0.841983,-1,-1,-1
56,-1,457.773,457.869,166.205,281.217,0.987359,-1,-1,-1
56,-1,619.458,442.588,99.729,278.421,0.984508,-1,-1,-1
56,-1,1264.37,422.373,43.61,113.052,0.950619,-1,-1,-1
56,-1,1676.61,435.688,69.11,154.883,0.923703,-1,-1,-1
56,-1,1832.5,458.233,86.5,430.262,0.917995,-1,-1,-1
56,-1,1287.47,409.07,38.95,107.836,0.905773,-1,-1,-1
56,-1,679.117,478.081,63.565,203.128,0.512435,-1,-1,-1
57,-1,454.787,439.273,151.112,310.927,0.991991,-1,-1,-1
57,-1,621.493,445.36,98.851,275.341,0.988218,-1,-1,-1
57,-1,1676.6,439.493,66.86,154.069,0.944123,-1,-1,-1
57,-1,1271.14,433.42,42.87,107.333,0.943771,-1,-1,-1
57,-1,1292.48,406.96,39.92,106.136,0.895514,-1,-1,-1
57,-1,1832.33,480.703,82.99,395.499,0.514869,-1,-1,-1
58,-1,622.072,440.236,96.156,290.975,0.98751,-1,-1,-1
58,-1,457.319,468.375,162.061,272.938,0.983964,-1,-1,-1
58,-1,1267.57,423.218,39.84,111.732,0.956843,-1,-1,-1
58,-1,1675.71,431.213,74.22,163.537,0.868709,-1,-1,-1
58,-1,1847.87,422.062,64.22,243.623,0.8041,-1,-1,-1
58,-1,1291.6,414.275,44.43,106.198,0.685531,-1,-1,-1
58,-1,1534.09,441.778,34.25,98.569,0.546855,-1,-1,-1
59,-1,625.556,453.179,96.137,267.182,0.988762,-1,-1,-1
59,-1,457.52,470.782,161.319,255.419,0.98752,-1,-1,-1
59,-1,1267.34,429.784,38.66,113.582,0.960271,-1,-1,-1
59,-1,1671.56,425.986,76.79,163.009,0.955306,-1,-1,-1
59,-1,1287.25,414.869,46.8,111.434,0.653588,-1,-1,-1
59,-1,1864.46,434.558,49.02,217.511,0.579614,-1,-1,-1
60,-1,627.682,451.439,91.184,281.738,0.988562,-1,-1,-1
60,-1,429.638,448.838,170.909,284.997,0.981147,-1,-1,-1
60,-1,1674.53,426.793,74.75,166.794,0.957154,-1,-1,-1
60,-1,1275.16,442.041,43.15,93.249,0.955934,-1,-1,-1
60,-1,1843.66,436.387,69.27,220.349,0.69865,-1,-1,-1
61,-1,626.411,450.844,98.995,279.828,0.985646,-1,-1,-1
61,-1,457.549,466.024,168.568,265.705,0.983436,-1,-1,-1
61,-1,1274.08,443.076,41.26,91.06,0.954428,-1,-1,-1
61,-1,1847.39,435.983,64.76,229.346,0.936287,-1,-1,-1
61,-1,1675.21,439.692,80.48,154.277,0.920312,-1,-1,-1
61,-1,682.737,479.113,61.539,201.22,0.522031,-1,-1,-1
62,-1,461.688,445.682,166.108,291.06,0.981387,-1,-1,-1
62,-1,615.33,449.345,125.62,269.374,0.97726,-1,-1,-1
62,-1,1671.34,414.367,75.98,173.003,0.954328,-1,-1,-1
62,-1,1847.19,443.015,67.65,224.088,0.949575,-1,-1,-1
62,-1,1273.11,436.272,41.16,107.81,0.936285,-1,-1,-1
63,-1,462.988,446.599,158.956,301.025,0.983782,-1,-1,-1
63,-1,616.898,426.705,103.354,315.573,0.976957,-1,-1,-1
63,-1,1671.81,414.712,74.21,174.538,0.963273,-1,-1,-1
63,-1,1845.85,432.344,69.16,223.841,0.946774,-1,-1,-1
63,-1,1264.2,417.417,55.42,131.895,0.934978,-1,-1,-1
63,-1,676.05,466.353,68.304,224.752,0.89483,-1,-1,-1
63,-1,425.046,470.159,112.051,183.189,0.799514,-1,-1,-1
64,-1,463.709,449.991,162.958,298.718,0.984625,-1,-1,-1
64,-1,617.864,443.039,102.479,300.143,0.979443,-1,-1,-1
64,-1,1266.38,420.123,53.34,112.926,0.955107,-1,-1,-1
64,-1,1843.61,429.666,71.39,233.165,0.954485,-1,-1,-1
64,-1,1676.97,434.076,70.35,163.629,0.949239,-1,-1,-1
64,-1,689.54,459.907,59.113,222.391,0.728426,-1,-1,-1
65,-1,459.71,474.02,181.313,281.597,0.985875,-1,-1,-1
65,-1,615.845,440.218,101.601,300.442,0.978119,-1,-1,-1
65,-1,1844.42,455.92,68.03,198.484,0.951238,-1,-1,-1
65,-1,1265.07,421.85,52.83,114.41,0.950172,-1,-1,-1
65,-1,1678.67,427.505,72.15,169.028,0.929064,-1,-1,-1
65,-1,694.253,472.477,55.937,210.599,0.831073,-1,-1,-1
65,-1,433.939,482.403,112.879,178.232,0.627021,-1,-1,-1
66,-1,466.786,456.412,173.412,300.783,0.985714,-1,-1,-1
66,-1,613.517,435.644,95.003,310.314,0.975874,-1,-1,-1
66,-1,1264.77,420.101,53.39,115.124,0.957368,-1,-1,-1
66,-1,1844.44,449.384,70.04,203.914,0.954303,-1,-1,-1
66,-1,1678.17,433.858,73.03,163.847,0.929827,-1,-1,-1
66,-1,713.566,460.089,64.698,192.437,0.922663,-1,-1,-1
66,-1,669.43,463.097,72.522,232.645,0.879766,-1,-1,-1
67,-1,473.735,444.096,154.94,312.661,0.992164,-1,-1,-1
67,-1,616.294,435.346,106.883,317.754,0.979719,-1,-1,-1
67,-1,1843.52,440.923,70.65,218.425,0.957479,-1,-1,-1
67,-1,1264.96,421.518,52.78,113.337,0.957425,-1,-1,-1
67,-1,1676.12,428.005,74.67,167.452,0.951406,-1,-1,-1
67,-1,699.96,468.253,58.26,227.779,0.731425,-1,-1,-1
68,-1,451.478,458.63,199.794,277.18,0.984277,-1,-1,-1
68,-1,613.315,433.417,104.121,318.471,0.979589,-1,-1,-1
68,-1,1679.3,409.646,91.34,177.059,0.95482,-1,-1,-1
68,-1,1843.62,431.985,71.11,231.041,0.952656,-1,-1,-1
68,-1,1273.24,440.591,39.8,102.49,0.942768,-1,-1,-1
68,-1,706.384,473.65,56.034,170.109,0.940298,-1,-1,-1
69,-1,610.549,432.873,103.794,331.573,0.981769,-1,-1,-1
69,-1,471.277,453.011,176.158,306.142,0.981268,-1,-1,-1
69,-1,1842.92,440.553,70.4,220.377,0.955091,-1,-1,-1
69,-1,1670.92,417.992,72.99,169.691,0.942208,-1,-1,-1
69,-1,1273.92,442.332,39.35,101.586,0.939798,-1,-1,-1
69,-1,719.46,449.888,57.45,198.882,0.912762,-1,-1,-1
70,-1,477.317,449.188,139.195,330.249,0.981158,-1,-1,-1
70,-1,611.724,430.872,97.365,331.12,0.979175,-1,-1,-1
70,-1,1842.73,438.141,70.61,225.466,0.954538,-1,-1,-1
70,-1,1678.9,410.699,94.6,177.282,0.942771,-1,-1,-1
70,-1,1264.54,420.445,52.98,124.285,0.935682,-1,-1,-1
70,-1,712.784,452.211,58.273,229.669,0.930581,-1,-1,-1
70,-1,666.023,463.759,71.836,249.211,0.730426,-1,-1,-1
71,-1,479.306,447.869,138.652,322.158,0.982189,-1,-1,-1
71,-1,608.7,439.463,108.621,301.948,0.976058,-1,-1,-1
71,-1,1842.7,431.399,71.29,232.409,0.955876,-1,-1,-1
71,-1,1674.38,413.051,77.82,181.217,0.938216,-1,-1,-1
71,-1,1274.88,442.959,40.3,102.334,0.934764,-1,-1,-1
71,-1,715.622,449.653,60.702,234.65,0.929275,-1,-1,-1
72,-1,485.917,465.508,130.008,299.922,0.982536,-1,-1,-1
72,-1,612.997,436.823,97.841,308.302,0.973009,-1,-1,-1
72,-1,708.718,468.375,74.378,177.255,0.964475,-1,-1,-1
72,-1,1670.86,414.105,78.23,177.436,0.962467,-1,-1,-1
72,-1,1842.98,427.311,72,240.668,0.946125,-1,-1,-1
72,-1,1264.52,419.486,54.34,128.872,0.931604,-1,-1,-1
72,-1,673.151,466.059,67.965,227.628,0.743844,-1,-1,-1
72,-1,463.156,477.38,90.121,191.149,0.558058,-1,-1,-1
73,-1,712.178,448.003,69.604,236.955,0.974159,-1,-1,-1
73,-1,482.912,438.298,133.892,329.338,0.973776,-1,-1,-1
73,-1,629.837,443.23,89.543,294.457,0.973618,-1,-1,-1
73,-1,1671.03,421.052,80.84,179.144,0.95703,-1,-1,-1
73,-1,1841.61,432.162,71.89,230.397,0.950138,-1,-1,-1
73,-1,1265.66,421.123,53.48,127.132,0.93361,-1,-1,-1
74,-1,486.26,458.292,137.107,309.162,0.983994,-1,-1,-1
74,-1,710.029,446.416,77.23,250.211,0.976806,-1,-1,-1
74,-1,612.878,445.727,91.362,293.226,0.960905,-1,-1,-1
74,-1,1843.51,450.957,64.87,203.331,0.941623,-1,-1,-1
74,-1,1672.35,423.723,77.07,174.474,0.938225,-1,-1,-1
74,-1,1263.63,430.602,42.32,108.823,0.931422,-1,-1,-1
74,-1,1287.54,412.25,35.05,111.424,0.883063,-1,-1,-1
75,-1,502.212,452.276,142.148,311.751,0.989212,-1,-1,-1
75,-1,712.664,475.284,58.874,206.691,0.964829,-1,-1,-1
75,-1,611.545,448.026,94.204,296.341,0.962599,-1,-1,-1
75,-1,1265.19,427.787,51.54,109.67,0.949949,-1,-1,-1
75,-1,1675.97,414.618,71.71,178.908,0.922807,-1,-1,-1
75,-1,1846.44,446.59,61.64,211.462,0.922698,-1,-1,-1
76,-1,504.758,458.582,133.861,294.18,0.989024,-1,-1,-1
76,-1,710.227,475.482,85.767,186.244,0.979901,-1,-1,-1
76,-1,610.895,440.012,90.225,314.767,0.972105,-1,-1,-1
76,-1,1265.07,425.995,52.02,110.161,0.948133,-1,-1,-1
76,-1,1675.01,416.693,70.96,179.523,0.940537,-1,-1,-1
76,-1,1846.94,447.297,61.43,211.306,0.925786,-1,-1,-1
76,-1,1070.95,448.881,47.92,123.567,0.580024,-1,-1,-1
77,-1,505.919,464.862,131.37,285.851,0.987499,-1,-1,-1
77,-1,712.334,476.835,85.647,187.67,0.982678,-1,-1,-1
77,-1,611.412,432.715,84.637,323.156,0.968018,-1,-1,-1
77,-1,1264.14,427.615,52.01,109.676,0.949575,-1,-1,-1
77,-1,1673.09,419.775,72.85,178.402,0.940538,-1,-1,-1
77,-1,1846.58,448.451,61.68,210.709,0.929196,-1,-1,-1
77,-1,1072.26,448.806,44.58,119.364,0.506238,-1,-1,-1
78,-1,711.266,462.723,83.146,227.263,0.985869,-1,-1,-1
78,-1,510.682,451.292,166.024,311.105,0.961789,-1,-1,-1
78,-1,1667.09,435.559,91.08,163.149,0.939563,-1,-1,-1
78,-1,1272.6,441.293,38.63,99.93,0.923298,-1,-1,-1
78,-1,635.325,441.911,78.507,291.808,0.917129,-1,-1,-1
78,-1,1847.94,447.319,62.57,208.726,0.910506,-1,-1,-1
78,-1,1294.69,413.707,37.5,108.682,0.820748,-1,-1,-1
78,-1,488.247,467.998,90.054,246.772,0.753325,-1,-1,-1
79,-1,701.869,446.643,87.631,249.181,0.987156,-1,-1,-1
79,-1,615.473,445.195,84.475,303.75,0.951668,-1,-1,-1
79,-1,515.249,459.188,137.911,297.521,0.950814,-1,-1,-1
79,-1,1669.33,427.98,78.93,171.324,0.950733,-1,-1,-1
79,-1,1278.13,422.478,51.41,117.517,0.931239,-1,-1,-1
79,-1,1846.5,439.187,64.58,222.864,0.905763,-1,-1,-1
79,-1,1261.43,436.498,32.22,88.545,0.505171,-1,-1,-1
80,-1,699.859,453.053,87.803,246.702,0.98873,-1,-1,-1
80,-1,1664.67,423.874,114.68,157.496,0.961681,-1,-1,-1
80,-1,516.952,454.487,126.073,316.946,0.95168,-1,-1,-1
80,-1,616.457,448.842,81.287,291.071,0.944823,-1,-1,-1
80,-1,1266.51,417.227,37.99,105.449,0.936354,-1,-1,-1
80,-1,1846.49,450.261,63.55,210.79,0.897196,-1,-1,-1
80,-1,1291.08,414.249,37.78,109.158,0.877149,-1,-1,-1
80,-1,483.174,462.89,84.638,215.75,0.705519,-1,-1,-1
81,-1,710.372,486.396,80.876,203.637,0.989033,-1,-1,-1
81,-1,506.726,470.08,124.953,281.389,0.973246,-1,-1,-1
81,-1,1669.74,425.632,80.64,171.68,0.969223,-1,-1,-1
81,-1,589.293,452.938,126.01,297.242,0.935232,-1,-1,-1
81,-1,1271.49,441.527,40.39,100.193,0.933441,-1,-1,-1
81,-1,1848.94,453.269,61.54,204.718,0.904001,-1,-1,-1
81,-1,1291.35,415.757,36.74,108.714,0.857158,-1,-1,-1
81,-1,636.347,526.585,64.695,162.171,0.534431,-1,-1,-1
82,-1,711.03,490.018,80.233,198.3,0.990288,-1,-1,-1
82,-1,507.351,456.972,124.212,306.251,0.979415,-1,-1,-1
82,-1,1273.39,435.945,31.18,89.547,0.931156,-1,-1,-1
82,-1,586.633,446.47,93.712,322.769,0.920377,-1,-1,-1
82,-1,1671.92,416.718,77,167.86,0.915837,-1,-1,-1
82,-1,1847.75,450.291,62.45,207.195,0.913561,-1,-1,-1
82,-1,1291.96,412.025,37.7,106.052,0.869354,-1,-1,-1
82,-1,659.193,454.517,56.276,253.349,0.866363,-1,-1,-1
82,-1,474.028,476.454,69.469,195.378,0.583518,-1,-1,-1
83,-1,706.923,451.383,87.847,238.005,0.99022,-1,-1,-1
83,-1,509.868,459.955,119.757,300.898,0.975299,-1,-1,-1
83,-1,1275.26,437.43,31.9,89.595,0.939263,-1,-1,-1
83,-1,580.238,444.247,99.684,327.446,0.93668,-1,-1,-1
83,-1,1682.09,425.567,91.94,174.118,0.933589,-1,-1,-1
83,-1,1846.46,443.473,65.95,222.393,0.919973,-1,-1,-1
83,-1,660.811,458.902,52.809,248.235,0.843968,-1,-1,-1
83,-1,1291.67,419.058,47.02,109.568,0.669676,-1,-1,-1
83,-1,485.246,454.388,69.488,185.721,0.593927,-1,-1,-1
84,-1,716.469,475.239,73.03,204.841,0.988775,-1,-1,-1
84,-1,536.036,465.518,126.176,307.026,0.961326,-1,-1,-1
84,-1,1282.79,438.573,41.14,99.763,0.938638,-1,-1,-1
84,-1,1844.8,456.374,65.63,209.209,0.917851,-1,-1,-1
84,-1,1665.91,414.344,106.55,189.846,0.88776,-1,-1,-1
84,-1,627.485,464.424,94.99,268.18,0.859557,-1,-1,-1
84,-1,684.996,489.526,57.626,205.634,0.776052,-1,-1,-1
84,-1,471.831,475.472,70.555,174.98,0.645181,-1,-1,-1
84,-1,494.75,477.208,92.836,265.263,0.584343,-1,-1,-1
85,-1,717.895,476.622,80.377,209.715,0.986686,-1,-1,-1
85,-1,517.688,458.884,172.582,285.859,0.973237,-1,-1,-1
85,-1,1670.59,423.23,79.73,173.254,0.958176,-1,-1,-1
85,-1,1264.75,421.907,56.02,113.596,0.941805,-1,-1,-1
85,-1,653.5,457.963,60.148,273.972,0.90671,-1,-1,-1
85,-1,1846.72,423.181,67.07,239.793,0.873532,-1,-1,-1
85,-1,486.477,460.102,78.685,240.265,0.706985,-1,-1,-1
86,-1,722.084,471.557,79.542,215.604,0.984039,-1,-1,-1
86,-1,514.181,457.147,179.987,286.012,0.974079,-1,-1,-1
86,-1,1264.98,419.594,55.94,129.159,0.929949,-1,-1,-1
86,-1,1846.99,464.513,62.88,200.408,0.921103,-1,-1,-1
86,-1,648.732,453.772,66.084,288.294,0.905366,-1,-1,-1
86,-1,1665.16,414.605,94.36,182.925,0.892568,-1,-1,-1
86,-1,465.936,461.191,64.254,120.393,0.722449,-1,-1,-1
87,-1,729.832,459.989,80.329,216.072,0.98446,-1,-1,-1
87,-1,534.197,451.749,179.929,299.718,0.972841,-1,-1,-1
87,-1,1834.37,460.983,69.9,183.726,0.939998,-1,-1,-1
87,-1,1281.56,430.942,44.04,105.908,0.938064,-1,-1,-1
87,-1,1689.66,418.296,97.78,172.622,0.923597,-1,-1,-1
87,-1,495.923,458.351,98.009,271.365,0.900748,-1,-1,-1
87,-1,641.144,471.948,62.949,228.966,0.834196,-1,-1,-1
87,-1,695.386,456.184,65.126,250.747,0.644621,-1,-1,-1
87,-1,470.84,476.202,61.333,114.011,0.637233,-1,-1,-1
88,-1,726.883,462.529,88.253,235.171,0.983159,-1,-1,-1
88,-1,537.123,453.831,176.414,299.272,0.972352,-1,-1,-1
88,-1,1844.84,455.23,64.78,205.396,0.953303,-1,-1,-1
88,-1,1284.83,428.443,42.87,102.288,0.948232,-1,-1,-1
88,-1,1661.55,413.584,118.83,168.475,0.915969,-1,-1,-1
88,-1,494.722,459.713,98.281,278.325,0.886046,-1,-1,-1
88,-1,668.134,466.586,70.168,241.651,0.604556,-1,-1,-1
88,-1,460.983,467.455,71.994,157.595,0.544808,-1,-1,-1
89,-1,734.672,462.2,82.43,223.789,0.988028,-1,-1,-1
89,-1,510.736,459.978,180.655,290.135,0.970966,-1,-1,-1
89,-1,1282.99,430.766,43.7,102.305,0.949146,-1,-1,-1
89,-1,1847.61,456.717,62.58,198.817,0.940031,-1,-1,-1
89,-1,639.392,447.954,76.109,301.73,0.926307,-1,-1,-1
89,-1,490.79,481.303,89.455,209.922,0.851476,-1,-1,-1
89,-1,1673.01,420.813,80.69,167.161,0.781483,-1,-1,-1
89,-1,673.362,467.849,104.73,249.779,0.71954,-1,-1,-1
90,-1,725.235,448.924,88.937,242.036,0.986753,-1,-1,-1
90,-1,539.135,460.794,169.354,298.538,0.964124,-1,-1,-1
90,-1,1283.22,432.638,44.35,100.409,0.946068,-1,-1,-1
90,-1,1849.06,453.708,60.46,201.299,0.930012,-1,-1,-1
90,-1,496.967,455.7,93.243,265.995,0.917526,-1,-1,-1
90,-1,1670.16,422.435,82.95,172.844,0.913342,-1,-1,-1
90,-1,662.232,455.218,91.297,260.499,0.793226,-1,-1,-1
91,-1,741.493,463.187,71.373,213.601,0.987996,-1,-1,-1
91,-1,502.231,454.228,117.413,313.119,0.965188,-1,-1,-1
91,-1,571.039,455.918,162.767,299.881,0.953565,-1,-1,-1
91,-1,1281.77,423.279,43.86,107.045,0.950632,-1,-1,-1
91,-1,1846.86,445.778,65.01,218.715,0.909881,-1,-1,-1
91,-1,1674.73,423.195,79.31,170.405,0.825396,-1,-1,-1
91,-1,691.04,457.368,59.532,244.633,0.75244,-1,-1,-1
92,-1,731.317,446.223,85.115,243.725,0.986038,-1,-1,-1
92,-1,512.344,460.857,175.242,315.039,0.960934,-1,-1,-1
92,-1,1283.12,426.089,45.02,105.13,0.945791,-1,-1,-1
92,-1,1846.13,454.687,65.7,202.284,0.935019,-1,-1,-1
92,-1,631.322,457.682,106.335,294.22,0.909662,-1,-1,-1
92,-1,1663.5,422.409,95.01,173.8,0.840856,-1,-1,-1
92,-1,491.406,490.662,71.49,196.066,0.57463,-1,-1,-1
93,-1,734.719,442.717,86.65,249.069,0.988432,-1,-1,-1
93,-1,512.857,465.993,109.987,297.611,0.963514,-1,-1,-1
93,-1,1284.81,419.735,45.03,107.118,0.948984,-1,-1,-1
93,-1,585.646,448.039,126.838,299.552,0.931141,-1,-1,-1
93,-1,1861.4,449.387,47.66,192.282,0.928887,-1,-1,-1
93,-1,665.235,471.769,80.278,263.795,0.891694,-1,-1,-1
93,-1,1690.79,416.584,87.89,187.981,0.786551,-1,-1,-1
93,-1,488.926,486.77,73.9,201.978,0.756092,-1,-1,-1
94,-1,742.811,464.804,75.811,223.717,0.991063,-1,-1,-1
94,-1,539.522,456.746,155.203,309.664,0.966158,-1,-1,-1
94,-1,494.694,459.986,102.976,299.522,0.953529,-1,-1,-1
94,-1,1284.49,423.841,44.38,105.342,0.949255,-1,-1,-1
94,-1,642.84,450.407,76.265,281.046,0.939511,-1,-1,-1
94,-1,1861.21,447.039,46.99,196.749,0.930094,-1,-1,-1
94,-1,1264.32,427.265,39.42,93.304,0.929846,-1,-1,-1
94,-1,1665.62,411.582,105.81,189.247,0.711507,-1,-1,-1
94,-1,469.379,479.271,61.455,128.397,0.509825,-1,-1,-1
95,-1,749.312,467.534,70.389,209.619,0.989934,-1,-1,-1
95,-1,507.571,458.725,110.202,314.806,0.95764,-1,-1,-1
95,-1,638.2,467.882,102.732,277.674,0.952592,-1,-1,-1
95,-1,1673.62,419.065,79.73,179.85,0.941288,-1,-1,-1
95,-1,1283.59,425.235,46.61,105.221,0.940096,-1,-1,-1
95,-1,574.569,449.214,88.689,312.895,0.936718,-1,-1,-1
95,-1,1845.54,453.733,64.48,199.8,0.926088,-1,-1,-1
95,-1,1261.88,440.688,42.8,90.572,0.882079,-1,-1,-1
95,-1,482.267,478.58,65.579,176.95,0.617384,-1,-1,-1
96,-1,748.832,467.016,73.467,211.83,0.988868,-1,-1,-1
96,-1,509.161,459.833,104.566,315.283,0.961005,-1,-1,-1
96,-1,606.08,470.926,143.078,269.068,0.940089,-1,-1,-1
96,-1,1674.29,424.343,77.66,173.246,0.935978,-1,-1,-1
96,-1,1846.23,431.464,65.46,227.735,0.88301,-1,-1,-1
96,-1,1270.9,429.28,43.75,107.179,0.881222,-1,-1,-1
96,-1,482.328,476.872,65.338,178.39,0.557189,-1,-1,-1
97,-1,741.264,449.887,91.556,255.658,0.987242,-1,-1,-1
97,-1,506.639,452.32,109.779,327.125,0.953271,-1,-1,-1
97,-1,569.425,450.298,106.507,345.849,0.932363,-1,-1,-1
97,-1,645.84,443.637,80.581,294.621,0.927578,-1,-1,-1
97,-1,1674.38,425.614,78.03,174.259,0.924983,-1,-1,-1
97,-1,1855.69,436.101,51.21,223.521,0.911026,-1,-1,-1
97,-1,1262.93,418.655,40.09,100.14,0.848802,-1,-1,-1
97,-1,479.55,472.575,68.688,194.386,0.680943,-1,-1,-1
98,-1,748.172,448.457,91.794,256.264,0.985436,-1,-1,-1
98,-1,489.744,454.655,109.081,309.952,0.9567,-1,-1,-1
98,-1,567.704,442.7,108.74,351.331,0.938256,-1,-1,-1
98,-1,645.97,445.023,85.89,291.787,0.93312,-1,-1,-1
98,-1,1843.33,445.167,67.42,216.415,0.920066,-1,-1,-1
98,-1,1675.56,427.397,76.47,171.065,0.887345,-1,-1,-1
98,-1,1262.15,422.753,52.22,114.054,0.877382,-1,-1,-1
98,-1,701.718,454.804,85.743,232.072,0.550309,-1,-1,-1
98,-1,464.723,473.979,63.247,136.952,0.528924,-1,-1,-1
99,-1,750.668,446.944,92.285,253.302,0.983214,-1,-1,-1
99,-1,506.775,453.786,119.164,311.475,0.969441,-1,-1,-1
99,-1,648.162,446.969,88.914,301.119,0.953669,-1,-1,-1
99,-1,1844.65,449.751,66.56,212.798,0.911939,-1,-1,-1
99,-1,1272.5,438.394,40.95,102.772,0.90736,-1,-1,-1
99,-1,1669.84,428.824,78.86,165.207,0.878292,-1,-1,-1
99,-1,1258.77,441.17,34.32,71.693,0.812215,-1,-1,-1
99,-1,698.392,455.252,93.822,256.622,0.661833,-1,-1,-1
99,-1,580.615,443.702,75.464,300.218,0.641795,-1,-1,-1
99,-1,485.903,471.456,70.583,197.431,0.574396,-1,-1,-1
100,-1,753.658,449.188,88.614,245.995,0.983942,-1,-1,-1
100,-1,483.47,447.082,141.716,325.523,0.977036,-1,-1,-1
100,-1,643.141,458.413,99.391,280.048,0.969762,-1,-1,-1
100,-1,1861.88,455.082,44.86,182.128,0.919408,-1,-1,-1
100,-1,1665.7,413.488,87.81,177.616,0.894732,-1,-1,-1
100,-1,1263.46,425.029,51.57,112.132,0.883588,-1,-1,-1
100,-1,577.821,448.633,82.936,297.04,0.723415,-1,-1,-1
100,-1,698.25,456.709,90.741,252.778,0.650405,-1,-1,-1
100,-1,480.415,468.802,73.141,194.417,0.602537,-1,-1,-1
100,-1,453.907,459.529,67.609,134.23,0.5495,-1,-1,-1
101,-1,504.422,451.622,130.605,311.307,0.987539,-1,-1,-1
101,-1,748.819,481.016,77.423,208.153,0.984837,-1,-1,-1
101,-1,638.656,453.23,115.11,305.246,0.969574,-1,-1,-1
101,-1,1846.59,442.768,65.52,230.634,0.91704,-1,-1,-1
101,-1,1265.43,424.906,37.69,96.909,0.866199,-1,-1,-1
101,-1,1679.95,426.45,88.02,170.645,0.828506,-1,-1,-1
101,-1,483.592,465.662,74.68,207.609,0.688313,-1,-1,-1
102,-1,496.687,450.888,158.42,329.399,0.987377,-1,-1,-1
102,-1,748.913,445.396,100.141,263.535,0.984294,-1,-1,-1
102,-1,653.99,448.892,91.633,302.718,0.968533,-1,-1,-1
102,-1,1844.71,434.898,67.8,230.926,0.930273,-1,-1,-1
102,-1,1669.76,423.6,80.83,173.442,0.881701,-1,-1,-1
102,-1,1279.03,422.553,50.24,106.339,0.836188,-1,-1,-1
102,-1,1264.25,438.416,33.72,78.903,0.737107,-1,-1,-1
102,-1,1071.66,475.32,49.08,102.021,0.678604,-1,-1,-1
102,-1,484.176,462,74.378,204.138,0.63863,-1,-1,-1
102,-1,532.594,473.649,67.912,174.972,0.545553,-1,-1,-1
103,-1,751.676,450.997,95.826,249.498,0.985999,-1,-1,-1
103,-1,490.606,456.016,132.932,309.386,0.979426,-1,-1,-1
103,-1,657.741,443.536,89.178,290.424,0.973487,-1,-1,-1
103,-1,1840.34,442.929,73.47,226.662,0.872396,-1,-1,-1
103,-1,1269.92,439.198,41.65,102.123,0.868547,-1,-1,-1
103,-1,1672.61,432.643,78.86,165.262,0.800978,-1,-1,-1
103,-1,1255.16,442.388,32.9,71.824,0.797746,-1,-1,-1
103,-1,587.837,463.092,112.719,323.744,0.796265,-1,-1,-1
103,-1,464.163,470.814,65.187,132.28,0.663039,-1,-1,-1
103,-1,1074.59,454.937,44.42,121.05,0.564702,-1,-1,-1
104,-1,505.988,443.023,143.768,329.423,0.991414,-1,-1,-1
104,-1,754.993,446.195,93.12,247.208,0.984939,-1,-1,-1
104,-1,643.608,449.181,114.014,311.174,0.97203,-1,-1,-1
104,-1,1844.5,440.159,67.93,216.492,0.938309,-1,-1,-1
104,-1,1673.71,420.78,83.79,173.019,0.871247,-1,-1,-1
104,-1,1266.75,422.617,38.08,120.098,0.858769,-1,-1,-1
104,-1,1069.91,461.741,47.44,119.352,0.757389,-1,-1,-1
104,-1,487.221,459.961,82.861,197.291,0.557577,-1,-1,-1
105,-1,507.245,451.078,146.922,317.057,0.991732,-1,-1,-1
105,-1,753.743,446.423,94.064,252.847,0.986221,-1,-1,-1
105,-1,650.553,449.018,104.617,310.425,0.967421,-1,-1,-1
105,-1,1842.83,457.974,69.61,205.283,0.93301,-1,-1,-1
105,-1,1069.64,473.491,56.33,102.388,0.886745,-1,-1,-1
105,-1,1668.58,415.62,105.85,178.36,0.833787,-1,-1,-1
105,-1,1263.99,436.939,51.96,95.506,0.71753,-1,-1,-1
106,-1,506.918,441.145,153.84,334.985,0.991544,-1,-1,-1
106,-1,757.318,472.178,102.442,240.523,0.983923,-1,-1,-1
106,-1,664.595,435.73,78.538,299.119,0.961233,-1,-1,-1
106,-1,1672.1,430.149,78.1,165.19,0.903322,-1,-1,-1
106,-1,1068.71,473.733,55.59,101.939,0.898135,-1,-1,-1
106,-1,1844.83,435.645,69.48,229.502,0.896197,-1,-1,-1
106,-1,1269.15,439.455,41.41,97.859,0.894934,-1,-1,-1
106,-1,714.916,456.186,65.968,262.033,0.560274,-1,-1,-1
106,-1,1298.92,413.125,45.43,102.692,0.541735,-1,-1,-1
107,-1,509.079,451.563,154.006,321.158,0.992567,-1,-1,-1
107,-1,754.442,458.824,94.569,247.055,0.989033,-1,-1,-1
107,-1,665.919,433.235,78.697,308.067,0.972743,-1,-1,-1
107,-1,1672.3,424.641,80.18,170.456,0.938587,-1,-1,-1
107,-1,1845.84,461.153,64.85,189.288,0.937773,-1,-1,-1
107,-1,1271.31,433.168,42.93,97.357,0.827122,-1,-1,-1
107,-1,1068.28,461.155,48.01,119.401,0.63913,-1,-1,-1
107,-1,609.825,446.023,81.186,305.071,0.609742,-1,-1,-1
108,-1,511.409,454.271,149.776,322.26,0.991742,-1,-1,-1
108,-1,756.584,456.832,92.459,252.649,0.986187,-1,-1,-1
108,-1,664.584,429.152,83.913,328.598,0.976856,-1,-1,-1
108,-1,1846.1,463.148,64.92,186.206,0.952839,-1,-1,-1
108,-1,1671.64,421.183,84.2,175.23,0.943308,-1,-1,-1
108,-1,1271.5,433.258,42.32,99.045,0.718712,-1,-1,-1
108,-1,1065.84,462.36,50.4,120.501,0.672689,-1,-1,-1
109,-1,509.037,450.052,159.023,328.402,0.992831,-1,-1,-1
109,-1,766.025,467.781,74.411,235.285,0.987775,-1,-1,-1
109,-1,664.933,436.826,83.369,299.637,0.976097,-1,-1,-1
109,-1,1669.64,426.062,87.53,175.81,0.963104,-1,-1,-1
109,-1,1845.84,463.58,65.18,188.132,0.953802,-1,-1,-1
109,-1,1263.14,427.617,52.83,107.887,0.663156,-1,-1,-1
109,-1,1063.26,460.863,53.26,119.968,0.579139,-1,-1,-1
110,-1,507.613,456.469,159.879,318.474,0.989546,-1,-1,-1
110,-1,762.51,449.519,81.976,254.46,0.98883,-1,-1,-1
110,-1,665.086,434.387,90.157,316.389,0.981048,-1,-1,-1
110,-1,1844.54,461.191,67.29,191.43,0.955588,-1,-1,-1
110,-1,1673.17,414.251,77.83,168.918,0.923189,-1,-1,-1
110,-1,1260.19,428.39,33.12,86.433,0.820783,-1,-1,-1
110,-1,1275.25,421.753,46.14,118.101,0.805449,-1,-1,-1
110,-1,1064.22,460.35,51.43,117.331,0.738129,-1,-1,-1
111,-1,523.823,437.656,151.354,352.94,0.991676,-1,-1,-1
111,-1,769.307,464.815,74.311,234.862,0.985663,-1,-1,-1
111,-1,667.171,438.325,88.912,323.024,0.985524,-1,-1,-1
111,-1,1846.71,458.255,66.03,195.198,0.940941,-1,-1,-1
111,-1,1687.96,423.051,95.94,168.281,0.92656,-1,-1,-1
111,-1,1062.96,468.503,59.5,102.947,0.861507,-1,-1,-1
111,-1,1257.74,431.556,31.13,82.67,0.848066,-1,-1,-1
111,-1,1273.51,426.188,42.81,113.167,0.686714,-1,-1,-1
112,-1,524.877,450.384,153.23,345.358,0.989351,-1,-1,-1
112,-1,771.11,463.071,77.035,240.277,0.987733,-1,-1,-1
112,-1,668.286,439.253,91.978,315.568,0.986458,-1,-1,-1
112,-1,1674.2,427.118,78.49,170.46,0.952174,-1,-1,-1
112,-1,1844.69,448.803,67.59,205.776,0.943032,-1,-1,-1
112,-1,1253.37,449.369,44.23,87.718,0.938052,-1,-1,-1
112,-1,1064.66,470.738,55.07,112.695,0.583008,-1,-1,-1
113,-1,767.869,450.095,81.645,255.65,0.989475,-1,-1,-1
113,-1,668.801,450.978,94.865,295.134,0.985975,-1,-1,-1
113,-1,516.935,465.532,151.102,316.375,0.984388,-1,-1,-1
113,-1,1845.15,457.052,67.5,198.422,0.940325,-1,-1,-1
113,-1,1674.02,433.06,81.85,161.284,0.909221,-1,-1,-1
113,-1,1252.61,429.358,38.89,117.992,0.906753,-1,-1,-1
113,-1,1064.81,474.214,58.95,100.666,0.880058,-1,-1,-1
113,-1,1273.15,431.061,45.51,106.293,0.656426,-1,-1,-1
114,-1,768.697,445.167,79.49,259.105,0.988987,-1,-1,-1
114,-1,666.995,437.414,109.193,344.175,0.986766,-1,-1,-1
114,-1,562.475,447.048,123.334,371.051,0.979012,-1,-1,-1
114,-1,1687.87,417.176,98.75,173.521,0.940052,-1,-1,-1
114,-1,1845.55,452.878,65.69,196.826,0.931055,-1,-1,-1
114,-1,1254.69,432.985,34.82,90.911,0.867129,-1,-1,-1
114,-1,1066.42,478.427,58.05,103.23,0.842274,-1,-1,-1
114,-1,507.112,448.243,105.905,271.254,0.760229,-1,-1,-1
115,-1,769.388,451.051,80.582,252.381,0.988281,-1,-1,-1
115,-1,680.895,443.571,98.011,305.936,0.985702,-1,-1,-1
115,-1,500.512,465.297,206.708,323.094,0.982281,-1,-1,-1
115,-1,1844.79,437.496,68.27,224.027,0.947049,-1,-1,-1
115,-1,1671.55,419.161,79.08,173.146,0.91274,-1,-1,-1
115,-1,1256.48,435.025,33.49,83.464,0.829125,-1,-1,-1
115,-1,1066.29,472.513,55.31,101.994,0.731552,-1,-1,-1
115,-1,491.231,471.945,98.981,198.961,0.526094,-1,-1,-1
116,-1,767.79,456.888,84.666,252.263,0.988712,-1,-1,-1
116,-1,538.117,460.31,136.188,329.822,0.986004,-1,-1,-1
116,-1,676.949,447.648,80.03,312.738,0.966171,-1,-1,-1
116,-1,1844.6,443.29,67.03,215.988,0.939036,-1,-1,-1
116,-1,1062.72,461.387,58.86,109.012,0.931974,-1,-1,-1
116,-1,1670.58,417.61,81.83,177.355,0.914246,-1,-1,-1
116,-1,1246.86,448.874,36.58,79.053,0.747717,-1,-1,-1
117,-1,767.253,451.573,94.067,262.512,0.991416,-1,-1,-1
117,-1,542.418,459.485,133.056,350.935,0.99104,-1,-1,-1
117,-1,667.316,426.293,96.736,339.457,0.982828,-1,-1,-1
117,-1,1845.53,435.217,67.98,227.354,0.960343,-1,-1,-1
117,-1,1672.47,418.478,79.54,178.509,0.907607,-1,-1,-1
117,-1,1072.11,461.737,45.84,115.94,0.844962,-1,-1,-1
117,-1,1246.63,433.81,33.07,84.29,0.66198,-1,-1,-1
118,-1,766.701,453.567,97.739,261.251,0.991768,-1,-1,-1
118,-1,535.183,437.081,142.478,366.38,0.987155,-1,-1,-1
118,-1,676.518,453.601,82.707,315.349,0.965905,-1,-1,-1
118,-1,1844.5,439.478,66.26,218.874,0.945637,-1,-1,-1
118,-1,1674.32,421.302,74.26,173.789,0.911323,-1,-1,-1
118,-1,1065.44,456.081,56.98,117.616,0.868024,-1,-1,-1
119,-1,538.158,460.419,146.359,350.931,0.995101,-1,-1,-1
119,-1,770.259,457.831,95.239,250.568,0.990075,-1,-1,-1
119,-1,665.475,429.657,98.892,339.043,0.981836,-1,-1,-1
119,-1,1845.46,438.687,64.91,216.624,0.93776,-1,-1,-1
119,-1,1673.46,423.706,75.5,169.167,0.910452,-1,-1,-1
119,-1,1066.44,467.941,54.89,111.606,0.837133,-1,-1,-1
120,-1,779.234,449.623,95.989,260.081,0.985059,-1,-1,-1
120,-1,550.413,448.459,132.071,372.725,0.980682,-1,-1,-1
120,-1,681.307,437.793,83.069,317.68,0.958367,-1,-1,-1
120,-1,1846.84,442.895,62.75,208.5,0.937108,-1,-1,-1
120,-1,1673.38,417.358,76.34,178.96,0.885527,-1,-1,-1
120,-1,1064.12,461.622,55.98,122.047,0.506001,-1,-1,-1
121,-1,775.263,452.087,97.493,257.565,0.987719,-1,-1,-1
121,-1,663.449,429.556,103.272,346.543,0.980438,-1,-1,-1
121,-1,545.541,442.387,140.791,389.182,0.97686,-1,-1,-1
121,-1,1847.01,446.474,62.35,206.878,0.931646,-1,-1,-1
121,-1,1674.95,418.929,75.06,176.417,0.850943,-1,-1,-1
121,-1,1067.59,467.062,50.05,110.907,0.610976,-1,-1,-1
122,-1,776.199,451.018,102.101,252.619,0.985076,-1,-1,-1
122,-1,550.578,432.101,134.86,379.878,0.981401,-1,-1,-1
122,-1,670.414,437.6,102.544,322.162,0.957641,-1,-1,-1
122,-1,1846.12,452.515,63.86,203.798,0.949457,-1,-1,-1
122,-1,1672.92,423.562,84.07,176.295,0.883844,-1,-1,-1
122,-1,1068.42,472.168,52.26,99.253,0.751576,-1,-1,-1
122,-1,521.761,456.905,84.208,231.688,0.567409,-1,-1,-1
123,-1,549.836,460.855,133.369,344.169,0.990027,-1,-1,-1
123,-1,673.258,459.937,111.921,327.655,0.983539,-1,-1,-1
123,-1,781.53,453.029,104.413,247.663,0.976674,-1,-1,-1
123,-1,1839.58,448.685,75.96,217.178,0.961513,-1,-1,-1
123,-1,1684.69,420.931,100.99,173.594,0.91045,-1,-1,-1
123,-1,1070.12,468.337,50.64,100.676,0.783839,-1,-1,-1
123,-1,520.364,449.096,86.025,231.824,0.710631,-1,-1,-1
124,-1,785.226,446.359,90.655,271.099,0.989747,-1,-1,-1
124,-1,551.315,455.383,133.997,355.191,0.986145,-1,-1,-1
124,-1,687.966,437.627,87.06,305.718,0.958894,-1,-1,-1
124,-1,1850.75,429.169,63.09,227.583,0.942591,-1,-1,-1
124,-1,1670.4,420,81.65,176.014,0.914111,-1,-1,-1
124,-1,1066.35,466.225,51.01,101.443,0.75435,-1,-1,-1
124,-1,517.558,451.258,87.687,222.672,0.733919,-1,-1,-1
125,-1,776.963,469.656,101.796,239.114,0.992708,-1,-1,-1
125,-1,557.794,451.069,148.908,380.14,0.989744,-1,-1,-1
125,-1,667.8,446.025,108.824,320.39,0.941852,-1,-1,-1
125,-1,1850.67,438.752,62.43,227.518,0.926153,-1,-1,-1
125,-1,1686.39,419.051,99.03,167.116,0.831055,-1,-1,-1
125,-1,538.99,456.825,91.745,169.839,0.665303,-1,-1,-1
125,-1,1071.08,465.291,48.4,113.697,0.580595,-1,-1,-1
126,-1,779.626,448.324,105.311,262.714,0.992969,-1,-1,-1
126,-1,562.022,461.657,152.887,397.05,0.95933,-1,-1,-1
126,-1,1846.17,448.737,65.75,202.551,0.946553,-1,-1,-1
126,-1,668.38,445.714,107.464,313.42,0.94175,-1,-1,-1
126,-1,1674.4,427.352,75.69,169.495,0.888631,-1,-1,-1
126,-1,528.35,438.077,111.072,244.864,0.789129,-1,-1,-1
126,-1,1222.9,443.527,41.43,95.033,0.686145,-1,-1,-1
126,-1,1070.71,459.82,49.51,113.419,0.516202,-1,-1,-1
127,-1,781.203,451.544,104.967,260.085,0.99308,-1,-1,-1
127,-1,561.316,462.717,145.521,365.656,0.988396,-1,-1,-1
127,-1,666.669,434.491,112.293,331.356,0.953094,-1,-1,-1
127,-1,1841.88,457.622,73.05,205.068,0.911568,-1,-1,-1
127,-1,1665.97,409.951,109.23,195.378,0.895228,-1,-1,-1
127,-1,517.686,446.214,104.642,228.023,0.786556,-1,-1,-1
127,-1,1217.59,432.112,42.76,107.505,0.694393,-1,-1,-1
127,-1,1070.01,459.895,50.29,114.229,0.581074,-1,-1,-1
128,-1,781.797,443.673,106.751,277.43,0.9935,-1,-1,-1
128,-1,522.484,447.83,199.5,340.957,0.970618,-1,-1,-1
128,-1,674.134,457.079,127.928,279.562,0.95921,-1,-1,-1
128,-1,1859.32,473.619,46.8,169.194,0.94991,-1,-1,-1
128,-1,1661.54,421.065,96.19,177.928,0.902603,-1,-1,-1
128,-1,1068.81,468.222,52.16,100.926,0.826856,-1,-1,-1
128,-1,517.281,443.749,97.153,225.459,0.592417,-1,-1,-1
128,-1,1230.13,431.908,29.94,106.312,0.562498,-1,-1,-1
129,-1,785.508,444.37,98.512,283.314,0.992333,-1,-1,-1
129,-1,572.562,432.8,148.982,397.194,0.991941,-1,-1,-1
129,-1,1845.79,459.434,63.02,188.637,0.943899,-1,-1,-1
129,-1,682.129,457.146,94.991,301.898,0.926307,-1,-1,-1
129,-1,1668.9,412.753,103.82,194.915,0.871641,-1,-1,-1
129,-1,1225.93,414.556,46.03,126.039,0.855251,-1,-1,-1
129,-1,535.02,453.287,110.66,264.236,0.762063,-1,-1,-1
129,-1,1071.44,465.831,48.36,115.222,0.617059,-1,-1,-1
130,-1,566.158,426.157,159.19,407.096,0.993423,-1,-1,-1
130,-1,787.549,446.127,101.404,280.489,0.993066,-1,-1,-1
130,-1,1860.66,468.172,46.53,172.066,0.945774,-1,-1,-1
130,-1,1673.29,421.16,76.2,178.561,0.917602,-1,-1,-1
130,-1,682.516,458.27,96.019,308.973,0.908366,-1,-1,-1
130,-1,546.028,432.262,92.601,279.386,0.635589,-1,-1,-1
130,-1,1065.33,463.439,59.97,119.511,0.630349,-1,-1,-1
130,-1,1232.13,433.165,29.12,99.909,0.593571,-1,-1,-1
131,-1,561.506,463.186,159.427,357.626,0.995214,-1,-1,-1
131,-1,806.434,450.058,79.584,249.535,0.994809,-1,-1,-1
131,-1,683.044,450.739,97.17,325.292,0.916035,-1,-1,-1
131,-1,1672.06,416.677,78.42,184.275,0.91578,-1,-1,-1
131,-1,1848.27,441.413,59.81,227.276,0.897608,-1,-1,-1
131,-1,1074.26,464.496,49.39,114.888,0.660997,-1,-1,-1
131,-1,1215.62,436.487,40,99.361,0.505882,-1,-1,-1
132,-1,552.588,447.746,172.193,392.582,0.996419,-1,-1,-1
132,-1,793.313,443.241,98.426,281.199,0.992172,-1,-1,-1
132,-1,697.544,443.248,84.524,305.505,0.969156,-1,-1,-1
132,-1,1857.88,452.729,48.6,193.567,0.956227,-1,-1,-1
132,-1,1671.61,419.483,78.73,179.262,0.89744,-1,-1,-1
133,-1,554.9,441.787,166.613,373.097,0.993338,-1,-1,-1
133,-1,792.775,439.636,108.077,292.192,0.991145,-1,-1,-1
133,-1,694.61,439.881,95.923,324.256,0.956502,-1,-1,-1
133,-1,1838.72,446.47,75.24,204.878,0.902615,-1,-1,-1
133,-1,1671.74,411.244,80.04,186.502,0.884878,-1,-1,-1
133,-1,1074.88,470.588,45.04,112.372,0.693343,-1,-1,-1
133,-1,520.17,444.559,94.95,238.141,0.569285,-1,-1,-1
134,-1,796.833,442.535,105.284,274.754,0.989598,-1,-1,-1
134,-1,568.189,460.794,150.59,363.861,0.974883,-1,-1,-1
134,-1,687.447,450.246,94.923,294.496,0.956072,-1,-1,-1
134,-1,1859.58,459.893,47.34,186.261,0.938661,-1,-1,-1
134,-1,1667.06,412.603,84.59,179.525,0.895735,-1,-1,-1
134,-1,1070.25,474.835,49.78,94.876,0.895105,-1,-1,-1
134,-1,533.893,429.675,109.239,294.211,0.535476,-1,-1,-1
135,-1,558.922,436.456,172.22,407.982,0.99569,-1,-1,-1
135,-1,800.551,438.919,99.689,270.01,0.988629,-1,-1,-1
135,-1,701.677,460.235,93.82,302.357,0.975146,-1,-1,-1
135,-1,1860.26,470.871,44.57,174.969,0.938732,-1,-1,-1
135,-1,1068.91,472.85,53.53,100.151,0.908042,-1,-1,-1
135,-1,1672.06,421.468,78.16,174.063,0.881985,-1,-1,-1
136,-1,562.035,437.454,167.935,407.487,0.996403,-1,-1,-1
136,-1,795.325,451.721,90.594,275.767,0.989797,-1,-1,-1
136,-1,689.95,445.367,100.781,334.829,0.973458,-1,-1,-1
136,-1,1859.79,472.606,43.75,172.066,0.945217,-1,-1,-1
136,-1,1069.72,471.824,52.65,99.464,0.899381,-1,-1,-1
136,-1,1668.52,417.169,81.77,180.676,0.844712,-1,-1,-1
137,-1,560.279,433.84,167.047,432.683,0.996572,-1,-1,-1
137,-1,795.942,444.211,93.188,278.506,0.987311,-1,-1,-1
137,-1,691.809,446.594,100.805,333.073,0.976207,-1,-1,-1
137,-1,1858.7,454.956,48.93,190.575,0.943139,-1,-1,-1
137,-1,1672.58,415.111,79.82,180.038,0.897176,-1,-1,-1
137,-1,1068.03,472.882,55.25,97.855,0.886675,-1,-1,-1
137,-1,462.586,466.036,60.297,125.785,0.728842,-1,-1,-1
138,-1,558.835,438.076,167.908,414.277,0.997247,-1,-1,-1
138,-1,793.094,444.392,96.225,268.129,0.985813,-1,-1,-1
138,-1,691.213,448.305,107.207,330.73,0.980519,-1,-1,-1
138,-1,1833.47,455.248,72.14,179.098,0.951752,-1,-1,-1
138,-1,1685.03,418.649,95,170.408,0.827403,-1,-1,-1
138,-1,1069.99,471.174,48.77,113.965,0.667931,-1,-1,-1
139,-1,563.481,459.029,160.641,391.722,0.996558,-1,-1,-1
139,-1,693.116,440.112,111.685,333.996,0.989018,-1,-1,-1
139,-1,807.05,455.789,106.008,262.048,0.972444,-1,-1,-1
139,-1,1841.62,438.564,73.14,219.484,0.90546,-1,-1,-1
139,-1,1677.97,425.103,84.76,174.179,0.879542,-1,-1,-1
139,-1,1069.11,475.126,52.21,94.098,0.70473,-1,-1,-1
140,-1,821.653,453.49,95.218,243.397,0.989011,-1,-1,-1
140,-1,550.038,462.167,175.913,406.544,0.985711,-1,-1,-1
140,-1,689.775,447.848,109.042,322.805,0.983278,-1,-1,-1
140,-1,1672.82,423.944,79.65,173.423,0.929912,-1,-1,-1
140,-1,1848.36,421.563,58.92,251.911,0.875722,-1,-1,-1
140,-1,1072.22,477.331,46.28,94.371,0.817755,-1,-1,-1
141,-1,571.483,446.045,148.697,427.732,0.995212,-1,-1,-1
141,-1,686.981,438.732,115.598,338.66,0.983856,-1,-1,-1
141,-1,808.441,459.692,96.704,228.379,0.979964,-1,-1,-1
141,-1,1665.48,413.018,114.03,192.133,0.91455,-1,-1,-1
141,-1,1861.33,436.552,43.05,203.484,0.871917,-1,-1,-1
141,-1,1090,457.84,50.22,117.836,0.615222,-1,-1,-1
142,-1,565.192,436.623,163.516,449.315,0.98848,-1,-1,-1
142,-1,696.804,436.976,101.897,332.91,0.986684,-1,-1,-1
142,-1,833.743,456.139,86.757,242.105,0.985789,-1,-1,-1
142,-1,1675.89,424.768,78.91,172.561,0.895817,-1,-1,-1
142,-1,1842.07,437.312,72.07,221.889,0.85748,-1,-1,-1
142,-1,1090.41,457.433,50.45,118.696,0.612297,-1,-1,-1
143,-1,550.268,443.939,162.648,425.593,0.996585,-1,-1,-1
143,-1,709.836,427.397,101.991,355.372,0.990326,-1,-1,-1
143,-1,814.397,469.355,82.204,241.812,0.973959,-1,-1,-1
143,-1,1674.66,410.27,84.54,180.781,0.965559,-1,-1,-1
143,-1,1859.67,434.728,48.72,203.063,0.93522,-1,-1,-1
143,-1,1073.18,469.776,44.45,112.03,0.653766,-1,-1,-1
143,-1,466.271,462.19,58.043,124.57,0.519736,-1,-1,-1
144,-1,571.007,427.96,150.949,449.887,0.993044,-1,-1,-1
144,-1,818.449,452.214,100.976,250.916,0.986482,-1,-1,-1
144,-1,701.305,441.586,99.342,316.077,0.985391,-1,-1,-1
144,-1,1677.57,420.485,83.7,175.715,0.941191,-1,-1,-1
144,-1,1860.57,448.42,46.39,189.024,0.927716,-1,-1,-1
144,-1,1073.28,453.667,46.99,119.377,0.722347,-1,-1,-1
144,-1,1202.2,455.765,35.89,82.25,0.700919,-1,-1,-1
144,-1,454.848,429.288,72.215,120.743,0.535405,-1,-1,-1
145,-1,570.604,436.194,151.898,434.95,0.994947,-1,-1,-1
145,-1,817.865,445.933,108.656,276.152,0.983999,-1,-1,-1
145,-1,705.21,439.813,97.18,313.494,0.98397,-1,-1,-1
145,-1,1860.76,447.244,46.85,194.673,0.945447,-1,-1,-1
145,-1,1675.95,423.115,83.42,171.736,0.926296,-1,-1,-1
145,-1,1069.78,468.403,50.01,105.256,0.889491,-1,-1,-1
145,-1,465.183,462.407,63.442,124.272,0.790149,-1,-1,-1
145,-1,1197.92,460.73,33.96,80.725,0.718453,-1,-1,-1
146,-1,564.189,454.634,147.123,412.455,0.993634,-1,-1,-1
146,-1,815.568,447.207,111.411,279.511,0.987585,-1,-1,-1
146,-1,702.762,439.444,101.954,327.176,0.984818,-1,-1,-1
146,-1,1672.16,418.165,76.1,178.288,0.961913,-1,-1,-1
146,-1,1858.18,462.314,44.78,179.068,0.934594,-1,-1,-1
146,-1,1068.67,469.321,51.01,109.553,0.894462,-1,-1,-1
146,-1,469.784,463.802,63.748,124.491,0.854098,-1,-1,-1
146,-1,1195.96,459.243,31.3,82.25,0.773971,-1,-1,-1
147,-1,555.913,434.312,153.731,468.383,0.99276,-1,-1,-1
147,-1,700.035,431.231,115.243,344.112,0.992645,-1,-1,-1
147,-1,841.184,441.418,94.114,261.229,0.979413,-1,-1,-1
147,-1,1672.28,418.876,72.74,174.489,0.954565,-1,-1,-1
147,-1,1852.77,449.866,49.98,209.906,0.935676,-1,-1,-1
147,-1,1068.46,467.981,51.31,109.206,0.89816,-1,-1,-1
147,-1,1201.2,460.119,36.76,83.635,0.852913,-1,-1,-1
147,-1,469.367,472.452,63.569,116.164,0.784609,-1,-1,-1
148,-1,555.685,422.659,157.423,455.839,0.995019,-1,-1,-1
148,-1,694.247,441.517,114.39,336.348,0.993136,-1,-1,-1
148,-1,842.469,449.396,96.886,264.787,0.982888,-1,-1,-1
148,-1,1859.62,444.353,47.75,204.898,0.951636,-1,-1,-1
148,-1,1673.51,412.504,74.58,180.951,0.943041,-1,-1,-1
148,-1,1068.25,471.572,50.69,109.224,0.89828,-1,-1,-1
148,-1,1191.37,462.121,50.49,98.946,0.852152,-1,-1,-1
148,-1,462.401,457.233,64.016,124.776,0.808416,-1,-1,-1
149,-1,553.944,451.105,162.612,450.219,0.995619,-1,-1,-1
149,-1,701.612,432.396,106.765,347.261,0.990757,-1,-1,-1
149,-1,820.192,453.087,117.344,283.172,0.981472,-1,-1,-1
149,-1,1844.52,441.798,63.36,206.012,0.963011,-1,-1,-1
149,-1,1674.17,420.421,72.44,172.456,0.945191,-1,-1,-1
149,-1,462.729,452.66,69.806,111.244,0.875561,-1,-1,-1
149,-1,1068.53,462.086,51.49,115.385,0.874926,-1,-1,-1
149,-1,1186.54,446.855,57.18,98.183,0.813204,-1,-1,-1
150,-1,709.854,442.333,131.154,340.398,0.99096,-1,-1,-1
150,-1,558.161,413.255,146.557,464.231,0.988704,-1,-1,-1
150,-1,818.459,458.768,114.944,259.654,0.985923,-1,-1,-1
150,-1,1842.23,437.905,67.42,212.008,0.970587,-1,-1,-1
150,-1,1672.5,421.194,77.73,174.98,0.933194,-1,-1,-1
150,-1,1194.13,442.943,35.46,100.033,0.830575,-1,-1,-1
150,-1,1068.9,463.62,48.99,115.331,0.810837,-1,-1,-1
150,-1,476.982,474.04,73.856,137.691,0.567721,-1,-1,-1
151,-1,550.579,439.431,161.182,439.218,0.993744,-1,-1,-1
151,-1,711.885,439.755,130.718,322.374,0.989893,-1,-1,-1
151,-1,819.956,453.362,106.607,269.363,0.983279,-1,-1,-1
151,-1,1845.49,448.941,62.91,202.666,0.957148,-1,-1,-1
151,-1,1674.31,426.517,73.93,172.575,0.947103,-1,-1,-1
151,-1,1067.9,459.029,50.9,123.215,0.827569,-1,-1,-1
151,-1,1194.4,444.341,34.68,95.91,0.80288,-1,-1,-1
151,-1,493.886,449.798,59.433,114.261,0.547917,-1,-1,-1
152,-1,558.96,423.994,151.503,466.973,0.9881,-1,-1,-1
152,-1,710.78,433.654,120.197,341.385,0.97642,-1,-1,-1
152,-1,821.32,439.109,108.876,287.291,0.975011,-1,-1,-1
152,-1,1658.76,420.83,97.9,178.581,0.952485,-1,-1,-1
152,-1,1843.36,443.137,69.88,210.934,0.940748,-1,-1,-1
152,-1,1194.1,437.773,39.89,99.582,0.886566,-1,-1,-1
152,-1,365.254,475.247,88.503,98.604,0.694845,-1,-1,-1
152,-1,1094.15,461.783,47.45,108.282,0.679002,-1,-1,-1
153,-1,739.238,432.59,101.627,330.217,0.980271,-1,-1,-1
153,-1,824.443,435.96,115.975,290.993,0.979792,-1,-1,-1
153,-1,551.59,457.64,160.621,385.645,0.972826,-1,-1,-1
153,-1,1844.11,423.858,67.5,230.67,0.938157,-1,-1,-1
153,-1,1658.57,420.23,97.42,178.668,0.929769,-1,-1,-1
153,-1,1067.54,468.053,51.88,108.743,0.841197,-1,-1,-1
153,-1,1197.65,438.397,38.89,102.544,0.785818,-1,-1,-1
153,-1,897.887,433.254,67.857,254.355,0.555787,-1,-1,-1
154,-1,814.366,445.252,98.033,284.056,0.982731,-1,-1,-1
154,-1,724.646,431.338,103.129,334.856,0.978364,-1,-1,-1
154,-1,555.906,464.27,150.145,369.603,0.965854,-1,-1,-1
154,-1,1845.21,439.856,63.69,212.279,0.947674,-1,-1,-1
154,-1,1659.39,420.986,97.56,177.975,0.913294,-1,-1,-1
154,-1,1067.11,470.925,49.62,100.474,0.833653,-1,-1,-1
154,-1,1186.4,437.174,38.19,99.907,0.793777,-1,-1,-1
154,-1,900.709,431.328,66.865,264.54,0.600845,-1,-1,-1
155,-1,726.483,427.111,99.619,347.911,0.978903,-1,-1,-1
155,-1,843.909,442.705,112.423,280.252,0.974207,-1,-1,-1
155,-1,558.83,458.924,149.951,397.594,0.96227,-1,-1,-1
155,-1,1841.2,453.907,67.93,204.34,0.948289,-1,-1,-1
155,-1,1656.75,417.874,100.93,189.44,0.9304,-1,-1,-1
155,-1,1187.62,442.126,38.16,98.539,0.60432,-1,-1,-1
155,-1,1086.19,471.939,41.02,100.907,0.550466,-1,-1,-1
155,-1,1040.97,474.346,67.5,102.884,0.529748,-1,-1,-1
156,-1,547.301,453.838,158.073,410.16,0.992127,-1,-1,-1
156,-1,726.24,430.888,107.674,353.861,0.982875,-1,-1,-1
156,-1,845.068,441.294,117.654,291.844,0.980728,-1,-1,-1
156,-1,1679.1,430.466,68.95,168.638,0.945221,-1,-1,-1
156,-1,1841.34,444.326,69.36,219.345,0.944856,-1,-1,-1
156,-1,1188.64,442.305,35.1,104.893,0.603887,-1,-1,-1
156,-1,370.728,480.573,83.759,97.663,0.517045,-1,-1,-1
156,-1,1044.33,467.967,67.34,107.265,0.508731,-1,-1,-1
157,-1,544.19,455.668,160.276,401.183,0.992379,-1,-1,-1
157,-1,729.148,429.949,107.57,346.831,0.983492,-1,-1,-1
157,-1,845.304,442.178,119.491,295.511,0.979319,-1,-1,-1
157,-1,1842.96,448.365,65.2,211.583,0.950505,-1,-1,-1
157,-1,1661.93,415.414,92.31,181.673,0.929074,-1,-1,-1
157,-1,1078.17,460.37,37.75,99.878,0.5194,-1,-1,-1
158,-1,547.937,441.655,162.304,457.084,0.993918,-1,-1,-1
158,-1,734.676,431.769,108.82,349.691,0.982058,-1,-1,-1
158,-1,832.895,441.226,111.694,290.654,0.977252,-1,-1,-1
158,-1,1844.01,447.637,64.28,210.778,0.951753,-1,-1,-1
158,-1,1662.72,424.388,96.26,179.661,0.929952,-1,-1,-1
158,-1,641.637,426.967,102.208,351.401,0.732354,-1,-1,-1
159,-1,556.727,435.691,157.404,457.475,0.991143,-1,-1,-1
159,-1,737.779,433.417,113.175,348.258,0.976282,-1,-1,-1
159,-1,843.674,451.71,124.429,296.128,0.969297,-1,-1,-1
159,-1,1859.62,439.439,47.09,200.863,0.944261,-1,-1,-1
159,-1,1660.7,421.979,95.93,175.57,0.926478,-1,-1,-1
159,-1,368.012,459.66,87.498,114.938,0.573853,-1,-1,-1
160,-1,556.756,467.488,156.819,421.95,0.992386,-1,-1,-1
160,-1,727.209,424.185,100.14,351.39,0.986973,-1,-1,-1
160,-1,841.499,441.352,105.179,287.142,0.973768,-1,-1,-1
160,-1,1844.18,437.991,66.37,214.332,0.953229,-1,-1,-1
160,-1,1662.53,419.036,95.2,175.781,0.944438,-1,-1,-1
160,-1,916.205,451.971,70.339,207.454,0.643476,-1,-1,-1
161,-1,551.277,428.375,170.181,460.33,0.996795,-1,-1,-1
161,-1,839.851,454.101,146.621,258.635,0.987129,-1,-1,-1
161,-1,740.743,430.33,103.084,357.951,0.986413,-1,-1,-1
161,-1,1859.94,429.535,50.65,212.241,0.958538,-1,-1,-1
161,-1,1660.59,415.98,98.17,177.877,0.940442,-1,-1,-1
161,-1,1068.82,478.912,49.41,90.139,0.603518,-1,-1,-1
162,-1,550.161,439.483,157.436,448.216,0.993682,-1,-1,-1
162,-1,842.766,462.603,146.103,258.797,0.985098,-1,-1,-1
162,-1,733.035,443.124,100.441,333.513,0.974742,-1,-1,-1
162,-1,1842.91,453.193,64.18,201.501,0.942014,-1,-1,-1
162,-1,1662.18,426.632,95.81,170.412,0.934396,-1,-1,-1
162,-1,639.284,458.776,96.957,342.234,0.842129,-1,-1,-1
163,-1,557.34,441.004,154.383,457.661,0.99158,-1,-1,-1
163,-1,746.921,426.97,125.349,351.545,0.98152,-1,-1,-1
163,-1,852.13,453.371,97.594,269.23,0.966284,-1,-1,-1
163,-1,1661.45,419.144,95.3,170.762,0.954031,-1,-1,-1
163,-1,1843.01,449.63,67.22,207.258,0.945565,-1,-1,-1
163,-1,909.793,453.664,79.903,265.991,0.730287,-1,-1,-1
163,-1,649.248,446.424,91.989,359.645,0.724955,-1,-1,-1
164,-1,541.518,434.005,176.776,476.966,0.993127,-1,-1,-1
164,-1,754.921,426.44,87.269,354.194,0.972575,-1,-1,-1
164,-1,854.039,476.966,139.853,258.63,0.967149,-1,-1,-1
164,-1,1659.54,422.801,96.74,173.89,0.948874,-1,-1,-1
164,-1,1843.86,436.183,66.56,227.009,0.948664,-1,-1,-1
164,-1,654.555,446.899,89.275,329.25,0.856187,-1,-1,-1
165,-1,537.129,439.293,183.376,457.245,0.989653,-1,-1,-1
165,-1,757.845,434.967,113.3,344.014,0.977699,-1,-1,-1
165,-1,871.965,456.306,108.179,268.556,0.97167,-1,-1,-1
165,-1,1845.34,448.002,66.78,209.57,0.95596,-1,-1,-1
165,-1,1658.19,418.365,99.21,179.728,0.94757,-1,-1,-1
165,-1,652.548,445.357,97.492,351.269,0.874508,-1,-1,-1
166,-1,534.294,424.516,195.794,466.18,0.993122,-1,-1,-1
166,-1,836.397,469.787,169.163,277.311,0.982875,-1,-1,-1
166,-1,757.517,427.429,93.388,358.679,0.979479,-1,-1,-1
166,-1,1659.34,423.655,97.63,175.278,0.965042,-1,-1,-1
166,-1,1847.08,455.809,63.28,199.358,0.94572,-1,-1,-1
166,-1,647.423,449.193,98.585,340.654,0.875603,-1,-1,-1
166,-1,1164.58,442.787,45.1,105.547,0.588255,-1,-1,-1
167,-1,533.058,442.396,178.307,458.986,0.986122,-1,-1,-1
167,-1,758.081,426.036,96.485,361.818,0.980451,-1,-1,-1
167,-1,845.275,450.363,116.976,308.488,0.977223,-1,-1,-1
167,-1,1673.95,421.232,74.35,178.822,0.961524,-1,-1,-1
167,-1,1846.6,453.543,63.51,203.737,0.94829,-1,-1,-1
167,-1,638.286,442.711,113.899,379.464,0.863509,-1,-1,-1
167,-1,920.092,441.858,72.224,255.264,0.843691,-1,-1,-1
168,-1,760.745,430.799,94.806,355.874,0.983377,-1,-1,-1
168,-1,857.914,451.195,154.946,280.706,0.977344,-1,-1,-1
168,-1,514.894,446.536,232.453,408.866,0.946901,-1,-1,-1
168,-1,1848.38,452.901,59.42,197.691,0.942901,-1,-1,-1
168,-1,1673.55,418.913,75.68,167.447,0.869213,-1,-1,-1
168,-1,1161.53,441.923,30.75,82.241,0.63533,-1,-1,-1
169,-1,862.88,460.215,149.37,262.263,0.984612,-1,-1,-1
169,-1,760.735,430.005,93.116,359.838,0.983005,-1,-1,-1
169,-1,522.118,438.044,225.764,434.35,0.975111,-1,-1,-1
169,-1,1846.54,449.128,61.63,200.47,0.958831,-1,-1,-1
169,-1,1677.06,423.438,73.04,167.346,0.852971,-1,-1,-1
169,-1,1160.07,452.084,32.08,86.536,0.826245,-1,-1,-1
170,-1,757.778,427.989,114.72,361.176,0.991098,-1,-1,-1
170,-1,867.826,466.171,153.484,268.632,0.985377,-1,-1,-1
170,-1,550.135,447.904,195.322,437.934,0.984145,-1,-1,-1
170,-1,1847.86,434.631,63.39,220.206,0.956735,-1,-1,-1
170,-1,1162.97,442.069,36.53,104.322,0.934155,-1,-1,-1
170,-1,1676.82,416.935,73.95,172.399,0.864284,-1,-1,-1
170,-1,678.191,436.086,87.392,396.073,0.758941,-1,-1,-1
171,-1,759.014,424.637,117.99,366.569,0.99069,-1,-1,-1
171,-1,865.885,458.556,163.735,271.23,0.989211,-1,-1,-1
171,-1,550.831,422.551,202.115,487.208,0.988691,-1,-1,-1
171,-1,1848.1,440.457,62.1,212.905,0.955929,-1,-1,-1
171,-1,1165.18,433.102,39.67,105.152,0.93989,-1,-1,-1
171,-1,1676.19,419.47,75.24,183.181,0.875311,-1,-1,-1
171,-1,535.478,448.596,93.357,240.811,0.611905,-1,-1,-1
172,-1,763.14,442.419,110.96,350.377,0.988893,-1,-1,-1
172,-1,555.223,433.308,216.56,480.669,0.988687,-1,-1,-1
172,-1,859.509,452.121,125.174,296.435,0.979061,-1,-1,-1
172,-1,1844.53,434.609,65.72,219.902,0.963948,-1,-1,-1
172,-1,1163.44,432.063,43.48,111.803,0.954868,-1,-1,-1
172,-1,1675.31,423.519,73.14,179.408,0.925729,-1,-1,-1
172,-1,961.178,435.478,76.302,263.339,0.838355,-1,-1,-1
173,-1,867.286,454.404,173.644,269.822,0.990661,-1,-1,-1
173,-1,758.802,422.501,122.041,367.721,0.990044,-1,-1,-1
173,-1,528.496,426.088,219.306,495.76,0.989737,-1,-1,-1
173,-1,1847.13,439.273,64.32,218.18,0.963001,-1,-1,-1
173,-1,1164.78,434.071,42.66,112.255,0.959505,-1,-1,-1
173,-1,1675.75,427.916,72.48,176.06,0.90828,-1,-1,-1
174,-1,539.472,424.568,202.062,485.735,0.992103,-1,-1,-1
174,-1,761.293,428.875,118.929,364.233,0.991438,-1,-1,-1
174,-1,874.695,456.554,130.305,285.425,0.97956,-1,-1,-1
174,-1,1846.23,445.859,64.02,204.368,0.962296,-1,-1,-1
174,-1,1153.02,425.108,46.14,117.585,0.958479,-1,-1,-1
174,-1,952.442,444.074,71.268,233.141,0.919849,-1,-1,-1
174,-1,1675.69,425.336,75.53,175.93,0.804116,-1,-1,-1
174,-1,485.277,470.371,62.067,91.66,0.657369,-1,-1,-1
175,-1,551.592,443.438,197.698,485.82,0.992474,-1,-1,-1
175,-1,760.514,432.426,125.359,361.147,0.990569,-1,-1,-1
175,-1,876.331,446.573,167.659,290.773,0.988788,-1,-1,-1
175,-1,1164.84,432.658,47.53,116.263,0.966449,-1,-1,-1
175,-1,1845.26,442.296,65.16,207.493,0.954359,-1,-1,-1
175,-1,1674.8,426.513,74.29,174.595,0.903668,-1,-1,-1
175,-1,479.541,476.469,62.727,86.993,0.665004,-1,-1,-1
176,-1,874.351,446.733,178.579,292.659,0.991768,-1,-1,-1
176,-1,755.619,440.113,112.266,344.937,0.989249,-1,-1,-1
176,-1,554.299,436.751,213.089,460.713,0.970188,-1,-1,-1
176,-1,1847.35,447.335,62.91,199.742,0.954652,-1,-1,-1
176,-1,1168.18,442.718,37.91,98.651,0.947625,-1,-1,-1
176,-1,1673.48,423.655,73.26,177.656,0.928423,-1,-1,-1
176,-1,1150.82,451.944,32.56,104.684,0.66644,-1,-1,-1
176,-1,481.758,470.601,61.477,89.423,0.602865,-1,-1,-1
177,-1,771.085,446.838,111.779,333.063,0.990792,-1,-1,-1
177,-1,870.615,451.484,174.705,284.474,0.986336,-1,-1,-1
177,-1,550.928,429.729,215.949,500.781,0.967339,-1,-1,-1
177,-1,1152.18,425.112,46.52,119.455,0.966341,-1,-1,-1
177,-1,1847.3,451.244,60.81,195.826,0.946482,-1,-1,-1
177,-1,1673.1,428.458,73.47,174.056,0.937744,-1,-1,-1
177,-1,968.107,451.502,65.343,212.869,0.739251,-1,-1,-1
177,-1,451.745,462.384,62.784,97.814,0.622192,-1,-1,-1
177,-1,549.955,452.836,113.844,277.274,0.567272,-1,-1,-1
178,-1,559.115,447.874,195.035,479.275,0.996207,-1,-1,-1
178,-1,775.382,447.966,115.471,324.86,0.993708,-1,-1,-1
178,-1,897.467,441.357,128.023,285.998,0.981487,-1,-1,-1
178,-1,1162.37,450.894,37.46,90.675,0.957525,-1,-1,-1
178,-1,1844.89,447.008,65.21,213.029,0.921959,-1,-1,-1
178,-1,1659.75,409.032,96.05,181.267,0.815378,-1,-1,-1
178,-1,970.57,454.208,71.32,204.681,0.681821,-1,-1,-1
178,-1,479.792,468.046,67.262,111.357,0.671344,-1,-1,-1
179,-1,573.216,437.61,208.1,484.249,0.996582,-1,-1,-1
179,-1,782.97,456.881,106.363,319.508,0.993087,-1,-1,-1
179,-1,892.775,461.936,159.965,260.828,0.988329,-1,-1,-1
179,-1,1859.34,446.97,48.04,192.965,0.937582,-1,-1,-1
179,-1,1159.45,452.397,33.76,92.515,0.888674,-1,-1,-1
179,-1,1660.15,420.224,96.13,174.704,0.865649,-1,-1,-1
179,-1,485.262,453.569,63.797,107.98,0.830016,-1,-1,-1
180,-1,554.939,432.199,219.701,476.699,0.991597,-1,-1,-1
180,-1,896.75,467.591,165.42,257.314,0.991284,-1,-1,-1
180,-1,787.972,429.525,101.13,357.753,0.987703,-1,-1,-1
180,-1,1858.28,439.952,51.14,201.535,0.933381,-1,-1,-1
180,-1,1674.53,418.816,75.71,176.938,0.869171,-1,-1,-1
180,-1,455.44,453.073,71.249,110.997,0.853649,-1,-1,-1
180,-1,1155.39,453.356,34.52,91.651,0.80819,-1,-1,-1
180,-1,496.978,439.42,60.191,108.105,0.650731,-1,-1,-1
181,-1,571.534,422.313,205.404,495.899,0.998262,-1,-1,-1
181,-1,778.809,449.186,112.377,323.964,0.98984,-1,-1,-1
181,-1,899.61,458.712,166.17,273.625,0.988523,-1,-1,-1
181,-1,1844.19,443.959,65.69,211.202,0.937577,-1,-1,-1
181,-1,1674.6,415.058,73.61,182.796,0.872273,-1,-1,-1
181,-1,1154.3,442.559,36.72,102.788,0.836925,-1,-1,-1
181,-1,465.642,467.156,63.01,100.615,0.797937,-1,-1,-1
181,-1,497.007,436.183,61.1,111.452,0.527288,-1,-1,-1
182,-1,563.294,418.685,204.904,497.067,0.997472,-1,-1,-1
182,-1,775.898,437.252,120.555,339.289,0.990521,-1,-1,-1
182,-1,897.729,446.046,116.741,294.648,0.981196,-1,-1,-1
182,-1,1842.86,453.91,63.52,208.726,0.946274,-1,-1,-1
182,-1,994.501,466.295,76.929,206.783,0.929828,-1,-1,-1
182,-1,1154.32,437.601,39.6,107.651,0.898381,-1,-1,-1
182,-1,1675.26,413.532,70.55,180.825,0.801509,-1,-1,-1
182,-1,467.351,466.383,61.059,93.892,0.75466,-1,-1,-1
182,-1,500.991,453.187,61.739,116.725,0.69548,-1,-1,-1
183,-1,905.623,451.445,151.967,283.611,0.986088,-1,-1,-1
183,-1,781.66,427.672,111.352,356.66,0.985738,-1,-1,-1
183,-1,565.098,438.716,232.098,484.713,0.984073,-1,-1,-1
183,-1,1842.18,451.89,64.69,205.128,0.949169,-1,-1,-1
183,-1,1153.11,443.516,39.85,100.114,0.854242,-1,-1,-1
183,-1,1676.8,418.374,67.1,176.975,0.85007,-1,-1,-1
183,-1,461.645,459.883,58.324,102.793,0.802497,-1,-1,-1
183,-1,554.554,450.888,80.947,225.149,0.716433,-1,-1,-1
184,-1,775.635,423.88,127.575,371.377,0.993248,-1,-1,-1
184,-1,572.429,448.852,215.419,473.026,0.986218,-1,-1,-1
184,-1,930.927,465.37,120.763,277.879,0.970895,-1,-1,-1
184,-1,1841.79,449.614,67.43,208.897,0.943822,-1,-1,-1
184,-1,1149.96,443.576,38.27,97.81,0.929772,-1,-1,-1
184,-1,1676.61,419.841,67.98,173.859,0.798505,-1,-1,-1
184,-1,468.235,467.504,59.477,95.042,0.758739,-1,-1,-1
184,-1,563.961,446.835,75.967,173.433,0.744804,-1,-1,-1
184,-1,547.818,461.15,51.375,119.323,0.590093,-1,-1,-1
185,-1,593.473,436.019,194.156,459.911,0.993494,-1,-1,-1
185,-1,781.126,427.336,121.185,376.534,0.987049,-1,-1,-1
185,-1,905.768,447.504,112.502,322.668,0.981554,-1,-1,-1
185,-1,1843.76,450.758,64.91,206.136,0.948475,-1,-1,-1
185,-1,1658.14,421.247,95.24,171.386,0.943643,-1,-1,-1
185,-1,556.053,467.549,75.459,201.627,0.890312,-1,-1,-1
185,-1,963.181,429.631,103.739,258.994,0.868237,-1,-1,-1
185,-1,478.418,458.58,53.101,95.111,0.85691,-1,-1,-1
185,-1,436.8,472,76.249,98.172,0.604036,-1,-1,-1
185,-1,589.147,449.771,90.277,251.642,0.559895,-1,-1,-1
185,-1,1146.18,441.869,48.94,102.137,0.534788,-1,-1,-1
186,-1,789.104,445.175,111.787,370.067,0.992305,-1,-1,-1
186,-1,609.629,439.176,165.548,452.052,0.9902,-1,-1,-1
186,-1,917.805,463.005,157.595,260.417,0.982099,-1,-1,-1
186,-1,1843.08,458.612,63.75,200.835,0.952138,-1,-1,-1
186,-1,1672.39,418.691,74.97,175.75,0.948551,-1,-1,-1
186,-1,1155.88,451.309,41.01,94.922,0.92024,-1,-1,-1
186,-1,562.908,448.388,73.203,184.71,0.87157,-1,-1,-1
186,-1,463.361,470.161,54.046,93.698,0.862954,-1,-1,-1
186,-1,580.706,456.444,111.44,281.043,0.604074,-1,-1,-1
186,-1,546.451,461.774,52.051,116.374,0.505582,-1,-1,-1
187,-1,619.114,404.475,172.876,521.733,0.993103,-1,-1,-1
187,-1,781.772,437.991,128.835,372.537,0.991325,-1,-1,-1
187,-1,924.167,444.435,143.063,271.441,0.965974,-1,-1,-1
187,-1,1657.93,417.336,101.01,178.691,0.951295,-1,-1,-1
187,-1,1843.77,450.683,65.37,208.503,0.94694,-1,-1,-1
187,-1,1150.91,451.73,37.71,95.093,0.942782,-1,-1,-1
187,-1,565.472,445.129,72.535,184.255,0.88354,-1,-1,-1
187,-1,477.6,460.55,50.718,91.463,0.854919,-1,-1,-1
187,-1,559.21,453.968,167.07,260.347,0.657053,-1,-1,-1
187,-1,546.443,463.885,52.631,117.758,0.596728,-1,-1,-1
188,-1,614.306,436.115,166.68,456.692,0.991201,-1,-1,-1
188,-1,790.013,454.52,121.926,359.359,0.991111,-1,-1,-1
188,-1,938.734,438.866,110.466,304.128,0.953932,-1,-1,-1
188,-1,1672.63,425.853,73.38,173.509,0.953364,-1,-1,-1
188,-1,1150.95,445.9,37.8,96.209,0.944125,-1,-1,-1
188,-1,1858.76,450.436,46.72,190.152,0.936864,-1,-1,-1
188,-1,563.816,435.657,73.361,210.153,0.929298,-1,-1,-1
188,-1,462.031,471.433,53.726,94.493,0.751307,-1,-1,-1
188,-1,545.312,468.546,55.844,120.289,0.695717,-1,-1,-1
188,-1,632.434,445.107,80.454,262.036,0.519228,-1,-1,-1
189,-1,789.769,431.409,121.344,356.864,0.991542,-1,-1,-1
189,-1,640.795,412.456,147.578,468.786,0.989077,-1,-1,-1
189,-1,920.702,458.932,121.818,283.998,0.97522,-1,-1,-1
189,-1,1840.84,441.999,70.82,216.491,0.954929,-1,-1,-1
189,-1,1673.01,423.522,71.36,171.508,0.951175,-1,-1,-1
189,-1,1152.07,441.414,36.9,95.668,0.936984,-1,-1,-1
189,-1,562.643,438.14,70.839,188.429,0.932438,-1,-1,-1
189,-1,463.719,471.978,53.898,96.201,0.739349,-1,-1,-1
190,-1,787.549,440.321,122.247,363.005,0.995665,-1,-1,-1
190,-1,648.117,428.018,142.409,426.775,0.987141,-1,-1,-1
190,-1,932.099,441.286,156.041,294.758,0.983684,-1,-1,-1
190,-1,1675.2,414.745,73.5,182.079,0.971088,-1,-1,-1
190,-1,563.287,454.437,59.63,164.685,0.947278,-1,-1,-1
190,-1,1843.12,443.911,68.79,211.134,0.938737,-1,-1,-1
190,-1,1155.85,451.88,38.16,91.879,0.922448,-1,-1,-1
190,-1,462.36,473.002,53.997,93.215,0.733038,-1,-1,-1
190,-1,1027.52,438.691,78.09,175.227,0.702748,-1,-1,-1
190,-1,574.247,464.702,103.328,227.532,0.51668,-1,-1,-1
191,-1,784.818,419.594,125.131,394.247,0.994645,-1,-1,-1
191,-1,635.433,434.853,159.605,451.293,0.990052,-1,-1,-1
191,-1,939.637,438.155,150.023,305.89,0.987712,-1,-1,-1
191,-1,1673.33,417.048,73.03,184.259,0.971197,-1,-1,-1
191,-1,1159.44,449.223,39.05,89.611,0.950358,-1,-1,-1
191,-1,566.32,452.228,64.924,160.987,0.950113,-1,-1,-1
191,-1,1842.01,442.458,70.07,215.381,0.934449,-1,-1,-1
191,-1,480.341,454.34,52.489,95.772,0.743217,-1,-1,-1
192,-1,799.497,434.101,119.564,368.78,0.996005,-1,-1,-1
192,-1,939.913,450.793,157.737,289.718,0.991506,-1,-1,-1
192,-1,656.409,422.29,132.661,485.74,0.988645,-1,-1,-1
192,-1,567.335,449.71,64.388,154.869,0.957319,-1,-1,-1
192,-1,1842.88,450.32,67.97,204.846,0.939307,-1,-1,-1
192,-1,1675.24,418.59,70.68,167.23,0.91376,-1,-1,-1
192,-1,1143.88,444.361,54.51,115.742,0.872595,-1,-1,-1
192,-1,482.121,453.413,52.069,98.222,0.755765,-1,-1,-1
192,-1,454.516,475.174,54.855,76.346,0.730163,-1,-1,-1
193,-1,802.039,447.682,122.348,371.585,0.993979,-1,-1,-1
193,-1,652.47,423.881,139.414,508.567,0.993136,-1,-1,-1
193,-1,937.422,443.704,156.718,303.076,0.992771,-1,-1,-1
193,-1,564.326,449.802,65.757,162.394,0.97524,-1,-1,-1
193,-1,1673.5,425.52,73.04,175.93,0.972422,-1,-1,-1
193,-1,1149.43,449.195,53.54,110.973,0.950022,-1,-1,-1
193,-1,1855.46,453.344,50.41,186.883,0.948382,-1,-1,-1
193,-1,488.223,474.774,52.381,94.562,0.829995,-1,-1,-1
194,-1,643.38,434.027,155.994,461.613,0.993997,-1,-1,-1
194,-1,937.766,446.333,162.714,308.904,0.993967,-1,-1,-1
194,-1,807.727,447.977,120.008,369.74,0.992613,-1,-1,-1
194,-1,565.062,446.609,67.557,164.897,0.980313,-1,-1,-1
194,-1,1671.76,416.219,78.16,182.844,0.970109,-1,-1,-1
194,-1,1157.16,451.199,41.8,95.522,0.955754,-1,-1,-1
194,-1,1842.32,450.563,68.41,208.761,0.951116,-1,-1,-1
194,-1,486.936,452.704,47.353,98.341,0.78368,-1,-1,-1
195,-1,811.333,448.043,126.413,348.858,0.993635,-1,-1,-1
195,-1,958.109,437.658,156.071,296.579,0.993141,-1,-1,-1
195,-1,644.881,432.787,167.206,484.348,0.992979,-1,-1,-1
195,-1,567.685,447.609,66.684,170.43,0.977562,-1,-1,-1
195,-1,1672.99,422.142,72.53,177.667,0.97628,-1,-1,-1
195,-1,1844.71,451.928,66.66,203.859,0.942042,-1,-1,-1
195,-1,1153.41,446.225,40.76,104.019,0.926392,-1,-1,-1
195,-1,485.747,454.815,48.265,102.967,0.761285,-1,-1,-1
195,-1,1043.75,452.791,74.23,197.696,0.592637,-1,-1,-1
196,-1,810.646,432.105,126.632,381.945,0.994117,-1,-1,-1
196,-1,641.405,415.298,158.78,446.795,0.992513,-1,-1,-1
196,-1,945.07,451.697,123.04,315.587,0.98938,-1,-1,-1
196,-1,566.573,449.094,60.155,163.929,0.980975,-1,-1,-1
196,-1,1671.89,419.653,73.95,182.425,0.978726,-1,-1,-1
196,-1,1843.94,459.394,66.2,190.248,0.926271,-1,-1,-1
196,-1,1027.32,439.545,94.55,269.975,0.855363,-1,-1,-1
196,-1,486.43,458.949,45.55,101.362,0.684341,-1,-1,-1
197,-1,805.612,432.654,123.598,374.673,0.99536,-1,-1,-1
197,-1,654.895,427.061,142.982,561.748,0.99505,-1,-1,-1
197,-1,956.625,445.334,158.125,293.991,0.99369,-1,-1,-1
197,-1,567.903,446.799,61.124,163.692,0.985401,-1,-1,-1
197,-1,1671.8,420.939,70.94,178.723,0.972422,-1,-1,-1
197,-1,1843.68,461.746,65.51,189.437,0.938737,-1,-1,-1
197,-1,490.025,459.131,44.46,104.283,0.697377,-1,-1,-1
197,-1,1157.69,440.536,32.05,108.506,0.679283,-1,-1,-1
197,-1,1057.22,452.13,58.58,169.027,0.536627,-1,-1,-1
198,-1,644.354,437.081,162.174,488.811,0.993895,-1,-1,-1
198,-1,807.535,446.007,129.885,376,0.992243,-1,-1,-1
198,-1,544.814,448.311,98.476,173.421,0.979523,-1,-1,-1
198,-1,977.872,415.189,140.398,348.904,0.975589,-1,-1,-1
198,-1,1660.89,420.108,96.46,181.105,0.968566,-1,-1,-1
198,-1,1841.89,452.76,68.51,207.683,0.950468,-1,-1,-1
198,-1,482.179,465.227,45.074,75.419,0.552189,-1,-1,-1
198,-1,1165.27,433.604,33.63,111.523,0.525197,-1,-1,-1
199,-1,646.274,401.774,164.957,555.124,0.99493,-1,-1,-1
199,-1,819.764,453.028,119.973,348.179,0.994492,-1,-1,-1
199,-1,963.002,461.875,164.078,283.897,0.981252,-1,-1,-1
199,-1,544.268,444.944,97.206,177.175,0.979963,-1,-1,-1
199,-1,1659.41,418.309,98.59,181.856,0.977019,-1,-1,-1
199,-1,1843.09,453.988,66.1,205.639,0.94697,-1,-1,-1
199,-1,1157.05,452.826,33.58,83.212,0.666604,-1,-1,-1
199,-1,490.452,465.924,44.158,93.018,0.657841,-1,-1,-1
200,-1,815.921,456.846,144.356,342.38,0.995324,-1,-1,-1
200,-1,643.615,420.065,177.376,522.604,0.994332,-1,-1,-1
200,-1,970.454,451.324,151.636,279.109,0.986181,-1,-1,-1
200,-1,544.784,446.103,93.031,175.372,0.9791,-1,-1,-1
200,-1,1670.22,422.609,76.51,181.861,0.978625,-1,-1,-1
200,-1,1843.81,452.024,69.09,203.773,0.94258,-1,-1,-1
200,-1,487.995,452.25,47.275,102.983,0.73781,-1,-1,-1
201,-1,823.659,445.471,137.033,364.052,0.99549,-1,-1,-1
201,-1,654.303,444.286,164.494,506.279,0.993456,-1,-1,-1
201,-1,967.133,446.755,118.707,322.725,0.976517,-1,-1,-1
201,-1,1672.99,425.343,71.83,175.875,0.960356,-1,-1,-1
201,-1,555.575,450.406,102.479,173.575,0.954056,-1,-1,-1
201,-1,1843.12,453.679,68.12,201.638,0.942533,-1,-1,-1
201,-1,1042.39,441.523,78.91,247.158,0.810881,-1,-1,-1
201,-1,485.909,450.361,49.913,105.453,0.760512,-1,-1,-1
202,-1,826.964,458.667,135.023,348.368,0.995082,-1,-1,-1
202,-1,657.602,430.293,165.062,516.059,0.994775,-1,-1,-1
202,-1,548.68,455.392,102.477,169.212,0.990138,-1,-1,-1
202,-1,989.371,440.384,119.389,304.108,0.979548,-1,-1,-1
202,-1,1841.11,468.513,68.19,182.786,0.957573,-1,-1,-1
202,-1,1672.48,419.364,75.23,182.678,0.939122,-1,-1,-1
202,-1,469.788,459.875,50.883,102.494,0.535705,-1,-1,-1
203,-1,825.496,450.107,156.965,363.128,0.993393,-1,-1,-1
203,-1,665.438,428.827,165.094,521.769,0.99163,-1,-1,-1
203,-1,549.375,457.193,106.988,171.212,0.990617,-1,-1,-1
203,-1,992.881,453.439,125.069,296.585,0.986641,-1,-1,-1
203,-1,1841.74,453.673,66.54,207.206,0.939714,-1,-1,-1
203,-1,1669.29,424.7,78.54,172.209,0.848244,-1,-1,-1
203,-1,489.757,455.328,46.231,104.706,0.687779,-1,-1,-1
203,-1,1058.69,445.359,83.91,193.857,0.612966,-1,-1,-1
204,-1,644.287,430.161,176.866,561.555,0.995838,-1,-1,-1
204,-1,819.471,448.689,140.977,376.535,0.995573,-1,-1,-1
204,-1,993.19,434.783,148.8,291.165,0.984996,-1,-1,-1
204,-1,554.472,458.622,89.048,170.65,0.982512,-1,-1,-1
204,-1,1859.24,448.107,51.22,195.001,0.943561,-1,-1,-1
204,-1,1673.17,424.289,73.5,163.31,0.906203,-1,-1,-1
204,-1,486.941,451.341,43.162,106.063,0.612981,-1,-1,-1
205,-1,686.844,419.171,134.334,567.956,0.996413,-1,-1,-1
205,-1,839.266,444.597,119.581,374.261,0.993033,-1,-1,-1
205,-1,983.664,435.903,160.036,297.742,0.992491,-1,-1,-1
205,-1,569.591,454.421,61.548,150.634,0.978176,-1,-1,-1
205,-1,1841.66,439.581,69.79,220.35,0.950898,-1,-1,-1
205,-1,1680.01,425.116,88.09,178.485,0.904977,-1,-1,-1
205,-1,487.191,451.187,42.165,108.806,0.589343,-1,-1,-1
206,-1,669.367,424.243,168.298,545.369,0.996374,-1,-1,-1
206,-1,838.937,459.013,124.004,347.871,0.994006,-1,-1,-1
206,-1,991.606,453.598,156.104,289.156,0.993844,-1,-1,-1
206,-1,560.112,447.021,98.348,182.771,0.978992,-1,-1,-1
206,-1,1839.56,455.17,70.76,201.531,0.952099,-1,-1,-1
206,-1,1674.96,427.745,71.2,158.138,0.923569,-1,-1,-1
206,-1,484.416,451.829,43.316,107.09,0.725608,-1,-1,-1
207,-1,671.584,397.7,171.144,601.195,0.993719,-1,-1,-1
207,-1,848.889,450.733,121.613,372.216,0.993054,-1,-1,-1
207,-1,990.869,451.318,159.531,307.682,0.989975,-1,-1,-1
207,-1,568.927,457.101,74.631,158.852,0.988094,-1,-1,-1
207,-1,1668.88,427.959,73.7,170.351,0.966087,-1,-1,-1
207,-1,1842.84,455.304,67.3,200.315,0.961539,-1,-1,-1
207,-1,480.67,450.981,49.233,116.207,0.726904,-1,-1,-1
207,-1,1086.58,456.788,60.42,237.862,0.607536,-1,-1,-1
208,-1,854.788,441.407,133.266,354.878,0.99372,-1,-1,-1
208,-1,570.284,457.247,80.583,169.22,0.990954,-1,-1,-1
208,-1,984.592,463.085,152.768,306.942,0.990296,-1,-1,-1
208,-1,679.07,431.191,161.432,525.398,0.986479,-1,-1,-1
208,-1,1859.86,452.896,49.94,185.949,0.953094,-1,-1,-1
208,-1,1673.96,429.882,70.08,168.934,0.932033,-1,-1,-1
208,-1,468.481,449.254,54.877,123.187,0.702569,-1,-1,-1
209,-1,858.995,448.298,130.321,383.468,0.992728,-1,-1,-1
209,-1,1007.27,435.181,158.04,317.152,0.990986,-1,-1,-1
209,-1,571.191,445.105,81.447,180.369,0.989821,-1,-1,-1
209,-1,673.583,425.687,172.574,448.451,0.98558,-1,-1,-1
209,-1,1843.41,452.617,66.25,204.22,0.958815,-1,-1,-1
209,-1,1674.09,424.989,70.06,175.397,0.951586,-1,-1,-1
209,-1,482.585,450.314,49.569,120.402,0.780102,-1,-1,-1
210,-1,1006.64,446.21,149.53,333.015,0.994119,-1,-1,-1
210,-1,866.305,456.823,123.07,356.696,0.993349,-1,-1,-1
210,-1,573.992,434.393,74.023,189.759,0.990664,-1,-1,-1
210,-1,679.185,426.912,160.065,431.115,0.976658,-1,-1,-1
210,-1,1857.74,455.855,52.24,190.175,0.962698,-1,-1,-1
210,-1,1672.73,419.4,74.77,173.777,0.800155,-1,-1,-1
210,-1,481.563,451.65,49.904,121.072,0.689372,-1,-1,-1
211,-1,1007.65,453.65,168.83,298.261,0.993939,-1,-1,-1
211,-1,867.389,443.587,124.338,377.181,0.99391,-1,-1,-1
211,-1,578.437,430.345,70.404,186.093,0.990544,-1,-1,-1
211,-1,1857.58,454.991,51.82,190.859,0.959087,-1,-1,-1
211,-1,689.473,435.336,158.813,359.522,0.957997,-1,-1,-1
211,-1,1659.55,421.219,95.51,179.885,0.881383,-1,-1,-1
211,-1,499.926,469.94,54.018,103.5,0.741567,-1,-1,-1
211,-1,460.164,462.497,56.161,107.382,0.641349,-1,-1,-1
211,-1,1113.68,458.573,53.17,166.257,0.529848,-1,-1,-1
212,-1,1008.42,452.182,178.66,323.256,0.995869,-1,-1,-1
212,-1,870.11,432.232,122.428,390.393,0.99353,-1,-1,-1
212,-1,583.494,435.471,66.775,178.47,0.989843,-1,-1,-1
212,-1,682.453,439.404,165.069,369.3,0.986572,-1,-1,-1
212,-1,1842.4,452.503,64.94,206.701,0.967837,-1,-1,-1
212,-1,1663.68,419.177,87.22,177.914,0.909848,-1,-1,-1
212,-1,482.396,450.84,53.681,123.294,0.853693,-1,-1,-1
213,-1,1019.44,457.989,141.54,330.781,0.995603,-1,-1,-1
213,-1,700.01,416.413,162.456,472.699,0.99511,-1,-1,-1
213,-1,874.016,428.599,124.528,388.333,0.993986,-1,-1,-1
213,-1,586.322,437.864,66.6,179.563,0.990578,-1,-1,-1
213,-1,1841.11,441.541,68.06,216.081,0.968631,-1,-1,-1
213,-1,1661.98,413.147,88.11,182.299,0.908681,-1,-1,-1
213,-1,507.425,453.582,48.474,92.496,0.839737,-1,-1,-1
213,-1,460.648,463.083,57.521,100.944,0.613611,-1,-1,-1
214,-1,684.166,430.499,178.739,475.845,0.997062,-1,-1,-1
214,-1,1019.98,458.043,143.92,324.172,0.996482,-1,-1,-1
214,-1,880.619,438.772,122.841,379.565,0.994139,-1,-1,-1
214,-1,588.233,429.546,66.283,182.076,0.988783,-1,-1,-1
214,-1,1841.52,438.453,67.36,218.854,0.965128,-1,-1,-1
214,-1,1662.96,416.843,86.87,178.752,0.937192,-1,-1,-1
214,-1,506.821,449.39,40.942,121.145,0.875236,-1,-1,-1
214,-1,461.775,459.995,57.661,103.298,0.598022,-1,-1,-1
215,-1,1003.37,459.939,195.78,305.605,0.996268,-1,-1,-1
215,-1,703.894,404.344,176.698,521.735,0.99558,-1,-1,-1
215,-1,877.477,445.818,112.844,376.149,0.990143,-1,-1,-1
215,-1,590.446,437.993,68.131,173.797,0.986819,-1,-1,-1
215,-1,1841.75,438.148,65.04,221.999,0.961901,-1,-1,-1
215,-1,487.686,449.542,52.681,122.847,0.883534,-1,-1,-1
215,-1,1674.18,428.783,70.55,158.79,0.863845,-1,-1,-1
216,-1,1008.97,449.865,174.32,301.099,0.99614,-1,-1,-1
216,-1,705.09,398.937,172.885,558.985,0.993695,-1,-1,-1
216,-1,899.294,436.028,118.606,370.058,0.988008,-1,-1,-1
216,-1,587.015,433.011,67.807,180.89,0.984288,-1,-1,-1
216,-1,1843.2,450.06,62.4,205.753,0.961474,-1,-1,-1
216,-1,1666.85,420.265,86.73,174.443,0.916614,-1,-1,-1
216,-1,495.958,456.999,46.73,114.942,0.888716,-1,-1,-1
216,-1,462.142,457.355,54.16,105.824,0.503167,-1,-1,-1
217,-1,875.44,438.858,118.231,353.901,0.99577,-1,-1,-1
217,-1,718.517,434.253,147.766,459.352,0.995018,-1,-1,-1
217,-1,1024.47,455.029,170.02,296.386,0.992411,-1,-1,-1
217,-1,592.375,447.252,67.196,179.077,0.982412,-1,-1,-1
217,-1,1842.55,447.417,62.84,208.862,0.956954,-1,-1,-1
217,-1,502.521,448.379,50.074,116.591,0.88403,-1,-1,-1
217,-1,1666.42,415.328,87.87,176.758,0.83724,-1,-1,-1
218,-1,878.315,432.256,116.042,385.955,0.997064,-1,-1,-1
218,-1,1036.79,453.234,173.19,315.795,0.995111,-1,-1,-1
218,-1,718.758,416.244,160.986,479.251,0.988785,-1,-1,-1
218,-1,571.617,438.817,96.76,193.475,0.980556,-1,-1,-1
218,-1,1844.09,452.347,60.78,200.549,0.951464,-1,-1,-1
218,-1,1664.43,413.376,91.2,177.605,0.889736,-1,-1,-1
218,-1,506.957,450.896,40.682,116.142,0.870378,-1,-1,-1
218,-1,457.605,457.033,54.206,107.14,0.563487,-1,-1,-1
219,-1,874.947,414.736,142.793,411.344,0.997878,-1,-1,-1
219,-1,721.294,436.117,162.807,520.837,0.997661,-1,-1,-1
219,-1,1052.08,441.076,137.49,339.671,0.996972,-1,-1,-1
219,-1,587.245,430.202,72.169,194.221,0.97849,-1,-1,-1
219,-1,1845.7,444.82,62.27,212.957,0.948628,-1,-1,-1
219,-1,1672.99,432.146,71.19,164.013,0.942628,-1,-1,-1
219,-1,509.659,444.119,41.978,126.298,0.904352,-1,-1,-1
220,-1,1052.78,468.777,161.84,286.347,0.996417,-1,-1,-1
220,-1,896.385,443.873,118.925,377.619,0.994553,-1,-1,-1
220,-1,587.901,431.52,70.373,186.936,0.978401,-1,-1,-1
220,-1,699.908,412.184,179.04,563.75,0.958918,-1,-1,-1
220,-1,1845.88,451.3,61.14,211.652,0.949496,-1,-1,-1
220,-1,1673.24,435.109,69.72,164.092,0.948912,-1,-1,-1
220,-1,501.59,447.058,52.642,125.365,0.91688,-1,-1,-1
221,-1,1075.83,439.332,131.43,320,0.994584,-1,-1,-1
221,-1,893.126,434.076,129.704,406.663,0.993989,-1,-1,-1
221,-1,586.774,433.424,80.251,184.532,0.976893,-1,-1,-1
221,-1,1843.7,439.065,63.03,217.846,0.955759,-1,-1,-1
221,-1,1678.79,416.543,91.88,173.515,0.955051,-1,-1,-1
221,-1,700.454,418.41,182.497,564.002,0.954373,-1,-1,-1
221,-1,508.614,450.23,38.227,113.718,0.892919,-1,-1,-1
222,-1,893.098,437.708,133.902,426.554,0.993159,-1,-1,-1
222,-1,1081.85,470.422,145.61,289.323,0.990134,-1,-1,-1
222,-1,574.215,434.998,102.103,221.711,0.980012,-1,-1,-1
222,-1,1677.61,440.493,69.65,162.527,0.97563,-1,-1,-1
222,-1,1841.48,437.985,64.86,225.444,0.963395,-1,-1,-1
222,-1,714.081,435.107,163.552,494.906,0.955906,-1,-1,-1
222,-1,496.978,445.846,45.68,125.152,0.89242,-1,-1,-1
223,-1,710.983,434.87,183.143,530.482,0.995429,-1,-1,-1
223,-1,1086.04,457.98,114.22,335.288,0.995271,-1,-1,-1
223,-1,903.707,429.544,126.263,412.468,0.989859,-1,-1,-1
223,-1,573.798,424.22,101.13,208.405,0.97806,-1,-1,-1
223,-1,1844.17,453.408,65.02,204.768,0.946331,-1,-1,-1
223,-1,1679.72,414.66,83.58,173.894,0.934907,-1,-1,-1
223,-1,497.898,443.516,44.962,125.516,0.909239,-1,-1,-1
224,-1,716.632,441.539,165.968,536.382,0.990636,-1,-1,-1
224,-1,911.365,425.865,100.045,415.353,0.990009,-1,-1,-1
224,-1,1093.77,449.239,105.67,350.45,0.987361,-1,-1,-1
224,-1,591.094,435.775,66.407,179.025,0.984074,-1,-1,-1
224,-1,1680.9,421.645,85.6,169.039,0.965437,-1,-1,-1
224,-1,1850.66,464.326,64.42,179.175,0.962961,-1,-1,-1
224,-1,499.02,445.74,44.291,122.287,0.913773,-1,-1,-1
225,-1,1106.17,455.078,104.46,316.383,0.99258,-1,-1,-1
225,-1,899.378,430.917,119.762,416.811,0.991753,-1,-1,-1
225,-1,592.578,445.333,66.562,166.669,0.985222,-1,-1,-1
225,-1,711.35,430.016,177.851,550.299,0.984864,-1,-1,-1
225,-1,1661.83,407.211,115.1,166.75,0.980796,-1,-1,-1
225,-1,1843.39,449.355,65.68,210.624,0.941505,-1,-1,-1
225,-1,509.49,449.175,36.962,126.264,0.916765,-1,-1,-1
226,-1,717.333,431.521,172.216,553.059,0.993977,-1,-1,-1
226,-1,894.933,414.719,142.307,458.331,0.993091,-1,-1,-1
226,-1,1097.19,457.846,122.18,330.893,0.985119,-1,-1,-1
226,-1,580.441,447.461,97.879,185.058,0.983732,-1,-1,-1
226,-1,1665.33,410.523,102.26,174.829,0.959814,-1,-1,-1
226,-1,1844.06,448.372,64.9,209.201,0.946398,-1,-1,-1
226,-1,494.323,447.561,44.702,121.375,0.901877,-1,-1,-1
227,-1,915.95,432.5,112.31,408.934,0.995431,-1,-1,-1
227,-1,714.146,417.509,184.537,561.544,0.992457,-1,-1,-1
227,-1,1100.07,447.259,128.11,344.816,0.992239,-1,-1,-1
227,-1,599.892,443.823,64.779,190.586,0.979943,-1,-1,-1
227,-1,1666.4,412.289,109.11,170.697,0.967514,-1,-1,-1
227,-1,1839.95,444.635,66.19,214.051,0.962074,-1,-1,-1
227,-1,505.685,440.486,47.607,128.325,0.912169,-1,-1,-1
227,-1,462.102,449.667,54.487,118.45,0.580115,-1,-1,-1
227,-1,1168.61,445.725,83.49,250.049,0.561963,-1,-1,-1
228,-1,1110.3,456.197,142.82,320.939,0.995376,-1,-1,-1
228,-1,720.084,423.743,182.976,550.813,0.993954,-1,-1,-1
228,-1,915.577,435.43,117.163,429.774,0.992622,-1,-1,-1
228,-1,1667.28,411.987,108.39,169.839,0.973954,-1,-1,-1
228,-1,600.321,456.023,62.389,158.425,0.953854,-1,-1,-1
228,-1,1843.2,451.221,63.15,211.635,0.931319,-1,-1,-1
228,-1,490.919,441.455,46.454,127.772,0.897209,-1,-1,-1
229,-1,1112.71,453.136,111.84,313.158,0.993632,-1,-1,-1
229,-1,720.95,434.298,189.538,532.069,0.992862,-1,-1,-1
229,-1,916.421,430.583,123.209,448.221,0.992166,-1,-1,-1
229,-1,1666.24,414.614,109.74,165.56,0.977491,-1,-1,-1
229,-1,595.133,448.983,74.383,186.95,0.954251,-1,-1,-1
229,-1,1841.63,453.796,63.97,206.918,0.942697,-1,-1,-1
229,-1,492.066,444.431,45.15,126.258,0.909121,-1,-1,-1
229,-1,1178.35,435.858,78.14,222.689,0.53324,-1,-1,-1
230,-1,729.031,442.308,177.01,548.731,0.992745,-1,-1,-1
230,-1,916.476,426.651,120.194,434.672,0.992596,-1,-1,-1
230,-1,1117.42,435.347,143.86,343.658,0.987069,-1,-1,-1
230,-1,591.936,454.125,92.744,174.461,0.97673,-1,-1,-1
230,-1,1668.53,423.257,73.8,165.23,0.972303,-1,-1,-1
230,-1,1840.1,458.843,65.09,204.476,0.9479,-1,-1,-1
230,-1,489.878,440.545,46.17,127.706,0.891928,-1,-1,-1
230,-1,459.449,449.633,53.158,118.902,0.707607,-1,-1,-1
230,-1,1200.25,425.152,71.72,249.842,0.642495,-1,-1,-1
231,-1,1121.2,440.834,144.14,331.258,0.993059,-1,-1,-1
231,-1,917.985,443.564,117.825,403.763,0.988279,-1,-1,-1
231,-1,734.101,428.078,173.717,540.618,0.982214,-1,-1,-1
231,-1,587.039,457.763,90.854,175.42,0.975043,-1,-1,-1
231,-1,1668.51,408.958,97.74,178.688,0.944594,-1,-1,-1
231,-1,1840.62,464.159,63.76,193.755,0.94127,-1,-1,-1
231,-1,490.901,443.669,45.601,128.31,0.906562,-1,-1,-1
231,-1,1210.9,427.884,60,242.286,0.586905,-1,-1,-1
232,-1,1116.14,444.375,162.67,364.537,0.997227,-1,-1,-1
232,-1,901.009,408.516,144.301,472.242,0.994992,-1,-1,-1
232,-1,728.303,438.961,200.728,548.529,0.990835,-1,-1,-1
232,-1,593.587,458.475,92.449,170.978,0.976394,-1,-1,-1
232,-1,1674.94,424.711,70.81,167.907,0.962289,-1,-1,-1
232,-1,1840.72,460.976,66.2,199.013,0.951377,-1,-1,-1
232,-1,498.695,442.083,48.984,125.395,0.871638,-1,-1,-1
232,-1,456.976,445.971,59.065,135.37,0.69372,-1,-1,-1
233,-1,1115.15,460.686,173.01,331.778,0.996842,-1,-1,-1
233,-1,931.906,414.415,110.374,455.649,0.987546,-1,-1,-1
233,-1,743.94,423.925,199.174,550.058,0.986388,-1,-1,-1
233,-1,598.016,468.479,85.69,138.721,0.971804,-1,-1,-1
233,-1,1673.91,420.72,72.42,170.275,0.96453,-1,-1,-1
233,-1,1844.11,465.111,60.82,186.67,0.938996,-1,-1,-1
233,-1,493.396,439.407,50.254,125.386,0.896859,-1,-1,-1
233,-1,456.395,441.562,55.822,133.414,0.546036,-1,-1,-1
234,-1,1123.64,464.137,172.18,332.866,0.996912,-1,-1,-1
234,-1,742.383,452.111,190.782,508.059,0.993076,-1,-1,-1
234,-1,934.4,423.829,108.44,437.33,0.984986,-1,-1,-1
234,-1,577.499,433.972,104.514,196.846,0.984132,-1,-1,-1
234,-1,1669.42,419.181,75.89,171.307,0.970174,-1,-1,-1
234,-1,1842.59,468.736,63.96,187.263,0.939615,-1,-1,-1
234,-1,508.286,450.709,36.854,110.909,0.865225,-1,-1,-1
234,-1,455.414,439.429,58.959,136.29,0.671358,-1,-1,-1
234,-1,637.854,467.947,65.442,179.207,0.570406,-1,-1,-1
235,-1,1142.06,459.398,130.3,340.04,0.997727,-1,-1,-1
235,-1,739.54,424.613,193.908,507.896,0.989975,-1,-1,-1
235,-1,604.684,429.173,79.265,208.181,0.979891,-1,-1,-1
235,-1,935.245,453.636,122.425,391.252,0.975142,-1,-1,-1
235,-1,1672.79,424.13,72.1,169.62,0.967334,-1,-1,-1
235,-1,1842.11,469.939,63.6,182.638,0.931061,-1,-1,-1
235,-1,507.863,438.38,38.755,128.953,0.885594,-1,-1,-1
235,-1,926.257,428.084,110.883,176.896,0.510426,-1,-1,-1
236,-1,1160.39,450.215,133.3,346.639,0.99617,-1,-1,-1
236,-1,731.2,443.143,187.449,457.842,0.986908,-1,-1,-1
236,-1,613.284,436.618,72.965,199.665,0.980831,-1,-1,-1
236,-1,1674.45,422.026,71.97,170.395,0.966107,-1,-1,-1
236,-1,1842.15,474.054,63.35,186.111,0.927702,-1,-1,-1
236,-1,508.991,436.7,41.998,127.429,0.897755,-1,-1,-1
236,-1,923.495,442.693,112.915,305.567,0.84184,-1,-1,-1
236,-1,599.84,461.41,46.466,145.697,0.739779,-1,-1,-1
236,-1,460.146,438.565,53.024,151.018,0.602858,-1,-1,-1
237,-1,1152.54,451.036,124.09,355.087,0.997446,-1,-1,-1
237,-1,737.522,448.964,220.314,423.666,0.988255,-1,-1,-1
237,-1,608.65,443.314,66.25,167.397,0.987408,-1,-1,-1
237,-1,1674.6,424.883,69.63,166.569,0.968712,-1,-1,-1
237,-1,1842,460.185,65.44,204.479,0.949911,-1,-1,-1
237,-1,506.118,434.474,42.656,121.182,0.913243,-1,-1,-1
237,-1,930.295,436.787,118.095,398.616,0.897069,-1,-1,-1
237,-1,458.575,444.04,55.962,146.485,0.74628,-1,-1,-1
237,-1,1083.3,441.114,49.27,145.407,0.664543,-1,-1,-1
237,-1,409.763,469.571,62.875,114.051,0.542194,-1,-1,-1
238,-1,1160.05,442.521,120.75,370.741,0.996401,-1,-1,-1
238,-1,733.184,460.827,254.028,401.142,0.988881,-1,-1,-1
238,-1,617.861,449.94,57.874,156.26,0.988124,-1,-1,-1
238,-1,1662.62,415.256,87.91,169.534,0.957811,-1,-1,-1
238,-1,1841.32,463.366,65.93,200.441,0.936222,-1,-1,-1
238,-1,901.174,448.214,131.726,380.436,0.921733,-1,-1,-1
238,-1,506.23,445.745,37.589,118.781,0.904444,-1,-1,-1
238,-1,1072.68,450.812,52.24,141.226,0.808573,-1,-1,-1
238,-1,458.775,446.21,54.323,144.639,0.743948,-1,-1,-1
238,-1,409.042,471.094,63.513,110.236,0.6302,-1,-1,-1
239,-1,1158.61,453.448,141.8,340.579,0.996707,-1,-1,-1
239,-1,618.831,458.38,68.196,175.013,0.990013,-1,-1,-1
239,-1,746.221,460.74,212.806,428.505,0.984411,-1,-1,-1
239,-1,1673.93,427.594,73.22,168.882,0.960804,-1,-1,-1
239,-1,1840.83,461.596,65.13,200.466,0.938168,-1,-1,-1
239,-1,506.423,442.959,36.423,118.35,0.894582,-1,-1,-1
239,-1,954.787,451.344,118.663,369.893,0.788564,-1,-1,-1
239,-1,442.327,469.784,70.48,86.967,0.709063,-1,-1,-1
239,-1,1070.85,457.023,49.83,142.572,0.68622,-1,-1,-1
239,-1,407.366,472.415,66.541,110.727,0.661591,-1,-1,-1
240,-1,1169.98,448.37,134,329.731,0.996194,-1,-1,-1
240,-1,793.775,439.67,228.965,540.33,0.986915,-1,-1,-1
240,-1,619.139,462.607,72.545,165.311,0.985894,-1,-1,-1
240,-1,745.131,447.267,142.873,417.428,0.979809,-1,-1,-1
240,-1,1672.13,428.383,72.44,167.972,0.970071,-1,-1,-1
240,-1,1839.02,462.682,67.39,191.202,0.964375,-1,-1,-1
240,-1,503.909,446.809,36.88,119.539,0.885355,-1,-1,-1
240,-1,452.735,459.162,56.665,108.5,0.786118,-1,-1,-1
240,-1,1091.36,445.956,44.68,126.421,0.688214,-1,-1,-1
240,-1,948.605,441.684,111.685,322.146,0.581678,-1,-1,-1
240,-1,421.561,445.013,59.749,138.503,0.571981,-1,-1,-1
241,-1,1175.4,453.561,130.34,332.24,0.997193,-1,-1,-1
241,-1,740.322,450.418,156.971,429.736,0.989059,-1,-1,-1
241,-1,621.159,455.03,72.427,171.442,0.985739,-1,-1,-1
241,-1,816.597,445.969,237.763,494.771,0.977261,-1,-1,-1
241,-1,1664.05,422.33,87.54,169.507,0.950872,-1,-1,-1
241,-1,1841.41,459.544,62.26,196.813,0.950751,-1,-1,-1
241,-1,504.525,444.084,34.89,120.661,0.889996,-1,-1,-1
241,-1,1088.54,452.15,46.07,122.906,0.804017,-1,-1,-1
241,-1,454.118,447.803,58.36,129.692,0.731691,-1,-1,-1
241,-1,954.295,442.618,114.805,350.129,0.579336,-1,-1,-1
241,-1,420.808,448.562,60.698,133.978,0.542513,-1,-1,-1
241,-1,1051.46,461.356,51.34,132.517,0.509042,-1,-1,-1
242,-1,1187.17,436.549,114.91,351.945,0.9928,-1,-1,-1
242,-1,744.437,439.901,132.786,429.54,0.992504,-1,-1,-1
242,-1,835.235,423.128,205.175,528.403,0.986181,-1,-1,-1
242,-1,622.011,455.401,61.98,176.452,0.978662,-1,-1,-1
242,-1,1841.56,453.991,61.98,203.836,0.949649,-1,-1,-1
242,-1,1664.95,426.862,87.72,171.042,0.941743,-1,-1,-1
242,-1,500.064,438.078,49.436,127.894,0.926444,-1,-1,-1
242,-1,1076.84,451.717,48,131.029,0.73651,-1,-1,-1
242,-1,460.255,447.999,56.593,129.059,0.668498,-1,-1,-1
243,-1,1189.88,431.941,139.72,341.713,0.991423,-1,-1,-1
243,-1,736.711,436.925,135.142,439.947,0.990686,-1,-1,-1
243,-1,845.026,440.563,198.764,503.617,0.983233,-1,-1,-1
243,-1,1842.12,444.633,65.01,214.188,0.961522,-1,-1,-1
243,-1,629.668,454.464,60.751,181.341,0.957587,-1,-1,-1
243,-1,1676.8,438.87,70.12,162.805,0.948609,-1,-1,-1
243,-1,502.655,442.599,47.38,123.259,0.9359,-1,-1,-1
243,-1,1064.68,478.386,50.95,119.51,0.868907,-1,-1,-1
243,-1,1094.85,472.527,51.02,85.008,0.621799,-1,-1,-1
243,-1,460.18,455.148,48.764,108.081,0.593215,-1,-1,-1
243,-1,968.534,471.616,102.286,363.521,0.582988,-1,-1,-1
244,-1,861.604,428.108,216.326,475.408,0.995452,-1,-1,-1
244,-1,747.844,444.836,119.024,427.555,0.993172,-1,-1,-1
244,-1,1197.99,426.029,140.66,349.475,0.993062,-1,-1,-1
244,-1,637.101,461.865,68.177,161.549,0.95798,-1,-1,-1
244,-1,1843.03,445.02,66.31,217.165,0.946113,-1,-1,-1
244,-1,497.892,439.63,51.894,127.576,0.94242,-1,-1,-1
244,-1,1662.26,425.691,90.8,173.206,0.926608,-1,-1,-1
244,-1,1076.67,461.591,50.67,122.941,0.895771,-1,-1,-1
244,-1,460.922,444.879,58.051,130.954,0.655216,-1,-1,-1
244,-1,684.658,477.568,43.596,123.561,0.578713,-1,-1,-1
245,-1,1191.14,421.498,126.28,374.556,0.997913,-1,-1,-1
245,-1,756.91,448.601,144.816,413.105,0.993699,-1,-1,-1
245,-1,868.008,449.068,207.162,424.228,0.991616,-1,-1,-1
245,-1,632.875,466.457,61.73,164.495,0.965931,-1,-1,-1
245,-1,1841,446.898,65.27,212.134,0.955327,-1,-1,-1
245,-1,499.716,442.675,50.78,121.173,0.944832,-1,-1,-1
245,-1,1676.16,440.019,67.39,159.375,0.932252,-1,-1,-1
245,-1,670.437,463.013,48.317,161,0.91948,-1,-1,-1
245,-1,1082.57,460.641,52.23,118.177,0.90711,-1,-1,-1
245,-1,602.916,458.596,60.463,138.722,0.676148,-1,-1,-1
245,-1,460.555,444.142,55.864,126.546,0.674753,-1,-1,-1
246,-1,1198.09,441.516,122.94,369.682,0.996748,-1,-1,-1
246,-1,757.511,433.022,142.38,438.829,0.995032,-1,-1,-1
246,-1,880.506,428.087,205.554,527.123,0.991943,-1,-1,-1
246,-1,634.204,459.853,78.13,177.449,0.97185,-1,-1,-1
246,-1,501.336,440.416,51.039,119.716,0.957137,-1,-1,-1
246,-1,1840.05,455.369,65.59,204.778,0.946216,-1,-1,-1
246,-1,1674.4,435.021,70.66,161.938,0.931051,-1,-1,-1
246,-1,1070.36,456.893,49.46,120.175,0.879813,-1,-1,-1
246,-1,456.329,432.52,61.934,118.826,0.708337,-1,-1,-1
246,-1,605.336,452.143,61.827,149.9,0.59608,-1,-1,-1
247,-1,758.494,441.084,149.916,417.517,0.996174,-1,-1,-1
247,-1,1216.12,425.373,109.25,377.172,0.994892,-1,-1,-1
247,-1,634.582,446.932,78.99,179.729,0.983275,-1,-1,-1
247,-1,893.45,429.517,182.31,514.442,0.980284,-1,-1,-1
247,-1,1841.33,463.636,63.03,189.531,0.956383,-1,-1,-1
247,-1,502.452,439.555,49.126,122.83,0.951559,-1,-1,-1
247,-1,1080.17,464.755,53.49,115.544,0.935173,-1,-1,-1
247,-1,1658.96,418.246,95.29,181.091,0.915032,-1,-1,-1
247,-1,412.661,450.451,58.467,125.887,0.717916,-1,-1,-1
247,-1,458.061,435.779,57.024,123.018,0.671383,-1,-1,-1
248,-1,1218.27,442.668,115.52,373.01,0.996592,-1,-1,-1
248,-1,759.947,438.804,149.585,433.072,0.996538,-1,-1,-1
248,-1,635.186,450.8,77.134,178.279,0.985101,-1,-1,-1
248,-1,1075.38,448.316,67.36,133.331,0.954341,-1,-1,-1
248,-1,1839.98,451.452,66.56,207.654,0.951217,-1,-1,-1
248,-1,899.968,444.041,168.282,381.608,0.950997,-1,-1,-1
248,-1,502.243,438.51,49.461,121.034,0.950927,-1,-1,-1
248,-1,1661.25,418.006,90.56,178.035,0.91975,-1,-1,-1
248,-1,457.608,435.703,58.517,120.981,0.642601,-1,-1,-1
248,-1,410.343,452.009,60.391,118.442,0.599745,-1,-1,-1
249,-1,1208.18,460.401,158.48,336.608,0.996159,-1,-1,-1
249,-1,769.702,438.935,127.141,438.54,0.99492,-1,-1,-1
249,-1,910.86,436.115,191.7,382.07,0.993501,-1,-1,-1
249,-1,639.565,455.283,70.534,182.507,0.984545,-1,-1,-1
249,-1,1075.85,445.012,46.22,130.889,0.960691,-1,-1,-1
249,-1,498.774,442.668,51.241,117.492,0.949923,-1,-1,-1
249,-1,1673.76,436.283,71.9,160.952,0.904275,-1,-1,-1
249,-1,1845.45,449.851,62.54,222.28,0.829,-1,-1,-1
249,-1,461.262,441.607,58.073,117.52,0.691747,-1,-1,-1
250,-1,1219.88,437.42,133.16,372.897,0.996769,-1,-1,-1
250,-1,782.526,440.753,131.03,421.361,0.986222,-1,-1,-1
250,-1,645.546,455.113,68.625,181.97,0.981905,-1,-1,-1
250,-1,912.19,387.94,186.51,552.34,0.977915,-1,-1,-1
250,-1,1084.21,460.195,57.93,139.625,0.962012,-1,-1,-1
250,-1,498.304,438.122,55.707,126.482,0.960799,-1,-1,-1
250,-1,1678.76,432.012,65.85,162.634,0.906314,-1,-1,-1
250,-1,1860.54,419.346,53.61,245.585,0.728801,-1,-1,-1
250,-1,461.328,436.579,58.613,127.463,0.65436,-1,-1,-1
250,-1,936.92,424.374,100.64,237.601,0.586248,-1,-1,-1
251,-1,1216.49,419.348,160.56,395.891,0.997418,-1,-1,-1
251,-1,781.445,440.333,129.3,439.07,0.994424,-1,-1,-1
251,-1,640.369,475.279,80.472,155.565,0.987724,-1,-1,-1
251,-1,905.158,426.251,193.602,587.979,0.980783,-1,-1,-1
251,-1,1675.08,429.565,67.84,163.328,0.968765,-1,-1,-1
251,-1,1083.82,459.925,57.62,133.469,0.946884,-1,-1,-1
251,-1,492.684,436.566,54.44,128.882,0.922206,-1,-1,-1
251,-1,1837.1,434.378,75.65,262.329,0.778864,-1,-1,-1
251,-1,939.315,406.716,110.895,304.86,0.748578,-1,-1,-1
251,-1,457.842,444.185,57.655,141.974,0.713753,-1,-1,-1
252,-1,1217.35,424.501,176.92,386.716,0.997412,-1,-1,-1
252,-1,779.277,435.347,154.793,438.987,0.994871,-1,-1,-1
252,-1,922.331,425.754,182.189,620.176,0.994231,-1,-1,-1
252,-1,652.547,451.983,68.937,174.329,0.987022,-1,-1,-1
252,-1,1677.98,432.863,63.39,156.51,0.959617,-1,-1,-1
252,-1,504.02,447.396,39.999,119.685,0.934918,-1,-1,-1
252,-1,1067.75,454.137,59.58,137.041,0.821466,-1,-1,-1
252,-1,1829.15,432.994,83.69,292.87,0.803323,-1,-1,-1
252,-1,460.476,444.112,53.297,139.194,0.603661,-1,-1,-1
252,-1,935.258,422.918,95.502,189.403,0.527387,-1,-1,-1
253,-1,1231.8,436.34,164.26,361.98,0.996778,-1,-1,-1
253,-1,785.51,456.098,151.395,436.669,0.993642,-1,-1,-1
253,-1,648.129,464.413,92.599,155.961,0.983598,-1,-1,-1
253,-1,934.752,358.326,175.968,717.544,0.966728,-1,-1,-1
253,-1,489.977,442.596,57.695,134.944,0.957952,-1,-1,-1
253,-1,1664.08,418.839,89.06,169.762,0.938517,-1,-1,-1
253,-1,1832.72,442.203,82.01,325.984,0.899557,-1,-1,-1
253,-1,527.054,433.246,39.118,117.579,0.855306,-1,-1,-1
253,-1,943.973,422.392,89.557,164.835,0.5768,-1,-1,-1
253,-1,463.735,440.497,51.474,144.668,0.573637,-1,-1,-1
254,-1,1238.94,435.308,166.58,392.479,0.996621,-1,-1,-1
254,-1,779.906,436.407,133.606,456.519,0.993827,-1,-1,-1
254,-1,914.613,445.234,211.137,559.586,0.991839,-1,-1,-1
254,-1,637.815,461.088,95.948,144.643,0.979361,-1,-1,-1
254,-1,1661.78,424.799,88.31,164.316,0.947937,-1,-1,-1
254,-1,506.546,445.274,42.992,111.812,0.939747,-1,-1,-1
254,-1,1833.39,414.196,85.61,379.114,0.860866,-1,-1,-1
254,-1,1058.01,463.833,67.28,134.938,0.701332,-1,-1,-1
254,-1,462.888,440.938,51.148,142,0.549759,-1,-1,-1
255,-1,793.208,420.653,138.051,482.751,0.996244,-1,-1,-1
255,-1,1226.07,446.417,197.67,380.854,0.996237,-1,-1,-1
255,-1,926.7,470.479,195.62,564.021,0.985803,-1,-1,-1
255,-1,1829.43,429.55,89.57,360.342,0.979818,-1,-1,-1
255,-1,658.034,476.44,85.373,134.732,0.977309,-1,-1,-1
255,-1,508.426,445.681,41.738,109.192,0.931471,-1,-1,-1
255,-1,1682.5,421.061,90.39,173.496,0.900877,-1,-1,-1
255,-1,396.47,462.064,65.386,118.836,0.621998,-1,-1,-1
255,-1,1061.44,459.495,60.36,111.604,0.523453,-1,-1,-1
256,-1,1229.61,438.817,209.69,381.217,0.996999,-1,-1,-1
256,-1,799.648,428.129,129.807,469.395,0.995867,-1,-1,-1
256,-1,1819.65,419.337,99.35,370.777,0.992796,-1,-1,-1
256,-1,932.236,478.851,202.354,572.979,0.988346,-1,-1,-1
256,-1,647.639,466.704,91.609,166.99,0.985365,-1,-1,-1
256,-1,1677.16,418.65,86.61,171.715,0.948676,-1,-1,-1
256,-1,505.222,446.529,36.589,121.92,0.923466,-1,-1,-1
256,-1,377.848,469.161,68.529,119.065,0.592358,-1,-1,-1
257,-1,807.057,429.154,130.009,451.078,0.995349,-1,-1,-1
257,-1,1246.53,430.9,178.08,383.04,0.994886,-1,-1,-1
257,-1,1814.59,435.192,104.41,345.211,0.991596,-1,-1,-1
257,-1,918.768,461.68,211.082,589.56,0.982924,-1,-1,-1
257,-1,660.476,454.954,78.187,174.094,0.944553,-1,-1,-1
257,-1,504.108,449.566,36.886,119.597,0.919629,-1,-1,-1
257,-1,1673.53,435.868,87.54,156.867,0.919051,-1,-1,-1
257,-1,399.88,464.051,60.748,120.26,0.775516,-1,-1,-1
258,-1,1263.89,408.354,170.07,414.717,0.996909,-1,-1,-1
258,-1,1806.03,387.927,112.97,409.046,0.995549,-1,-1,-1
258,-1,805.71,441.097,127.308,459.184,0.99434,-1,-1,-1
258,-1,652.395,473.396,74.65,165.198,0.985496,-1,-1,-1
258,-1,929.368,481.61,208.392,573.26,0.959482,-1,-1,-1
258,-1,1678.25,442.205,67.36,155.139,0.953153,-1,-1,-1
258,-1,508.71,451.628,38.979,108.464,0.907613,-1,-1,-1
258,-1,375.619,454.536,80.536,110.356,0.621901,-1,-1,-1
259,-1,1779.2,420.747,139.8,366.297,0.997288,-1,-1,-1
259,-1,1277.97,422.218,159.53,394.43,0.996253,-1,-1,-1
259,-1,808.857,441.922,124.316,456.714,0.994541,-1,-1,-1
259,-1,935.825,429.542,203.695,607.588,0.984236,-1,-1,-1
259,-1,660.599,453.894,60.02,170.331,0.975065,-1,-1,-1
259,-1,1665.06,419.825,90.35,175.844,0.952907,-1,-1,-1
259,-1,504.573,446.622,39.528,126.009,0.92657,-1,-1,-1
259,-1,374.07,457.791,71.873,133.586,0.510852,-1,-1,-1
260,-1,1770.56,416.059,142.4,355.286,0.995834,-1,-1,-1
260,-1,1294.3,422.673,138.9,384.762,0.994317,-1,-1,-1
260,-1,805.941,427.223,128.819,489.337,0.992833,-1,-1,-1
260,-1,941.056,430.912,200.114,597.278,0.977813,-1,-1,-1
260,-1,659.625,456.709,65.035,171.582,0.977089,-1,-1,-1
260,-1,1676.92,435.055,71.98,159.533,0.964487,-1,-1,-1
260,-1,505.05,448.512,43.158,109.089,0.932673,-1,-1,-1
260,-1,360.83,463.748,71.175,119.695,0.732284,-1,-1,-1
261,-1,1302.26,448.132,132.42,372.278,0.995927,-1,-1,-1
261,-1,801.758,428.903,134.504,478.695,0.99326,-1,-1,-1
261,-1,916.546,434.713,208.204,600.687,0.992118,-1,-1,-1
261,-1,1731.35,431.249,187.65,343.736,0.99082,-1,-1,-1
261,-1,662.211,456.85,65.639,176.193,0.967557,-1,-1,-1
261,-1,1678.95,443.849,65.32,151.351,0.958339,-1,-1,-1
261,-1,508.007,448.982,41.523,124.132,0.936184,-1,-1,-1
261,-1,377.555,460.285,67.972,104.884,0.681149,-1,-1,-1
262,-1,1309.35,428.671,131.47,407.224,0.997157,-1,-1,-1
262,-1,809.604,423.377,136.633,506.632,0.992002,-1,-1,-1
262,-1,1724.89,440.331,192.69,332.948,0.987441,-1,-1,-1
262,-1,934.483,438.928,179.517,597.592,0.975194,-1,-1,-1
262,-1,644.945,466.88,95.135,162.622,0.966715,-1,-1,-1
262,-1,1662.52,424.296,88.41,174.466,0.949761,-1,-1,-1
262,-1,487.103,440.167,55.925,134.281,0.937737,-1,-1,-1
262,-1,714.088,485.518,43.782,123.639,0.503913,-1,-1,-1
263,-1,1320.84,401.409,119.86,428.445,0.993952,-1,-1,-1
263,-1,813.837,416.565,114.54,516.007,0.993063,-1,-1,-1
263,-1,929.667,410.443,210.183,623.607,0.990651,-1,-1,-1
263,-1,1681.75,413.598,200.41,354.649,0.980664,-1,-1,-1
263,-1,662.842,462.035,88.834,172.163,0.979473,-1,-1,-1
263,-1,481.255,456.821,55.933,109.622,0.941139,-1,-1,-1
263,-1,1668.37,424.463,99.65,191.539,0.902732,-1,-1,-1
263,-1,1847.54,425.425,67.69,349.69,0.771439,-1,-1,-1
263,-1,361.051,448.228,79.698,130.202,0.663843,-1,-1,-1
264,-1,949.886,414.389,185.984,604.221,0.994406,-1,-1,-1
264,-1,813.68,435.693,116.297,468.344,0.99281,-1,-1,-1
264,-1,1315.61,430.149,133.24,379.428,0.991323,-1,-1,-1
264,-1,660.549,463.095,92.359,181.661,0.981055,-1,-1,-1
264,-1,1684.63,418.429,189.54,343.83,0.965967,-1,-1,-1
264,-1,481.177,455.13,56.859,109.127,0.936007,-1,-1,-1
264,-1,1668.41,429.692,76.79,158.49,0.83075,-1,-1,-1
264,-1,364.001,458.453,78.711,128.892,0.771816,-1,-1,-1
264,-1,1839.91,459.74,76.35,282.175,0.771044,-1,-1,-1
265,-1,806.989,428.937,125.782,499.753,0.993079,-1,-1,-1
265,-1,921.671,468.078,222.559,414.313,0.987197,-1,-1,-1
265,-1,1323.69,441.634,139.2,404.418,0.978126,-1,-1,-1
265,-1,663.71,467.376,87.267,173.599,0.976085,-1,-1,-1
265,-1,1673.69,405.169,166.15,348.08,0.975113,-1,-1,-1
265,-1,499.342,438.411,55.152,131.928,0.96264,-1,-1,-1
265,-1,1846.55,442.498,69.33,235.72,0.912871,-1,-1,-1
265,-1,1661.44,405.329,91.73,199.998,0.811753,-1,-1,-1
265,-1,1280.36,421.509,55.23,115.085,0.775479,-1,-1,-1
265,-1,456.1,456.308,53.468,115.786,0.578324,-1,-1,-1
266,-1,1340.52,440.647,147.58,386.985,0.996915,-1,-1,-1
266,-1,800.552,433.474,136.797,468.49,0.993942,-1,-1,-1
266,-1,666.165,457.787,84.907,179.518,0.981827,-1,-1,-1
266,-1,933.344,425.611,211.486,570.514,0.980336,-1,-1,-1
266,-1,1665.64,423.093,145.59,334.84,0.97164,-1,-1,-1
266,-1,498.081,437.378,54.694,134.324,0.953279,-1,-1,-1
266,-1,1847.14,453.123,67.72,209.666,0.938029,-1,-1,-1
266,-1,1652.65,423.259,65.72,168.024,0.66521,-1,-1,-1
266,-1,456.178,458.894,52.071,110.434,0.585635,-1,-1,-1
267,-1,1348.65,418.399,130.6,422.351,0.997355,-1,-1,-1
267,-1,817.705,422.129,113.437,494.579,0.994657,-1,-1,-1
267,-1,934.486,421.879,206.164,567.282,0.992602,-1,-1,-1
267,-1,1677.66,416.137,127.68,341.817,0.987536,-1,-1,-1
267,-1,668.164,452.336,79.791,185.69,0.980846,-1,-1,-1
267,-1,486.858,442.974,57.886,132.118,0.949958,-1,-1,-1
267,-1,1847.57,450.52,64.36,211.858,0.948699,-1,-1,-1
267,-1,456.846,466.14,52.096,107.617,0.636786,-1,-1,-1
267,-1,367.866,462.098,75.274,123.067,0.57096,-1,-1,-1
268,-1,1362.12,426.26,122.21,440.763,0.997984,-1,-1,-1
268,-1,938.765,428.772,228.565,544.375,0.996255,-1,-1,-1
268,-1,812.209,416.226,124.601,499.134,0.996091,-1,-1,-1
268,-1,671.958,461.142,77.208,182.528,0.978673,-1,-1,-1
268,-1,1660.67,419.266,133.27,339.442,0.963589,-1,-1,-1
268,-1,1844.13,448.969,67.42,202.256,0.961103,-1,-1,-1
268,-1,498.551,435.096,51.853,131.21,0.942411,-1,-1,-1
268,-1,371.173,467.186,72.932,118.894,0.654482,-1,-1,-1
268,-1,1096.07,467.927,59.84,122.461,0.650199,-1,-1,-1
268,-1,457.674,436.921,52.461,124.927,0.514942,-1,-1,-1
269,-1,1356.08,426.984,145.96,417.667,0.997039,-1,-1,-1
269,-1,952.515,433.052,191.115,566.844,0.996135,-1,-1,-1
269,-1,815.339,431.823,120.925,489.298,0.995157,-1,-1,-1
269,-1,1654.98,385.11,134.81,386.425,0.979334,-1,-1,-1
269,-1,676.477,465.611,72.969,172.438,0.973765,-1,-1,-1
269,-1,1843.16,453.085,66.34,197.894,0.958942,-1,-1,-1
269,-1,501.763,439.443,51.139,125.733,0.953545,-1,-1,-1
269,-1,374.547,467.888,68.923,113.494,0.65939,-1,-1,-1
270,-1,1356.12,426.153,158.22,428.316,0.996135,-1,-1,-1
270,-1,811.448,438.98,131.237,480.376,0.995332,-1,-1,-1
270,-1,940.546,421.954,210.074,555.117,0.99338,-1,-1,-1
270,-1,676.654,462.705,72.972,165.115,0.976445,-1,-1,-1
270,-1,1648.54,421.153,126.21,347.557,0.962532,-1,-1,-1
270,-1,1844.95,452.495,63.67,195.627,0.956145,-1,-1,-1
270,-1,503.496,445.535,44.204,107.058,0.954105,-1,-1,-1
270,-1,374.561,466.387,69.322,114.222,0.649604,-1,-1,-1
270,-1,454.91,461.17,51.058,105.532,0.621801,-1,-1,-1
271,-1,1341.38,446.393,198.94,387.578,0.996978,-1,-1,-1
271,-1,818.276,422.425,125.775,516.381,0.996584,-1,-1,-1
271,-1,1639.26,415.13,114.39,339.258,0.995331,-1,-1,-1
271,-1,956.296,430.551,180.654,568.019,0.993729,-1,-1,-1
271,-1,686.109,471.107,64.762,137.509,0.958729,-1,-1,-1
271,-1,1843.97,446.337,66.21,210.047,0.946833,-1,-1,-1
271,-1,501.844,442.325,42.915,106.317,0.932689,-1,-1,-1
271,-1,375.058,467.626,68.683,112.859,0.694542,-1,-1,-1
271,-1,457.487,448.273,53.608,129.454,0.551571,-1,-1,-1
272,-1,1372.34,428.016,161.09,406.238,0.997058,-1,-1,-1
272,-1,1621.23,404.253,123.77,358.129,0.996506,-1,-1,-1
272,-1,815.036,434.74,137.259,505.954,0.995653,-1,-1,-1
272,-1,949.027,416.539,182.613,570.441,0.964099,-1,-1,-1
272,-1,1842.77,443.673,68.88,209.387,0.958423,-1,-1,-1
272,-1,681.914,468.629,71.737,153.718,0.956578,-1,-1,-1
272,-1,494.175,434.963,56.411,135.503,0.942742,-1,-1,-1
272,-1,361.89,464.642,74.072,113.973,0.866778,-1,-1,-1
272,-1,1287.06,437.389,57.15,99.644,0.819257,-1,-1,-1
272,-1,458.161,439.422,51.905,128.396,0.527342,-1,-1,-1
273,-1,1383.66,439.379,157.34,416.694,0.996961,-1,-1,-1
273,-1,811.736,438.605,140.277,507.023,0.996315,-1,-1,-1
273,-1,955.703,413.671,173.157,582.539,0.994567,-1,-1,-1
273,-1,1625.73,422.178,108.63,341.749,0.992899,-1,-1,-1
273,-1,677.612,473.073,72.567,144.054,0.965113,-1,-1,-1
273,-1,1842.94,445.451,66.51,208.707,0.955638,-1,-1,-1
273,-1,493.855,435.75,54.823,135.438,0.931264,-1,-1,-1
273,-1,1288.02,446.958,55.85,94.763,0.911868,-1,-1,-1
273,-1,361.736,464.424,73.583,114.808,0.884367,-1,-1,-1
273,-1,455.192,449.71,54.295,126.446,0.503477,-1,-1,-1
274,-1,1612.45,407.32,129.52,338.291,0.993839,-1,-1,-1
274,-1,814.137,428.782,135.016,500.08,0.992009,-1,-1,-1
274,-1,930.828,398.266,223.912,545.747,0.990845,-1,-1,-1
274,-1,1362.45,434.662,203.33,422.677,0.987288,-1,-1,-1
274,-1,679.722,469.456,83.4,156.563,0.971461,-1,-1,-1
274,-1,1861.97,440.649,52.7,202.579,0.947527,-1,-1,-1
274,-1,1287.55,441.536,56.24,94.879,0.93175,-1,-1,-1
274,-1,493.479,434.332,55.739,137.567,0.930942,-1,-1,-1
274,-1,361.86,463.458,70.674,114.614,0.883166,-1,-1,-1
274,-1,458.333,440.255,52.036,125.785,0.53967,-1,-1,-1
275,-1,1389.01,430.081,158.35,441.785,0.996764,-1,-1,-1
275,-1,1601.98,403.763,139.87,355.13,0.996694,-1,-1,-1
275,-1,809.426,419.007,139.934,529.218,0.990677,-1,-1,-1
275,-1,965.486,403.023,148.564,586.596,0.987156,-1,-1,-1
275,-1,680.056,468.325,87.272,158.849,0.974753,-1,-1,-1
275,-1,1302.89,422.615,63.07,125.179,0.962514,-1,-1,-1
275,-1,1845.46,441.969,65.37,223.916,0.934761,-1,-1,-1
275,-1,493.178,429.562,55.287,142.875,0.921774,-1,-1,-1
275,-1,361.75,459.636,70.694,120.865,0.878082,-1,-1,-1
275,-1,456.667,446.383,54.438,129.324,0.516948,-1,-1,-1
276,-1,817.813,425.885,138.84,500.307,0.997405,-1,-1,-1
276,-1,1403.46,441.85,159.93,446.651,0.996173,-1,-1,-1
276,-1,1571.28,424.252,159.71,322.632,0.99599,-1,-1,-1
276,-1,966.589,428.118,201.791,532.856,0.986843,-1,-1,-1
276,-1,684.844,476.084,82.498,160.967,0.970359,-1,-1,-1
276,-1,1301,438.139,53.93,99.845,0.96033,-1,-1,-1
276,-1,1845.68,446.138,64.02,213.148,0.939726,-1,-1,-1
276,-1,493.638,430.762,56.283,140.86,0.936381,-1,-1,-1
276,-1,376.138,465.129,66.665,107.286,0.637994,-1,-1,-1
276,-1,459.361,444.135,54.825,129.389,0.511065,-1,-1,-1
277,-1,800.751,415.619,158.104,508.538,0.997374,-1,-1,-1
277,-1,1415.77,409.727,164.08,447.126,0.996246,-1,-1,-1
277,-1,1578.06,418.103,132.37,355.285,0.994118,-1,-1,-1
277,-1,966.927,421.48,176.393,516.35,0.993375,-1,-1,-1
277,-1,1289.84,445.903,56.36,88.762,0.951546,-1,-1,-1
277,-1,688.378,481.045,82.458,154.763,0.942787,-1,-1,-1
277,-1,1846.52,443.943,65.2,220.016,0.941993,-1,-1,-1
277,-1,484.189,455.737,53.134,104.554,0.930878,-1,-1,-1
277,-1,670.32,460.478,52.459,131.776,0.733807,-1,-1,-1
277,-1,1700.78,408.092,71.04,193.138,0.534432,-1,-1,-1
278,-1,1417.75,403.095,205.11,455.827,0.994499,-1,-1,-1
278,-1,1563.91,417.36,139.2,332.122,0.989612,-1,-1,-1
278,-1,794.85,420.066,167.512,522.004,0.988543,-1,-1,-1
278,-1,966.478,444.363,184.412,406.005,0.979325,-1,-1,-1
278,-1,690.725,477.37,84.01,143.591,0.975467,-1,-1,-1
278,-1,1844.06,442.565,66.69,212.037,0.947319,-1,-1,-1
278,-1,508.506,442.554,42.131,122.483,0.936825,-1,-1,-1
278,-1,1306.5,437.197,54.3,94.787,0.895423,-1,-1,-1
278,-1,1678.71,415.722,88.94,183.853,0.784094,-1,-1,-1
278,-1,1118.37,465.755,58.6,135.075,0.755979,-1,-1,-1
278,-1,360.544,462.725,68.263,114.275,0.752985,-1,-1,-1
278,-1,672.179,457.514,54.683,133.628,0.743155,-1,-1,-1
278,-1,468.853,436.92,63.885,130.593,0.52991,-1,-1,-1
279,-1,823.044,458.008,137.601,463.556,0.996563,-1,-1,-1
279,-1,1427.69,413.898,181.15,422.715,0.994274,-1,-1,-1
279,-1,955.448,445.179,218.682,371.872,0.984268,-1,-1,-1
279,-1,690.79,464.607,87.115,168.497,0.97993,-1,-1,-1
279,-1,1534.95,419.645,139.36,338.067,0.977052,-1,-1,-1
279,-1,486.709,456.712,51.89,99.806,0.939116,-1,-1,-1
279,-1,1844.29,448.746,65.36,205.805,0.935283,-1,-1,-1
279,-1,1680.02,418.687,82.35,197.966,0.882832,-1,-1,-1
279,-1,364.425,459.988,68.599,111.027,0.814968,-1,-1,-1
279,-1,1097.43,453.784,68.77,152.552,0.592996,-1,-1,-1
279,-1,1310.91,432.08,52.47,90.098,0.558339,-1,-1,-1
280,-1,819.359,444.861,142.806,473.218,0.991798,-1,-1,-1
280,-1,1437.12,432.833,210.57,401.554,0.990983,-1,-1,-1
280,-1,966.291,454.09,188.689,386.322,0.979506,-1,-1,-1
280,-1,683.512,467.542,97.679,162.849,0.966229,-1,-1,-1
280,-1,1843.44,443.579,67.22,212.906,0.94912,-1,-1,-1
280,-1,485.586,458.975,51.945,98.439,0.930557,-1,-1,-1
280,-1,1676.22,413.888,93.23,183.184,0.871195,-1,-1,-1
280,-1,362.212,458.751,67.323,111.076,0.743144,-1,-1,-1
280,-1,1112.75,462.186,62.29,141.981,0.727221,-1,-1,-1
280,-1,1572.95,412.887,80.41,321.139,0.604407,-1,-1,-1
281,-1,813.245,438.008,151.478,494.394,0.996997,-1,-1,-1
281,-1,1440.2,410.513,201.42,450.029,0.990797,-1,-1,-1
281,-1,969.005,447.195,179.785,390.104,0.983956,-1,-1,-1
281,-1,1843.85,445.572,66.86,208.499,0.937288,-1,-1,-1
281,-1,485.674,455.456,52.794,100.48,0.936458,-1,-1,-1
281,-1,692.662,470.259,77.906,160.607,0.920144,-1,-1,-1
281,-1,1671.47,410.887,102.5,182.482,0.899145,-1,-1,-1
281,-1,1118.45,464.521,61.83,146.944,0.871482,-1,-1,-1
281,-1,738.933,465.461,54.546,147.153,0.755833,-1,-1,-1
281,-1,673.77,449.644,50.725,146.763,0.713086,-1,-1,-1
281,-1,358.241,463.484,66.005,106.329,0.515374,-1,-1,-1
282,-1,1452.23,423.885,188.73,433.072,0.995724,-1,-1,-1
282,-1,819.361,412.136,148.096,522.918,0.994481,-1,-1,-1
282,-1,989.9,462.001,198.92,363.884,0.983517,-1,-1,-1
282,-1,694.324,470.506,68.56,153.288,0.960726,-1,-1,-1
282,-1,1650.69,415.489,101.72,185.559,0.960099,-1,-1,-1
282,-1,1843.04,446.174,66.06,207.547,0.956567,-1,-1,-1
282,-1,487.06,458.727,51.348,101.875,0.922934,-1,-1,-1
282,-1,1109.1,450.042,70.65,164.738,0.822953,-1,-1,-1
282,-1,677.203,477.771,41.602,136.798,0.681047,-1,-1,-1
282,-1,749.852,456.482,54.04,156.384,0.653517,-1,-1,-1
283,-1,1459.81,419.075,168.1,440.029,0.997093,-1,-1,-1
283,-1,807.291,413.732,141.931,534.736,0.994707,-1,-1,-1
283,-1,985.588,399.9,167.842,589.835,0.978363,-1,-1,-1
283,-1,1652.22,409.696,106.36,188.517,0.973178,-1,-1,-1
283,-1,1843.34,438.57,68.33,216.766,0.962999,-1,-1,-1
283,-1,693.209,453.443,85.708,178.083,0.945906,-1,-1,-1
283,-1,488.946,456.619,50.7,99.081,0.92691,-1,-1,-1
283,-1,518.339,442.299,46.323,117.743,0.823569,-1,-1,-1
283,-1,746.3,465.61,58.21,138.838,0.822947,-1,-1,-1
283,-1,1112.21,464.495,61.91,147.551,0.796525,-1,-1,-1
283,-1,681.754,481.165,42.061,132.737,0.66482,-1,-1,-1
283,-1,383.269,462.202,57.728,99.676,0.617616,-1,-1,-1
284,-1,1471.48,412.995,153.05,435.587,0.998842,-1,-1,-1
284,-1,818.882,424.031,154.501,499.118,0.995788,-1,-1,-1
284,-1,980.157,449.32,177.393,406.976,0.972873,-1,-1,-1
284,-1,712.273,462.184,73.611,160.611,0.960319,-1,-1,-1
284,-1,1669.87,419.614,81.89,175.566,0.958304,-1,-1,-1
284,-1,1841.85,432.698,70.53,226.979,0.953569,-1,-1,-1
284,-1,489.597,453.336,52.546,103.666,0.928907,-1,-1,-1
284,-1,1116.49,461.808,63.39,153.003,0.770531,-1,-1,-1
284,-1,679.741,481.082,46.767,141.197,0.605391,-1,-1,-1
284,-1,381.861,457.579,57.425,106.03,0.592605,-1,-1,-1
285,-1,1473.68,424.789,150.93,436.344,0.998322,-1,-1,-1
285,-1,821.364,427.959,154.047,508.34,0.995558,-1,-1,-1
285,-1,715.076,453.007,76.538,165.67,0.979668,-1,-1,-1
285,-1,973.443,457.841,197.917,361.454,0.966739,-1,-1,-1
285,-1,1842.6,428.455,69.96,231.05,0.955495,-1,-1,-1
285,-1,1665.62,422.521,91.72,175.187,0.936704,-1,-1,-1
285,-1,488.616,429.392,59.074,131.683,0.92651,-1,-1,-1
285,-1,1117.65,466.921,59.08,151.332,0.773248,-1,-1,-1
285,-1,379.29,458.606,58.286,107.468,0.711959,-1,-1,-1
285,-1,676.372,487.567,45.491,132.788,0.703584,-1,-1,-1
286,-1,1479.95,427.747,157.88,463.767,0.998029,-1,-1,-1
286,-1,840.524,415.84,151.309,524.129,0.996795,-1,-1,-1
286,-1,718.614,471.482,68.188,161.272,0.97117,-1,-1,-1
286,-1,1668.17,412.954,86.53,166.683,0.955841,-1,-1,-1
286,-1,1844.09,435.836,67.9,224.732,0.954129,-1,-1,-1
286,-1,975.885,459.242,202.415,383.307,0.949958,-1,-1,-1
286,-1,508.879,445.158,52.356,116.353,0.909487,-1,-1,-1
286,-1,1118.2,466.756,60.24,160.684,0.826017,-1,-1,-1
286,-1,672.465,492.792,44.957,129.869,0.779464,-1,-1,-1
286,-1,381.454,459.077,56.827,105.092,0.748882,-1,-1,-1
286,-1,477.128,437.766,57.052,124.792,0.57383,-1,-1,-1
287,-1,1476.45,405.714,176.02,463.566,0.99833,-1,-1,-1
287,-1,820.885,443.191,160.256,500.273,0.993996,-1,-1,-1
287,-1,709.022,466.344,78.58,177.701,0.988293,-1,-1,-1
287,-1,975.618,450.574,210.022,397.127,0.961433,-1,-1,-1
287,-1,1842.29,436.71,69.32,225.291,0.956003,-1,-1,-1
287,-1,1668.94,425.526,76.08,160.091,0.920144,-1,-1,-1
287,-1,495.447,440.106,47.342,129.112,0.889037,-1,-1,-1
287,-1,1112.04,472.225,62.11,155.967,0.729719,-1,-1,-1
287,-1,381.426,463.797,56.667,99.363,0.713545,-1,-1,-1
287,-1,685,478.54,41.829,145.911,0.681679,-1,-1,-1
288,-1,1487.17,429.454,183.19,440.887,0.997225,-1,-1,-1
288,-1,825.504,454.437,162.981,487.993,0.994853,-1,-1,-1
288,-1,722.455,470.625,71.153,167.244,0.981795,-1,-1,-1
288,-1,1840.78,451.964,69.86,211.047,0.962032,-1,-1,-1
288,-1,993.598,399.116,184.692,623.004,0.951737,-1,-1,-1
288,-1,1653.26,419.88,91.89,169.467,0.948367,-1,-1,-1
288,-1,483.453,449.043,51.656,102.643,0.877685,-1,-1,-1
288,-1,676.723,484.226,41.514,133.132,0.809064,-1,-1,-1
288,-1,1114.63,469.187,61.62,152.077,0.692371,-1,-1,-1
288,-1,383.144,463.557,55.581,100.158,0.642085,-1,-1,-1
288,-1,760.418,448.796,64.535,232.544,0.62591,-1,-1,-1
288,-1,694.782,463.82,59.268,156.145,0.526241,-1,-1,-1
289,-1,1487.02,418.218,177.31,460.063,0.998077,-1,-1,-1
289,-1,835.82,448.648,154.744,492.408,0.995296,-1,-1,-1
289,-1,982.745,399.465,228.025,671.245,0.986983,-1,-1,-1
289,-1,719.834,468.75,76.782,175.734,0.972945,-1,-1,-1
289,-1,1668.17,424.874,102.16,167.608,0.957277,-1,-1,-1
289,-1,1839.62,437.792,73.23,224.234,0.956077,-1,-1,-1
289,-1,493.258,437.644,47.16,130.87,0.878661,-1,-1,-1
289,-1,675.684,480.985,41.786,122.516,0.817031,-1,-1,-1
289,-1,361.585,465.19,60.243,104.383,0.626964,-1,-1,-1
289,-1,469.752,444.979,44.921,119.972,0.504141,-1,-1,-1
290,-1,836.051,425.696,154.231,518.488,0.997082,-1,-1,-1
290,-1,1489.62,410.349,212.85,461.442,0.994695,-1,-1,-1
290,-1,992.076,408.185,205.424,628.675,0.98838,-1,-1,-1
290,-1,738.323,452.776,68.232,186.662,0.975803,-1,-1,-1
290,-1,1844.77,440.959,65.44,219.167,0.946698,-1,-1,-1
290,-1,1667.89,421.341,104.85,171.534,0.94088,-1,-1,-1
290,-1,1448.69,410.602,101.85,348.055,0.876422,-1,-1,-1
290,-1,494.353,439.108,46.988,130.772,0.876016,-1,-1,-1
290,-1,676.322,484.574,39.23,121.724,0.839796,-1,-1,-1
290,-1,703.164,474.154,41.434,160.182,0.77535,-1,-1,-1
290,-1,378.343,460.391,57.126,102.1,0.682562,-1,-1,-1
291,-1,837.873,436.314,152.164,494.193,0.996133,-1,-1,-1
291,-1,1510.07,417.902,213.31,445.917,0.990654,-1,-1,-1
291,-1,983.219,430.408,208.391,616.542,0.989185,-1,-1,-1
291,-1,742.559,455.595,90.719,177.671,0.976207,-1,-1,-1
291,-1,1449.26,422.005,100.26,296.382,0.970462,-1,-1,-1
291,-1,1841.99,446.844,66.62,206.968,0.959996,-1,-1,-1
291,-1,1668.34,395.098,109.57,175.92,0.914841,-1,-1,-1
291,-1,495.437,443.459,48.027,124.323,0.909541,-1,-1,-1
291,-1,1367.28,421.689,63.86,129.48,0.832823,-1,-1,-1
291,-1,679.386,481.122,37.364,122.463,0.816711,-1,-1,-1
291,-1,524.566,450.772,38.441,112.013,0.75867,-1,-1,-1
291,-1,702.82,469.917,41.522,162.722,0.733006,-1,-1,-1
292,-1,832.022,441.986,163.198,498.73,0.993162,-1,-1,-1
292,-1,988.206,431.059,191.324,615.331,0.987953,-1,-1,-1
292,-1,1496.29,432.46,211.28,443.429,0.98471,-1,-1,-1
292,-1,743.972,448.188,67.235,188.061,0.972176,-1,-1,-1
292,-1,1842.91,441.096,67.42,219.256,0.954075,-1,-1,-1
292,-1,1441.92,424.9,102.94,300.356,0.941947,-1,-1,-1
292,-1,485.643,451.752,50.32,99.771,0.934276,-1,-1,-1
292,-1,1353.21,425.329,69.11,122.482,0.921863,-1,-1,-1
292,-1,672.958,477.279,40.996,110.294,0.818996,-1,-1,-1
292,-1,518.379,449.194,40.805,118.1,0.774195,-1,-1,-1
292,-1,1691.17,423.882,80.2,175.084,0.772269,-1,-1,-1
292,-1,700.887,477.996,40.692,149.853,0.708127,-1,-1,-1
292,-1,379.49,463.376,56.013,98.161,0.659929,-1,-1,-1
293,-1,834.299,424.864,155.284,505.116,0.994253,-1,-1,-1
293,-1,990.435,420.061,196.185,620.659,0.988615,-1,-1,-1
293,-1,745.169,442.054,64.31,200.865,0.980019,-1,-1,-1
293,-1,1548.26,454.543,151.89,381.341,0.973125,-1,-1,-1
293,-1,1842.22,436.495,68.89,218.967,0.955579,-1,-1,-1
293,-1,485.134,450.502,53.96,103.444,0.949501,-1,-1,-1
293,-1,1355.2,421.816,72.33,125.655,0.940953,-1,-1,-1
293,-1,1429.01,422.237,117.48,294.959,0.929824,-1,-1,-1
293,-1,515.542,449.862,45.912,117.763,0.793414,-1,-1,-1
293,-1,670.64,474.979,40,113.807,0.728729,-1,-1,-1
293,-1,363.617,463.664,55.989,97.533,0.643658,-1,-1,-1
293,-1,1676.02,414.846,91.2,172.426,0.636782,-1,-1,-1
293,-1,690.649,459.994,45.336,138.88,0.608163,-1,-1,-1
294,-1,848.418,456.864,146.076,469.661,0.995473,-1,-1,-1
294,-1,1003.72,401.318,204.87,667.862,0.988444,-1,-1,-1
294,-1,1552.4,459.627,175.19,412.408,0.984515,-1,-1,-1
294,-1,1423.02,435.38,111.82,277.615,0.984247,-1,-1,-1
294,-1,747.527,450.11,62.941,185.794,0.979205,-1,-1,-1
294,-1,1845.43,446.713,62.29,209.572,0.94672,-1,-1,-1
294,-1,482.602,432.768,61.81,130.689,0.940522,-1,-1,-1
294,-1,1365.13,423.436,55.27,115.754,0.854098,-1,-1,-1
294,-1,677.754,471.129,36.452,126.075,0.774605,-1,-1,-1
294,-1,362.582,462.59,58.141,100.525,0.753987,-1,-1,-1
294,-1,703.126,479.033,38.652,135.604,0.561058,-1,-1,-1
295,-1,858.635,449.798,133.681,496.806,0.994873,-1,-1,-1
295,-1,997.734,406.602,174.806,586.395,0.993421,-1,-1,-1
295,-1,1405.41,441.619,122.48,274.18,0.991676,-1,-1,-1
295,-1,1534.89,416.632,205.84,469.043,0.984504,-1,-1,-1
295,-1,751.267,463.489,59.78,181.535,0.97785,-1,-1,-1
295,-1,1845.15,455.454,63.47,200.046,0.951202,-1,-1,-1
295,-1,491.496,443.637,51.133,127.695,0.939708,-1,-1,-1
295,-1,683.19,470.379,36.406,123.214,0.805178,-1,-1,-1
295,-1,358.969,474.079,70.212,110.481,0.800595,-1,-1,-1
295,-1,1369.09,422.924,56.44,116.24,0.584102,-1,-1,-1
296,-1,990.911,406.043,187.549,624.617,0.996952,-1,-1,-1
296,-1,860.665,469.416,145.435,466.177,0.992717,-1,-1,-1
296,-1,1399.78,435.97,117.29,291.946,0.990881,-1,-1,-1
296,-1,1534.49,426.387,215.66,461.253,0.987485,-1,-1,-1
296,-1,1861.15,445.51,49.21,201.353,0.957567,-1,-1,-1
296,-1,735.04,458.338,95.642,197.899,0.951318,-1,-1,-1
296,-1,499.662,436.843,57.995,122.486,0.948752,-1,-1,-1
296,-1,696.798,470.79,44.265,144.39,0.828036,-1,-1,-1
296,-1,470.108,448.338,45.097,100.312,0.592566,-1,-1,-1
297,-1,854.376,473.252,151.944,463.173,0.995652,-1,-1,-1
297,-1,991.676,416.124,185.104,620.346,0.994905,-1,-1,-1
297,-1,1572.8,402.185,181,471.013,0.99333,-1,-1,-1
297,-1,1408.62,436.684,101.57,306.131,0.988449,-1,-1,-1
297,-1,736.444,467.873,95.016,187.613,0.977677,-1,-1,-1
297,-1,1858.78,440.543,52.86,210.426,0.956278,-1,-1,-1
297,-1,501.078,447.441,42.501,120.87,0.952486,-1,-1,-1
297,-1,697.358,476.304,43.094,137.697,0.831742,-1,-1,-1
297,-1,471.255,447.564,48.099,106.21,0.699376,-1,-1,-1
297,-1,382.959,463.298,51.668,111.297,0.675418,-1,-1,-1
298,-1,863.805,435.635,149.985,514.126,0.995113,-1,-1,-1
298,-1,1588.98,420.745,186.75,429.149,0.992854,-1,-1,-1
298,-1,992.991,428.915,181.819,586.425,0.992384,-1,-1,-1
298,-1,1404.01,422.576,97.29,301.881,0.990502,-1,-1,-1
298,-1,747.668,460.39,106.476,169.679,0.961789,-1,-1,-1
298,-1,500.598,445.93,43.034,122.756,0.949843,-1,-1,-1
298,-1,1832.14,443.61,63.97,210.146,0.942672,-1,-1,-1
298,-1,688.874,465.42,56.355,128.667,0.818216,-1,-1,-1
298,-1,474.156,449.804,44.723,103.492,0.617076,-1,-1,-1
298,-1,364.409,466.168,53.058,107.506,0.611357,-1,-1,-1
299,-1,856.284,421.314,155.526,527.091,0.992573,-1,-1,-1
299,-1,1599.26,406.144,188.5,463.444,0.992464,-1,-1,-1
299,-1,1390.2,428.118,96.53,306.374,0.989628,-1,-1,-1
299,-1,759.93,454.784,81.169,194.009,0.98016,-1,-1,-1
299,-1,998.687,424.234,193.403,583.976,0.977325,-1,-1,-1
299,-1,1844.67,452.381,66.61,202.733,0.945186,-1,-1,-1
299,-1,500.428,431.524,57.461,130.681,0.919729,-1,-1,-1
299,-1,691.009,469.214,53.625,121.924,0.801618,-1,-1,-1
299,-1,363.449,467.429,56.216,94.177,0.606224,-1,-1,-1
299,-1,734.778,458.284,55.417,172.812,0.544378,-1,-1,-1
300,-1,1587.66,396.325,196.48,483.921,0.994762,-1,-1,-1
300,-1,854.936,422.712,161.554,505.933,0.993993,-1,-1,-1
300,-1,1373.17,444.527,111.97,266.249,0.993621,-1,-1,-1
300,-1,762.402,457.16,81.811,196.933,0.982919,-1,-1,-1
300,-1,1009.75,423.753,173.05,582.037,0.976746,-1,-1,-1
300,-1,501.831,431.157,56.859,129.791,0.943317,-1,-1,-1
300,-1,1846.62,444.857,65.04,205.338,0.938269,-1,-1,-1
300,-1,687.405,458.204,41.376,146.61,0.796097,-1,-1,-1
300,-1,748.239,470.254,48.65,148.894,0.769801,-1,-1,-1
300,-1,364.186,469.537,54.408,103.874,0.582326,-1,-1,-1
300,-1,1573.29,422.783,83.49,194.841,0.503204,-1,-1,-1
301,-1,1628.77,388.565,156.43,496.482,0.994246,-1,-1,-1
301,-1,1367.89,441.212,103.73,260.828,0.994233,-1,-1,-1
301,-1,864.087,444.745,151.093,503.923,0.992293,-1,-1,-1
301,-1,757.826,475.89,76.425,185.192,0.984262,-1,-1,-1
301,-1,986.232,408.029,184.838,583.085,0.970147,-1,-1,-1
301,-1,1843.24,458.738,66.58,198.505,0.957623,-1,-1,-1
301,-1,486.025,425.145,62.029,136.83,0.9353,-1,-1,-1
301,-1,678.462,471.859,48.985,116.42,0.832227,-1,-1,-1
301,-1,384.153,473.763,54.366,88.371,0.601627,-1,-1,-1
302,-1,1626.27,401.23,169.63,493.618,0.994599,-1,-1,-1
302,-1,876.185,431.202,138.785,506.265,0.993748,-1,-1,-1
302,-1,1360.79,417.301,95.07,288.195,0.98975,-1,-1,-1
302,-1,1011.44,448.752,177.03,577.998,0.988311,-1,-1,-1
302,-1,770.287,464.392,69.785,176.342,0.984118,-1,-1,-1
302,-1,1843.23,454.27,67.3,201.465,0.955931,-1,-1,-1
302,-1,507.585,444.277,37.678,126.036,0.90921,-1,-1,-1
302,-1,689.94,459.077,38.224,132.395,0.826833,-1,-1,-1
302,-1,1158.42,449.194,58.79,110.458,0.758152,-1,-1,-1
302,-1,363.08,471.299,60.477,89.602,0.606679,-1,-1,-1
302,-1,1577.13,433.604,100.98,339.59,0.598683,-1,-1,-1
302,-1,732.426,459.673,61.961,166.569,0.556587,-1,-1,-1
303,-1,1641.12,403.322,154,480.92,0.995056,-1,-1,-1
303,-1,1349.42,418.192,101.25,290.036,0.992904,-1,-1,-1
303,-1,877.065,417.726,145.175,509.603,0.991389,-1,-1,-1
303,-1,1007.27,443.627,188.95,579.043,0.982791,-1,-1,-1
303,-1,780.476,472.618,58.429,165.384,0.954421,-1,-1,-1
303,-1,1844.43,453.338,68.7,203.852,0.946453,-1,-1,-1
303,-1,493.363,448.38,45.932,123.127,0.926802,-1,-1,-1
303,-1,691.933,480.701,39.596,122.343,0.874741,-1,-1,-1
303,-1,381.821,471.764,57.964,89.147,0.780698,-1,-1,-1
304,-1,1012.74,447.785,190.63,570.255,0.995639,-1,-1,-1
304,-1,1340.21,427.314,107.33,269.607,0.99551,-1,-1,-1
304,-1,1630.43,395.742,189.62,524.867,0.992909,-1,-1,-1
304,-1,875.346,441.544,153.274,485.472,0.990087,-1,-1,-1
304,-1,775.297,475.928,68.031,164.913,0.97658,-1,-1,-1
304,-1,496.927,439.458,58.029,128.629,0.955273,-1,-1,-1
304,-1,1859,437.476,52.41,212.1,0.946134,-1,-1,-1
304,-1,0,568.023,81.9197,286.696,0.939906,-1,-1,-1
304,-1,692.107,480.969,41.312,124.655,0.841637,-1,-1,-1
304,-1,366.595,473.561,62.216,92.06,0.757369,-1,-1,-1
304,-1,908.821,434.09,85.768,131.997,0.643713,-1,-1,-1
304,-1,717.776,461.599,51.982,126.631,0.50114,-1,-1,-1
305,-1,1018.37,453.797,182.86,562.933,0.998412,-1,-1,-1
305,-1,1632.49,413.414,171.91,483.231,0.996059,-1,-1,-1
305,-1,1346.8,438.34,112.36,267.374,0.993523,-1,-1,-1
305,-1,879.596,454.638,148.954,466.842,0.991665,-1,-1,-1
305,-1,0,594.515,86.7916,258.928,0.980645,-1,-1,-1
305,-1,775.008,474.863,71.629,171.161,0.977154,-1,-1,-1
305,-1,1861.51,446.72,45.97,204.597,0.89888,-1,-1,-1
305,-1,508.459,452.036,37.196,118.847,0.868851,-1,-1,-1
305,-1,1182.21,450.192,54.86,90.973,0.809137,-1,-1,-1
305,-1,690.664,467.672,40.439,125.676,0.782583,-1,-1,-1
305,-1,365.74,463.644,70.106,105.213,0.751324,-1,-1,-1
305,-1,716.835,462.462,53.473,124.802,0.553417,-1,-1,-1
305,-1,1612.66,400.166,82.97,341.265,0.531191,-1,-1,-1
306,-1,1634.43,395.077,194.23,508.93,0.997251,-1,-1,-1
306,-1,1007.43,434.471,198.12,571.519,0.995478,-1,-1,-1
306,-1,1324.02,415.729,114.13,303.696,0.993204,-1,-1,-1
306,-1,865.301,418.379,169.119,531.2,0.99243,-1,-1,-1
306,-1,774.99,469.707,67.144,175.192,0.982242,-1,-1,-1
306,-1,0,454.563,100.323,407.273,0.929899,-1,-1,-1
306,-1,1175.32,448.107,56.22,104.243,0.897178,-1,-1,-1
306,-1,506.912,436.78,38.96,130.559,0.876219,-1,-1,-1
306,-1,1849.48,444.527,64.41,219.727,0.830368,-1,-1,-1
306,-1,358.316,481.707,74.194,106.398,0.777094,-1,-1,-1
306,-1,682.357,451.859,63.494,128.273,0.760146,-1,-1,-1
306,-1,1606.88,423.09,106.17,368.732,0.742032,-1,-1,-1
306,-1,717.043,473.098,44.036,135.784,0.527522,-1,-1,-1
307,-1,1651.87,402.509,204.89,517.752,0.997247,-1,-1,-1
307,-1,1322.35,432.772,116.82,264.742,0.996687,-1,-1,-1
307,-1,881.698,451.543,148.632,476.165,0.991387,-1,-1,-1
307,-1,1011.37,440.26,177.86,598.47,0.991082,-1,-1,-1
307,-1,778.206,459.574,72.833,192.576,0.986046,-1,-1,-1
307,-1,505.587,442.347,41.74,129.085,0.893243,-1,-1,-1
307,-1,0,463.759,101.074,432.489,0.856956,-1,-1,-1
307,-1,366.895,471.513,59.089,93.368,0.821416,-1,-1,-1
307,-1,1605.21,415.461,107.52,372.728,0.776143,-1,-1,-1
307,-1,687.667,455.81,47.618,133.242,0.699583,-1,-1,-1
307,-1,1177.76,445.398,50.5,110.664,0.680586,-1,-1,-1
307,-1,1851.35,441.412,62.16,230.641,0.644765,-1,-1,-1
307,-1,824.087,455.817,62.639,188.354,0.580108,-1,-1,-1
307,-1,719.233,466.283,45.996,141.535,0.533758,-1,-1,-1
308,-1,1674.91,384.019,205.88,522.732,0.995853,-1,-1,-1
308,-1,1308.43,425.014,127.58,277.794,0.994742,-1,-1,-1
308,-1,878.81,439.369,186.76,495.878,0.991269,-1,-1,-1
308,-1,1009.7,439.524,227.42,586.836,0.987871,-1,-1,-1
308,-1,761.221,469.486,108.531,192.469,0.979761,-1,-1,-1
308,-1,0,352.822,94.2376,536.46,0.92524,-1,-1,-1
308,-1,492.725,435.96,60.504,131.604,0.89804,-1,-1,-1
308,-1,1623.77,409.838,106.16,322.585,0.862574,-1,-1,-1
308,-1,368.37,469.475,57.127,96.133,0.803276,-1,-1,-1
308,-1,686.959,475.955,45.578,118.635,0.69288,-1,-1,-1
308,-1,1183.76,427.253,41.06,101.47,0.577257,-1,-1,-1
308,-1,715.842,469.575,40.284,116.31,0.573999,-1,-1,-1
308,-1,462.653,449.628,52.722,114.865,0.515407,-1,-1,-1
309,-1,1008,432.649,190.35,571.931,0.996373,-1,-1,-1
309,-1,1683.69,398.012,213.6,522.549,0.995572,-1,-1,-1
309,-1,867.433,438.005,170.157,501.469,0.992817,-1,-1,-1
309,-1,1309.86,438.434,136.71,257.639,0.992114,-1,-1,-1
309,-1,787.479,456.964,79.973,182.422,0.983981,-1,-1,-1
309,-1,0,399.264,96.5342,459.266,0.949917,-1,-1,-1
309,-1,489.218,431.892,61.36,135.13,0.916838,-1,-1,-1
309,-1,1627.56,424.322,103.16,344.96,0.890256,-1,-1,-1
309,-1,367.661,465.966,57.719,104.145,0.839924,-1,-1,-1
309,-1,698,473.716,42.026,117.104,0.727032,-1,-1,-1
309,-1,719.432,469.911,52.525,112.725,0.632189,-1,-1,-1
310,-1,1699.98,428.309,188.44,485.174,0.99642,-1,-1,-1
310,-1,1010.76,437.927,223.24,582.723,0.994753,-1,-1,-1
310,-1,869.046,433.449,158.144,504.362,0.993778,-1,-1,-1
310,-1,1301.97,424.958,105.03,267.251,0.993548,-1,-1,-1
310,-1,794.371,449.646,83.421,201.099,0.982996,-1,-1,-1
310,-1,0,365.329,94.4607,507.38,0.98048,-1,-1,-1
310,-1,487.085,427.379,63.53,140.933,0.924308,-1,-1,-1
310,-1,1625.8,430.427,86.28,293.362,0.911878,-1,-1,-1
310,-1,702.813,474.211,43.268,111.227,0.803667,-1,-1,-1
310,-1,365.953,462.886,57.333,104.755,0.741636,-1,-1,-1
311,-1,1005.31,408.992,164.81,600.338,0.994562,-1,-1,-1
311,-1,0,350.564,104.51,548.416,0.99427,-1,-1,-1
311,-1,1704.1,423.366,208.25,515.426,0.993229,-1,-1,-1
311,-1,1299.68,459.822,97.57,243.623,0.993075,-1,-1,-1
311,-1,881.115,429.932,140.435,522.214,0.992705,-1,-1,-1
311,-1,803.868,458.036,69.38,188.482,0.979804,-1,-1,-1
311,-1,493.573,450.808,51.218,118.203,0.936203,-1,-1,-1
311,-1,1647.36,403.52,103.2,322.982,0.910089,-1,-1,-1
311,-1,703.634,466.907,45.124,115.767,0.844124,-1,-1,-1
311,-1,366.433,465.76,57.433,103.944,0.842363,-1,-1,-1
311,-1,1736.31,423.492,114.28,179.963,0.58715,-1,-1,-1
312,-1,1005.89,417.408,166.58,571.832,0.99544,-1,-1,-1
312,-1,1282.71,440.263,101.3,252.922,0.994337,-1,-1,-1
312,-1,886.019,423.974,131.731,520.794,0.994151,-1,-1,-1
312,-1,0.792072,379.78,116.853,484.396,0.993972,-1,-1,-1
312,-1,1710.45,412.882,206.55,532.536,0.992045,-1,-1,-1
312,-1,784.4,462.309,97.212,185.244,0.979364,-1,-1,-1
312,-1,1654.44,399.192,111.47,316.415,0.940665,-1,-1,-1
312,-1,477.102,446.884,60.739,124.587,0.92635,-1,-1,-1
312,-1,365.593,461.882,60.663,109.82,0.911459,-1,-1,-1
312,-1,701.111,466.354,44.897,118.976,0.826498,-1,-1,-1
312,-1,1183.77,449.471,50.52,100.653,0.644903,-1,-1,-1
313,-1,1016.57,419.482,184.51,576.825,0.998588,-1,-1,-1
313,-1,12.9654,414.176,115.728,486.967,0.996449,-1,-1,-1
313,-1,1698.03,407.785,220.97,531.499,0.996211,-1,-1,-1
313,-1,888.669,444.026,123.761,489.5,0.993284,-1,-1,-1
313,-1,1295.68,432.545,79.76,257.645,0.992954,-1,-1,-1
313,-1,805.738,439.866,69.704,231.876,0.96583,-1,-1,-1
313,-1,489.77,450.873,45.748,112.742,0.926491,-1,-1,-1
313,-1,1663.91,427.417,94.46,351.155,0.922588,-1,-1,-1
313,-1,696.797,460.29,44.087,120.092,0.863885,-1,-1,-1
313,-1,1186.78,449.827,52.67,100.016,0.792942,-1,-1,-1
313,-1,379.334,463.919,66.706,103.52,0.588952,-1,-1,-1
314,-1,15.4675,398.976,137.875,484.857,0.996249,-1,-1,-1
314,-1,1021.69,450.283,208.84,567.817,0.995909,-1,-1,-1
314,-1,1741.66,416.113,177.34,515.967,0.995113,-1,-1,-1
314,-1,881.61,425.348,131.27,509.03,0.993881,-1,-1,-1
314,-1,1274.92,413.887,100.14,290.825,0.978166,-1,-1,-1
314,-1,1655.23,416.625,116.72,366.442,0.977159,-1,-1,-1
314,-1,787.264,446.866,97.942,209.092,0.973603,-1,-1,-1
314,-1,490.725,450.659,47.071,114.289,0.924023,-1,-1,-1
314,-1,358.781,472.299,69.658,117.891,0.90929,-1,-1,-1
314,-1,696.059,468.796,43.328,118.573,0.85513,-1,-1,-1
314,-1,521.546,438.596,41.345,116.682,0.625813,-1,-1,-1
315,-1,20.8866,398.563,144.53,467.173,0.998522,-1,-1,-1
315,-1,1019,435.45,196.05,571.25,0.996065,-1,-1,-1
315,-1,880.644,427.016,134.016,504.214,0.993483,-1,-1,-1
315,-1,1274.64,428.965,94.07,263.051,0.989787,-1,-1,-1
315,-1,1774.46,403.102,143.15,524.58,0.987451,-1,-1,-1
315,-1,791.481,434.967,97.729,232.056,0.968471,-1,-1,-1
315,-1,1684.81,387.11,114.24,337.88,0.937185,-1,-1,-1
315,-1,486.586,449.214,49.654,116.277,0.928659,-1,-1,-1
315,-1,371.37,461.895,58.472,104.722,0.857764,-1,-1,-1
315,-1,1183.08,469.448,49.14,89.91,0.817116,-1,-1,-1
315,-1,687.912,461.112,49.319,134.936,0.812037,-1,-1,-1
315,-1,715.635,474.267,41.954,109.781,0.747389,-1,-1,-1
315,-1,662.34,464.051,48.328,100.877,0.513633,-1,-1,-1
316,-1,21.8297,405.872,164.535,477.014,0.998432,-1,-1,-1
316,-1,880.472,418.435,141.008,532.903,0.993894,-1,-1,-1
316,-1,1271.49,414.711,80.24,284.93,0.992899,-1,-1,-1
316,-1,1022.92,460.527,212.86,559.583,0.989117,-1,-1,-1
316,-1,1802.82,408.021,110.99,461.108,0.96894,-1,-1,-1
316,-1,810.974,440.073,68.55,232.705,0.967499,-1,-1,-1
316,-1,1681.27,376.534,116.94,417.717,0.958231,-1,-1,-1
316,-1,485.984,451.833,51.649,117.954,0.926341,-1,-1,-1
316,-1,371.801,462.646,58.419,104.843,0.849104,-1,-1,-1
316,-1,693.156,461.392,47.968,135.544,0.784321,-1,-1,-1
316,-1,1185.91,450.994,51.82,107.896,0.592627,-1,-1,-1
317,-1,36.7747,383.346,168.637,515.162,0.996384,-1,-1,-1
317,-1,1041.2,423.966,189.82,594.224,0.995773,-1,-1,-1
317,-1,1262.34,426.293,86.94,266.978,0.994887,-1,-1,-1
317,-1,879.844,432.712,138.916,478.79,0.989806,-1,-1,-1
317,-1,1782.79,382.836,119.09,526.805,0.977984,-1,-1,-1
317,-1,810.153,443.358,72.489,241.52,0.963383,-1,-1,-1
317,-1,1688.06,415.352,109.84,323.755,0.950004,-1,-1,-1
317,-1,480.871,448.476,51.98,119.823,0.918503,-1,-1,-1
317,-1,361.794,475.83,70.038,116.559,0.870758,-1,-1,-1
317,-1,691.36,460.466,49.217,140.338,0.797443,-1,-1,-1
317,-1,1183.78,459.642,59.17,98.739,0.608158,-1,-1,-1
317,-1,403.174,460.338,58.933,128.134,0.501663,-1,-1,-1
318,-1,32.1392,392.777,195.604,490.112,0.996157,-1,-1,-1
318,-1,1038,408.023,186.73,616.127,0.995573,-1,-1,-1
318,-1,1252.46,408.287,84.23,299.085,0.994402,-1,-1,-1
318,-1,883.665,414.363,137.005,534.63,0.992253,-1,-1,-1
318,-1,812.35,453.333,65.375,200.338,0.974537,-1,-1,-1
318,-1,1702.14,406.482,127.9,405.588,0.957004,-1,-1,-1
318,-1,1798.85,402.201,112.45,508.827,0.926147,-1,-1,-1
318,-1,484.464,453.414,51.223,122.486,0.910659,-1,-1,-1
318,-1,371.996,466.061,57.324,99.954,0.835895,-1,-1,-1
318,-1,696.004,454.826,55.56,125.136,0.813384,-1,-1,-1
318,-1,1680,414.358,83.3,222.706,0.631228,-1,-1,-1
319,-1,1040.19,411.637,183.12,601.663,0.99717,-1,-1,-1
319,-1,23.4519,404.766,208.277,484.592,0.99646,-1,-1,-1
319,-1,1248.74,423.978,84.67,273.375,0.995072,-1,-1,-1
319,-1,887.216,419.96,131.464,527.028,0.991284,-1,-1,-1
319,-1,1708.18,389.811,135.87,464.028,0.982501,-1,-1,-1
319,-1,812.701,430.911,73.066,239.393,0.96436,-1,-1,-1
319,-1,1808.34,429.468,105.32,459.918,0.95437,-1,-1,-1
319,-1,476.762,452.101,57.915,100.894,0.898383,-1,-1,-1
319,-1,370.97,465.458,58.696,101.368,0.857511,-1,-1,-1
319,-1,695.641,466.768,55.132,137.001,0.725564,-1,-1,-1
320,-1,1048.75,446.274,180.26,555.766,0.996292,-1,-1,-1
320,-1,44.0804,405.02,198.385,457.095,0.995799,-1,-1,-1
320,-1,1708.13,400.208,143.85,414.143,0.993713,-1,-1,-1
320,-1,885.178,426.913,140.832,508.247,0.992883,-1,-1,-1
320,-1,1255.7,427.405,79.98,275.392,0.986543,-1,-1,-1
320,-1,814.257,433.671,75.348,240.03,0.957444,-1,-1,-1
320,-1,1838.98,412.364,80.02,446.216,0.951599,-1,-1,-1
320,-1,476.987,444.763,59.023,130.8,0.908958,-1,-1,-1
320,-1,369.939,461.808,59.407,105.362,0.86903,-1,-1,-1
320,-1,1677.46,405.275,60.77,186.674,0.844184,-1,-1,-1
320,-1,694.639,449.139,56.555,129.121,0.824838,-1,-1,-1
321,-1,1050.1,436.254,182.24,586.886,0.998394,-1,-1,-1
321,-1,50.9481,394.782,199.324,478.067,0.994814,-1,-1,-1
321,-1,881.829,424.528,151.711,513.784,0.994259,-1,-1,-1
321,-1,1707.01,404.197,154.59,409.565,0.991581,-1,-1,-1
321,-1,1231.79,450.899,91.95,239.071,0.990282,-1,-1,-1
321,-1,814.388,450.824,79.711,211.68,0.951607,-1,-1,-1
321,-1,1845.17,390.657,71.51,485.593,0.936639,-1,-1,-1
321,-1,477.542,443.951,58.878,133.109,0.914916,-1,-1,-1
321,-1,357.888,473.57,72.492,117.829,0.879686,-1,-1,-1
321,-1,1679.96,413.986,61.36,188.831,0.788304,-1,-1,-1
321,-1,692.054,475.349,54.036,122.584,0.782936,-1,-1,-1
322,-1,1049.29,444.778,188.51,582.042,0.996311,-1,-1,-1
322,-1,1228.19,436.692,98.55,259.581,0.994704,-1,-1,-1
322,-1,1715.42,376.106,155.14,449.344,0.994025,-1,-1,-1
322,-1,882.971,437.827,145.749,494.613,0.993203,-1,-1,-1
322,-1,56.4225,396.108,200.888,461.745,0.990388,-1,-1,-1
322,-1,826.36,471.217,68.051,168.875,0.964221,-1,-1,-1
322,-1,1667.48,427.161,75.83,184.822,0.932367,-1,-1,-1
322,-1,476.762,444.939,58.893,134.27,0.909,-1,-1,-1
322,-1,368.143,463.724,58.654,103.743,0.891167,-1,-1,-1
322,-1,689.467,456.804,48.288,124.178,0.785638,-1,-1,-1
322,-1,1856.02,392.976,56.75,486.712,0.78419,-1,-1,-1
322,-1,1407.36,439.334,61.26,105.541,0.619753,-1,-1,-1
322,-1,1694.45,404.608,95.01,270.067,0.568715,-1,-1,-1
323,-1,1060.15,458.721,173.51,543.539,0.997459,-1,-1,-1
323,-1,48.4606,411.775,258.139,445.177,0.996237,-1,-1,-1
323,-1,1737.42,390.935,144.91,430.325,0.994478,-1,-1,-1
323,-1,884.996,430.276,137.514,531.802,0.993409,-1,-1,-1
323,-1,1239.33,438.933,87.25,253.495,0.99165,-1,-1,-1
323,-1,828.183,471.221,72.582,172.786,0.968431,-1,-1,-1
323,-1,367.03,468.746,61.437,101.694,0.94569,-1,-1,-1
323,-1,475.551,444.487,58.184,139.63,0.895727,-1,-1,-1
323,-1,1415.07,430.12,54.35,107.743,0.890802,-1,-1,-1
323,-1,688.143,463.396,47.069,129.345,0.848293,-1,-1,-1
323,-1,1672.29,419.599,78.52,186.735,0.737584,-1,-1,-1
323,-1,1869.24,420.186,45.53,345.23,0.658816,-1,-1,-1
323,-1,402.421,451.481,59.996,114.706,0.574503,-1,-1,-1
324,-1,1048.15,427.434,206.1,575.816,0.997826,-1,-1,-1
324,-1,56.202,420.225,234.456,413.06,0.996662,-1,-1,-1
324,-1,883.175,413.979,137.495,516.047,0.994575,-1,-1,-1
324,-1,1751.84,387.899,137.37,458.454,0.993582,-1,-1,-1
324,-1,1205.58,417.623,99.39,301.722,0.98074,-1,-1,-1
324,-1,823.197,459.001,75.676,188.906,0.966259,-1,-1,-1
324,-1,366.725,466.805,63.041,104.206,0.925386,-1,-1,-1
324,-1,1435.91,427.298,50.66,106.951,0.91404,-1,-1,-1
324,-1,476.19,444.223,57.955,134.988,0.892979,-1,-1,-1
324,-1,688.089,457.555,49.023,129.053,0.838595,-1,-1,-1
324,-1,1673.84,401.969,116.57,246.554,0.787845,-1,-1,-1
324,-1,398.049,464.657,65.579,125.636,0.573985,-1,-1,-1
325,-1,78.6815,395.649,214.302,457.2,0.9965,-1,-1,-1
325,-1,1740.13,373.428,148.08,428.197,0.995423,-1,-1,-1
325,-1,1049.28,427.167,185.09,595.783,0.994224,-1,-1,-1
325,-1,883.202,426.352,132.288,522.544,0.991412,-1,-1,-1
325,-1,1227.03,448.771,80.93,217.047,0.977958,-1,-1,-1
325,-1,835.732,460.089,71.356,205.801,0.952911,-1,-1,-1
325,-1,1430.08,447.952,63.09,104.452,0.948819,-1,-1,-1
325,-1,368.314,467.444,60.268,102.032,0.913513,-1,-1,-1
325,-1,467.922,442.294,51.057,132.249,0.882392,-1,-1,-1
325,-1,691.336,449.938,55.359,145.074,0.845182,-1,-1,-1
325,-1,1668.49,413.035,115.42,219.282,0.83805,-1,-1,-1
325,-1,1205.65,460.893,57.49,161.037,0.723287,-1,-1,-1
325,-1,663.33,460.6,49.61,105.642,0.603472,-1,-1,-1
326,-1,1769.82,401.315,127.18,454.764,0.997483,-1,-1,-1
326,-1,1056.25,404.921,184.74,626.109,0.997119,-1,-1,-1
326,-1,94.3627,418.201,227.615,413.403,0.994523,-1,-1,-1
326,-1,881.606,417.617,138.504,539.237,0.993062,-1,-1,-1
326,-1,1193.01,450.613,103.62,254.196,0.983289,-1,-1,-1
326,-1,1438.31,442.359,49.91,111.829,0.961989,-1,-1,-1
326,-1,835.04,441.608,74.115,211.852,0.946024,-1,-1,-1
326,-1,368.384,468.145,58.641,102.395,0.888781,-1,-1,-1
326,-1,468.005,445.157,51.527,129.735,0.880881,-1,-1,-1
326,-1,689.21,457.296,52.313,119.466,0.864966,-1,-1,-1
326,-1,1675.25,423.579,69.52,163.675,0.789334,-1,-1,-1
326,-1,665.586,464.433,47.95,99.282,0.706051,-1,-1,-1
326,-1,726.737,459.619,45.577,138.813,0.568352,-1,-1,-1
327,-1,1773.41,349.47,139.41,510.461,0.995817,-1,-1,-1
327,-1,101.383,399.023,191.263,443.732,0.995782,-1,-1,-1
327,-1,1069,423.796,186.66,597.464,0.994454,-1,-1,-1
327,-1,883.822,432.497,133.858,491.325,0.9925,-1,-1,-1
327,-1,1444.54,446.212,50.5,107.502,0.961585,-1,-1,-1
327,-1,1197.17,446.488,79.27,242.3,0.86996,-1,-1,-1
327,-1,834.583,449.199,75.948,241.509,0.864267,-1,-1,-1
327,-1,468.534,447.239,51.42,123.334,0.863711,-1,-1,-1
327,-1,690.432,462.458,50.773,117.799,0.857717,-1,-1,-1
327,-1,365.546,466.539,69.852,101.811,0.852132,-1,-1,-1
327,-1,1676.82,432.583,69.28,154.595,0.75929,-1,-1,-1
327,-1,664.871,465.264,47.541,100.848,0.673186,-1,-1,-1
327,-1,728.694,457.969,44.602,138.056,0.587595,-1,-1,-1
328,-1,1780.16,370.326,138.38,460.454,0.993942,-1,-1,-1
328,-1,1071.71,435.899,171.8,596.011,0.993358,-1,-1,-1
328,-1,116.541,407.743,194.765,424.678,0.989347,-1,-1,-1
328,-1,889.082,445.653,127.418,500.626,0.986414,-1,-1,-1
328,-1,1198.54,445.394,71.88,207.686,0.939083,-1,-1,-1
328,-1,1445.46,448.338,51.9,99.366,0.882483,-1,-1,-1
328,-1,367.348,469.885,69.78,99.573,0.861748,-1,-1,-1
328,-1,1676.39,425.687,65.21,156.092,0.832452,-1,-1,-1
328,-1,689.636,462.924,51.09,117.523,0.810598,-1,-1,-1
328,-1,483.271,447.461,48.156,124.574,0.780571,-1,-1,-1
328,-1,832.085,450.715,65.378,163.665,0.733038,-1,-1,-1
328,-1,728.088,457.895,49.186,139.228,0.534381,-1,-1,-1
329,-1,1059.54,408.669,190.59,602.931,0.997161,-1,-1,-1
329,-1,877.641,426.794,145.339,499.544,0.995485,-1,-1,-1
329,-1,1786.69,379.425,132.31,437.638,0.994616,-1,-1,-1
329,-1,128.283,396.499,170.521,453.478,0.991008,-1,-1,-1
329,-1,1676.67,420.782,66.9,162.911,0.878825,-1,-1,-1
329,-1,1190.22,452.802,70.44,164.035,0.849598,-1,-1,-1
329,-1,691.642,455.993,59.904,127.327,0.845685,-1,-1,-1
329,-1,365.362,464.78,72.297,103.234,0.83732,-1,-1,-1
329,-1,462.102,453.339,54.914,122.334,0.754142,-1,-1,-1
329,-1,726.857,461.723,49.807,138.354,0.554357,-1,-1,-1
330,-1,880.44,438.928,143.02,495.29,0.997578,-1,-1,-1
330,-1,1062.82,403.555,186.7,591.249,0.997013,-1,-1,-1
330,-1,141.886,395.973,190.431,412.06,0.994316,-1,-1,-1
330,-1,1780.32,519.732,138.68,319.151,0.941051,-1,-1,-1
330,-1,1675.79,425.006,71.89,167.952,0.924459,-1,-1,-1
330,-1,677.824,462.722,59.424,113.925,0.860982,-1,-1,-1
330,-1,363.839,461.08,70.377,107.354,0.834058,-1,-1,-1
330,-1,463.125,448.637,55.55,125.032,0.82046,-1,-1,-1
330,-1,1844.64,404.411,74.36,282.22,0.741992,-1,-1,-1
330,-1,709.47,477.281,46.91,121.619,0.733488,-1,-1,-1
330,-1,1181.98,448.317,66.79,181.579,0.610322,-1,-1,-1
331,-1,886.008,430.299,135.892,499.291,0.997197,-1,-1,-1
331,-1,1065.3,416.409,183.41,599.711,0.996268,-1,-1,-1
331,-1,160.58,403.915,170.335,414.248,0.99172,-1,-1,-1
331,-1,1807,396.285,112,416.297,0.984858,-1,-1,-1
331,-1,1677.41,430.057,70.61,163.934,0.941515,-1,-1,-1
331,-1,691.095,471.942,47.389,112.861,0.857453,-1,-1,-1
331,-1,361.333,460.299,74.36,108.705,0.831747,-1,-1,-1
331,-1,462.089,451.637,56.569,123.064,0.818633,-1,-1,-1
331,-1,715.643,448.072,57.871,151.065,0.797692,-1,-1,-1
331,-1,1189,449.93,58.92,149.006,0.635052,-1,-1,-1
332,-1,170.545,378.656,148.14,420.723,0.99707,-1,-1,-1
332,-1,1068.34,404.834,182.92,613.126,0.995863,-1,-1,-1
332,-1,875.874,415.995,154.216,523.384,0.995529,-1,-1,-1
332,-1,1854.44,408.069,64.39,300.157,0.939366,-1,-1,-1
332,-1,1673.39,429.053,76.86,159.464,0.928932,-1,-1,-1
332,-1,694.323,462.525,54.21,137.635,0.877701,-1,-1,-1
332,-1,467.207,455.668,54.415,121.004,0.825201,-1,-1,-1
332,-1,1462.64,432.245,44.07,103.425,0.788073,-1,-1,-1
332,-1,369.266,463.385,62.566,103.94,0.707468,-1,-1,-1
332,-1,677.682,471.31,38.185,92.671,0.691281,-1,-1,-1
332,-1,1183.53,421.436,67.51,174.8,0.647231,-1,-1,-1
332,-1,1149.77,444.062,126.02,354.619,0.571954,-1,-1,-1
333,-1,177.938,387.965,162.002,417.808,0.998379,-1,-1,-1
333,-1,1073.71,413.329,199.7,603.461,0.996707,-1,-1,-1
333,-1,882.334,411.307,148.796,517.395,0.995441,-1,-1,-1
333,-1,1671.38,425.645,76.2,166.795,0.948791,-1,-1,-1
333,-1,680.406,465.683,53.732,109.446,0.881102,-1,-1,-1
333,-1,469.112,451.599,52.165,114.589,0.815273,-1,-1,-1
333,-1,1194.41,444.797,59.9,168.043,0.731476,-1,-1,-1
333,-1,710.531,474.836,43.288,116.807,0.704938,-1,-1,-1
333,-1,370.039,468.881,63.259,111.871,0.63095,-1,-1,-1
333,-1,1861.56,394.008,54.38,317.651,0.60333,-1,-1,-1
334,-1,191.195,398.061,165.834,401.698,0.998789,-1,-1,-1
334,-1,875.409,412.112,163.961,513.995,0.997603,-1,-1,-1
334,-1,1076.52,412.258,194.24,598.002,0.997255,-1,-1,-1
334,-1,1672.43,432.354,72.69,161.094,0.931653,-1,-1,-1
334,-1,693.523,462.951,48.118,134.145,0.876862,-1,-1,-1
334,-1,470.016,449.094,48.443,107.408,0.82905,-1,-1,-1
334,-1,713.468,477.695,65.062,96.33,0.655915,-1,-1,-1
334,-1,1202.75,454.587,54,165.094,0.648379,-1,-1,-1
334,-1,1850.24,390.802,62.3,343.797,0.624422,-1,-1,-1
334,-1,380.397,457.204,69.073,105.984,0.573899,-1,-1,-1
334,-1,4.4793,498.751,101.456,267.852,0.548342,-1,-1,-1
334,-1,1166.01,458.784,112.33,320.113,0.51915,-1,-1,-1
335,-1,188.607,418.163,192.342,405.131,0.997869,-1,-1,-1
335,-1,1071.9,398.83,177.57,611.99,0.996642,-1,-1,-1
335,-1,885.954,422.183,143.266,507.714,0.996519,-1,-1,-1
335,-1,1671.15,424.995,75.02,167.199,0.941331,-1,-1,-1
335,-1,693.634,466.105,50.549,132.401,0.908872,-1,-1,-1
335,-1,466.337,453.208,51.68,112.047,0.818564,-1,-1,-1
335,-1,667.967,450.204,48.899,107.06,0.757495,-1,-1,-1
335,-1,1860.85,406.718,51.24,284.088,0.757358,-1,-1,-1
335,-1,713.485,479.813,65.975,94.308,0.750446,-1,-1,-1
335,-1,1472.85,435.883,40.33,108.052,0.737336,-1,-1,-1
335,-1,1154.55,435.438,141.25,398.711,0.728203,-1,-1,-1
335,-1,17.617,511.453,109.949,255.578,0.725585,-1,-1,-1
335,-1,1214.99,445.885,62.93,210.489,0.58869,-1,-1,-1
335,-1,377.619,481.478,72.103,92.61,0.560473,-1,-1,-1
336,-1,1073.15,401.578,200.39,625.342,0.998056,-1,-1,-1
336,-1,203.454,421.321,187.264,395.147,0.997391,-1,-1,-1
336,-1,886.12,430.441,150.86,498.669,0.99702,-1,-1,-1
336,-1,1671.27,422.989,74.92,163.316,0.951701,-1,-1,-1
336,-1,682.058,474.044,53.195,126.137,0.897378,-1,-1,-1
336,-1,720.444,450.595,49.654,140.563,0.842593,-1,-1,-1
336,-1,1213.73,451.654,69.8,228.513,0.732615,-1,-1,-1
336,-1,468.321,436.735,61.799,127.617,0.719961,-1,-1,-1
336,-1,1474,424.911,39.23,117.676,0.707916,-1,-1,-1
336,-1,1858.44,409.39,52.08,256.565,0.693909,-1,-1,-1
336,-1,11.6922,474.583,97.2758,305.946,0.561007,-1,-1,-1
337,-1,890.786,428.67,140.314,498.56,0.997583,-1,-1,-1
337,-1,213.471,413.457,199.292,411.21,0.997239,-1,-1,-1
337,-1,1087.91,393.569,170.49,643.901,0.995908,-1,-1,-1
337,-1,0.291157,443.199,93.962,351.503,0.976727,-1,-1,-1
337,-1,1671.74,424.84,78.4,165.062,0.959355,-1,-1,-1
337,-1,688.915,462.116,52.882,137.572,0.890346,-1,-1,-1
337,-1,1166.91,459.607,130.85,379.729,0.852786,-1,-1,-1
337,-1,471.024,449.753,51.632,119.241,0.735405,-1,-1,-1
337,-1,714.455,481.088,64.217,97.612,0.727271,-1,-1,-1
337,-1,1200.61,451.228,66.17,201.117,0.702344,-1,-1,-1
337,-1,1844.9,397.997,66.5,271.154,0.66281,-1,-1,-1
337,-1,658.686,478.289,50.595,86.136,0.517219,-1,-1,-1
338,-1,1073.26,392.128,192.33,631.932,0.998012,-1,-1,-1
338,-1,887.687,414.462,144.863,525.636,0.997768,-1,-1,-1
338,-1,205.655,401.296,222.944,426.922,0.996018,-1,-1,-1
338,-1,0,404.632,103.79,413.774,0.992466,-1,-1,-1
338,-1,1673.74,420.973,75.26,166.379,0.941905,-1,-1,-1
338,-1,687.771,460.518,62.221,143.072,0.903277,-1,-1,-1
338,-1,1851.37,471.613,47.22,175.628,0.856948,-1,-1,-1
338,-1,673.84,471.987,39.772,102.177,0.795737,-1,-1,-1
338,-1,1194.88,445.854,77.59,271.556,0.783323,-1,-1,-1
338,-1,1481.64,431.3,36.66,113.779,0.749908,-1,-1,-1
338,-1,453.469,446.991,58.83,133.853,0.662071,-1,-1,-1
338,-1,725.102,459.368,52.932,132.469,0.584285,-1,-1,-1
339,-1,1079.12,395.089,177.17,645.041,0.998294,-1,-1,-1
339,-1,889.282,416.898,145.828,522.86,0.997487,-1,-1,-1
339,-1,215.699,418.586,211.357,389.124,0.995926,-1,-1,-1
339,-1,1.32456,425.402,101.182,369.105,0.9909,-1,-1,-1
339,-1,1671.45,424.249,76.09,163.852,0.943495,-1,-1,-1
339,-1,1842.23,451.447,67.26,214.037,0.899226,-1,-1,-1
339,-1,675.657,459.393,56.34,116.665,0.895219,-1,-1,-1
339,-1,1181.8,451.179,101.47,311.57,0.887059,-1,-1,-1
339,-1,1484.57,434.331,42.9,117.099,0.857271,-1,-1,-1
339,-1,712.035,465.773,45.27,130.469,0.742232,-1,-1,-1
340,-1,215.508,394.77,231.802,426.966,0.997912,-1,-1,-1
340,-1,1077.84,395.776,194.47,614.854,0.997094,-1,-1,-1
340,-1,888.798,421.399,146.372,512.244,0.996601,-1,-1,-1
340,-1,5.22621,437.823,128.382,349.856,0.994474,-1,-1,-1
340,-1,1671.43,427.794,73.98,157.617,0.949532,-1,-1,-1
340,-1,1843.1,445.915,70.42,216.314,0.93377,-1,-1,-1
340,-1,675.957,459.655,56.227,120.654,0.902346,-1,-1,-1
340,-1,1469.61,428.168,49.1,123.973,0.869219,-1,-1,-1
340,-1,705.61,458.822,60.983,119.307,0.842389,-1,-1,-1
340,-1,1214.23,447.977,80.54,259.928,0.704514,-1,-1,-1
341,-1,237.075,444.474,224.06,358.865,0.997905,-1,-1,-1
341,-1,884.176,419.784,156.204,528.762,0.997222,-1,-1,-1
341,-1,1061.32,395.921,207.48,619.319,0.995902,-1,-1,-1
341,-1,7.11737,444.608,115.743,343.892,0.992897,-1,-1,-1
341,-1,1843.11,445.472,69.56,219.701,0.949785,-1,-1,-1
341,-1,1181.86,439.617,100.91,296.977,0.904094,-1,-1,-1
341,-1,674.006,458.674,56.539,124.549,0.903883,-1,-1,-1
341,-1,1675.21,427.335,71.96,156.417,0.888588,-1,-1,-1
341,-1,708.995,456.867,58.739,121.363,0.845677,-1,-1,-1
342,-1,237.831,398.147,214.138,409.71,0.998185,-1,-1,-1
342,-1,882.498,406.665,154.462,531.565,0.998171,-1,-1,-1
342,-1,1089.99,397.226,189.91,608.494,0.996476,-1,-1,-1
342,-1,14.7775,459.091,127.124,331.007,0.99159,-1,-1,-1
342,-1,1845.02,453.407,64.92,209.686,0.947725,-1,-1,-1
342,-1,690.578,461.289,60.052,141.068,0.897837,-1,-1,-1
342,-1,1673.5,426.851,74.58,162.153,0.897205,-1,-1,-1
342,-1,1197.18,434.076,80.98,273.172,0.840645,-1,-1,-1
342,-1,738.405,469.256,41.3,126.217,0.622794,-1,-1,-1
343,-1,243.541,409.832,215.185,399.945,0.998027,-1,-1,-1
343,-1,888.109,421.198,158.881,518.798,0.998002,-1,-1,-1
343,-1,1091.9,411.079,185.28,602.391,0.997422,-1,-1,-1
343,-1,27.4422,440.452,111.483,335.154,0.996341,-1,-1,-1
343,-1,1844.76,438.35,66.45,226.643,0.959809,-1,-1,-1
343,-1,675.192,455.19,58.722,125.997,0.879562,-1,-1,-1
343,-1,1676.28,435.525,73.06,154.061,0.80213,-1,-1,-1
343,-1,708.723,455.344,63.54,123.023,0.777999,-1,-1,-1
343,-1,1205.44,438.51,93.3,341.228,0.63143,-1,-1,-1
344,-1,263.311,414.689,200.302,412.103,0.997988,-1,-1,-1
344,-1,1072.9,407.815,185.14,602.195,0.997757,-1,-1,-1
344,-1,883.94,440.315,157.57,503.534,0.996497,-1,-1,-1
344,-1,23.7987,442.734,132.735,330.457,0.99618,-1,-1,-1
344,-1,1844.86,446.579,64.7,213.503,0.963269,-1,-1,-1
344,-1,1672.99,433.598,76.19,156.951,0.87466,-1,-1,-1
344,-1,688.094,457.22,61.411,150.912,0.873563,-1,-1,-1
344,-1,1171.95,449.297,129.27,370.299,0.772735,-1,-1,-1
344,-1,658.214,459.579,48.156,117.631,0.578451,-1,-1,-1
344,-1,715.484,470.109,86.187,148.754,0.519266,-1,-1,-1
344,-1,470.73,433.166,54.32,136.401,0.512492,-1,-1,-1
345,-1,1073.37,392.531,191.1,606.992,0.998192,-1,-1,-1
345,-1,889.039,422.152,156.051,509.86,0.998124,-1,-1,-1
345,-1,18.7789,444.671,138.547,351.926,0.997315,-1,-1,-1
345,-1,272.516,421.218,173.445,407.266,0.997235,-1,-1,-1
345,-1,1843.89,436.19,68.45,227.683,0.960839,-1,-1,-1
345,-1,1661.56,422.09,90.92,173.443,0.891221,-1,-1,-1
345,-1,673.013,456.36,55.041,128.136,0.865804,-1,-1,-1
345,-1,1163.36,449.679,138.61,360.198,0.822736,-1,-1,-1
345,-1,712.746,473.922,50.16,126.592,0.806597,-1,-1,-1
346,-1,1089.81,415.789,196.72,567.955,0.9986,-1,-1,-1
346,-1,883.346,420.923,148.694,512.751,0.997517,-1,-1,-1
346,-1,266.675,410.906,175.982,413.226,0.997388,-1,-1,-1
346,-1,48.7548,451.046,101.179,326.806,0.994844,-1,-1,-1
346,-1,1844.58,441.917,67.3,222.914,0.949362,-1,-1,-1
346,-1,1675.43,436.389,72.35,161.262,0.898722,-1,-1,-1
346,-1,673.153,457.047,54.566,126.697,0.865964,-1,-1,-1
346,-1,713.875,477.913,49.411,123.83,0.813687,-1,-1,-1
347,-1,898.098,431.91,136.662,515.175,0.998095,-1,-1,-1
347,-1,299.869,396.642,138.033,407.161,0.997943,-1,-1,-1
347,-1,1068.2,397.673,238.2,600.013,0.997825,-1,-1,-1
347,-1,54.4841,420.919,106.293,369.004,0.987126,-1,-1,-1
347,-1,1845.31,441.296,66.8,224.139,0.947326,-1,-1,-1
347,-1,1675.86,434.827,72.82,163.554,0.890243,-1,-1,-1
347,-1,673.846,471.924,43.758,104.861,0.871514,-1,-1,-1
347,-1,693.156,478.844,57.261,122.146,0.812246,-1,-1,-1
348,-1,1092.93,391.098,191.32,622.442,0.997982,-1,-1,-1
348,-1,50.2375,456.824,126.022,328.58,0.997123,-1,-1,-1
348,-1,882.558,428.588,158.342,529.664,0.996621,-1,-1,-1
348,-1,298.473,409.131,137.006,385.395,0.995607,-1,-1,-1
348,-1,1846.42,456.487,59.51,193.918,0.944989,-1,-1,-1
348,-1,1662.42,409.181,95.24,185.627,0.910554,-1,-1,-1
348,-1,684.91,451.386,58.618,139.081,0.842771,-1,-1,-1
348,-1,473.238,434.672,51.007,120.49,0.60393,-1,-1,-1
349,-1,897.319,430.455,141.051,486.245,0.998254,-1,-1,-1
349,-1,56.7702,436.117,123.806,331.267,0.997233,-1,-1,-1
349,-1,309.13,423.312,139.331,405.845,0.996441,-1,-1,-1
349,-1,1086.74,397.022,199.76,585.599,0.995918,-1,-1,-1
349,-1,1847.66,439.874,58.55,209.938,0.950256,-1,-1,-1
349,-1,1674.96,434.26,77.05,166.058,0.921878,-1,-1,-1
349,-1,673.583,456.422,58.823,122.408,0.839334,-1,-1,-1
349,-1,467.986,441.491,59.944,112.13,0.799339,-1,-1,-1
349,-1,709.275,452.652,65.254,126.319,0.727605,-1,-1,-1
350,-1,903.118,435.236,134.542,486.927,0.998306,-1,-1,-1
350,-1,37.5887,459.08,185.356,310.342,0.997869,-1,-1,-1
350,-1,1087.51,396.454,206.92,625.476,0.997424,-1,-1,-1
350,-1,319.087,421.622,149.178,388.013,0.996426,-1,-1,-1
350,-1,1845.65,467.286,61.18,182.185,0.953101,-1,-1,-1
350,-1,1675.5,426.349,78.13,161.321,0.816473,-1,-1,-1
350,-1,680.373,466.292,57.407,128.674,0.816009,-1,-1,-1
350,-1,712.706,474.949,52.886,115.83,0.777263,-1,-1,-1
350,-1,473.507,429.958,50.658,137.837,0.69672,-1,-1,-1
351,-1,62.7897,459.988,141.619,331.67,0.998514,-1,-1,-1
351,-1,907.157,438.761,142.873,501.369,0.998194,-1,-1,-1
351,-1,1084.52,413.381,214.57,570.827,0.99737,-1,-1,-1
351,-1,331.267,414.143,134.985,408.891,0.984436,-1,-1,-1
351,-1,1846.82,467.659,59.15,179.882,0.943976,-1,-1,-1
351,-1,1673.79,432.859,80.26,164.79,0.898217,-1,-1,-1
351,-1,674.488,454.728,61.994,122.616,0.789639,-1,-1,-1
351,-1,707.31,451.975,67.101,124.398,0.750386,-1,-1,-1
352,-1,896.445,418.116,143.615,481.795,0.997938,-1,-1,-1
352,-1,1072,397.717,203.82,609.883,0.997824,-1,-1,-1
352,-1,82.9952,436.334,133.945,344.512,0.997355,-1,-1,-1
352,-1,335.823,384.995,130.399,414.683,0.995959,-1,-1,-1
352,-1,1841.45,439.393,65.79,219.354,0.96647,-1,-1,-1
352,-1,1675.83,439.084,74.41,156.935,0.888947,-1,-1,-1
352,-1,679.346,470.435,59.83,128.076,0.837778,-1,-1,-1
352,-1,705.4,453.633,67.237,124.09,0.810255,-1,-1,-1
353,-1,1081.09,408.317,200.36,612.793,0.998613,-1,-1,-1
353,-1,893.138,412.362,148.662,519.773,0.997363,-1,-1,-1
353,-1,337.983,412.509,132.993,391.703,0.997096,-1,-1,-1
353,-1,82.6957,433.713,142.729,339.81,0.996953,-1,-1,-1
353,-1,1842.14,450.927,63.34,205.207,0.952353,-1,-1,-1
353,-1,1661.58,414.378,95.67,179.656,0.911008,-1,-1,-1
353,-1,675.253,459.99,66.585,120.65,0.811737,-1,-1,-1
353,-1,0.541927,435.104,77.6237,360.109,0.713404,-1,-1,-1
353,-1,710.928,462.951,68.538,129.877,0.558404,-1,-1,-1
354,-1,904.14,429.414,139.82,492.987,0.998221,-1,-1,-1
354,-1,1066.71,415.133,241.45,572.162,0.99803,-1,-1,-1
354,-1,89.2423,441.144,149.494,351.481,0.997864,-1,-1,-1
354,-1,330.021,413.367,171.911,371.785,0.997062,-1,-1,-1
354,-1,1858.13,448.615,51.15,206.954,0.957283,-1,-1,-1
354,-1,1673.57,428.941,77.1,161.439,0.93762,-1,-1,-1
354,-1,4.92491,432.906,92.0489,379.605,0.936474,-1,-1,-1
354,-1,680.781,470.44,68.151,127.468,0.740461,-1,-1,-1
355,-1,902.43,419.585,142.4,509.077,0.998475,-1,-1,-1
355,-1,1083.28,422.055,200.29,594.595,0.998196,-1,-1,-1
355,-1,102.866,457.104,133.9,336.464,0.995477,-1,-1,-1
355,-1,356.328,428.318,123.338,354.686,0.994223,-1,-1,-1
355,-1,2.12584,393.539,87.7744,451.237,0.980359,-1,-1,-1
355,-1,1838.85,429.9,69.77,233.041,0.963593,-1,-1,-1
355,-1,1676.8,429.666,75.86,159.912,0.905061,-1,-1,-1
355,-1,683.586,473.26,66.31,123.988,0.622973,-1,-1,-1
355,-1,1525.1,428.914,38.56,120.782,0.622351,-1,-1,-1
356,-1,909.251,424.918,131.829,501.543,0.997903,-1,-1,-1
356,-1,347.292,434.794,174.78,345.476,0.997699,-1,-1,-1
356,-1,1091.28,398.383,208.68,627.987,0.997371,-1,-1,-1
356,-1,107.987,430.444,143.81,352.091,0.994575,-1,-1,-1
356,-1,0,404.121,115.883,457.42,0.978523,-1,-1,-1
356,-1,1841.54,442.52,65.77,216.175,0.950156,-1,-1,-1
356,-1,1677.06,426.872,74.16,166.217,0.857551,-1,-1,-1
356,-1,675.87,459.197,67.92,119.806,0.784943,-1,-1,-1
356,-1,714.241,456.25,64.278,145.49,0.647524,-1,-1,-1
357,-1,903.881,423.223,144.149,516.585,0.998306,-1,-1,-1
357,-1,1089,399.455,189.52,604.035,0.997338,-1,-1,-1
357,-1,371.008,410.972,147.066,402.054,0.995698,-1,-1,-1
357,-1,0,463.763,129.579,390.219,0.995329,-1,-1,-1
357,-1,125.89,438.959,128.312,336.918,0.994355,-1,-1,-1
357,-1,1839.98,441.889,66.72,218.141,0.958125,-1,-1,-1
357,-1,1679.26,429.373,75.41,161.776,0.906213,-1,-1,-1
357,-1,677.079,461.947,67.664,114.619,0.840661,-1,-1,-1
357,-1,1046.1,429.685,64.98,248.541,0.756155,-1,-1,-1
358,-1,360.872,413.235,159.853,393.906,0.997478,-1,-1,-1
358,-1,137.551,445.739,122.694,363.645,0.996132,-1,-1,-1
358,-1,1092.16,379.621,180.05,621.949,0.995939,-1,-1,-1
358,-1,898.33,429.037,145.55,518.325,0.994877,-1,-1,-1
358,-1,10.9784,442.91,111.791,399.912,0.990347,-1,-1,-1
358,-1,1855.76,432.031,53.42,220.242,0.956042,-1,-1,-1
358,-1,1679.24,431.959,73.22,163.569,0.873048,-1,-1,-1
358,-1,674.437,460.911,73.153,114.405,0.76725,-1,-1,-1
358,-1,1050.96,431.829,69.09,231.624,0.689367,-1,-1,-1
359,-1,1098.46,398.911,194.17,615.639,0.996902,-1,-1,-1
359,-1,906.655,427.115,157.975,528.746,0.996079,-1,-1,-1
359,-1,155.372,453.247,105.297,324.94,0.994316,-1,-1,-1
359,-1,378.944,418.253,141.297,390.431,0.992507,-1,-1,-1
359,-1,21.6963,477.677,128.132,380.62,0.985727,-1,-1,-1
359,-1,1857,441.229,54.3,204.511,0.967102,-1,-1,-1
359,-1,1680.67,426.203,72.51,166.989,0.838987,-1,-1,-1
359,-1,676.45,469.958,64.203,113.627,0.820927,-1,-1,-1
359,-1,712.764,447.453,66.545,153.036,0.755264,-1,-1,-1
360,-1,1082.47,404.056,228.23,605.884,0.996486,-1,-1,-1
360,-1,888.235,428.024,164.945,511.343,0.995935,-1,-1,-1
360,-1,157.251,429.713,130.124,342.87,0.995536,-1,-1,-1
360,-1,377.726,417.681,153.829,395.389,0.995509,-1,-1,-1
360,-1,19.0788,458.347,136.936,388.004,0.98627,-1,-1,-1
360,-1,1842.62,447.398,66.6,206.226,0.959804,-1,-1,-1
360,-1,1675.08,432.873,74.82,158.243,0.924746,-1,-1,-1
360,-1,676.727,466.105,62.108,114.768,0.830937,-1,-1,-1
360,-1,711.541,475.922,52.654,112.242,0.784525,-1,-1,-1
361,-1,1074.43,398.306,211.9,574.94,0.997378,-1,-1,-1
361,-1,895.503,425.422,152.567,483.883,0.996862,-1,-1,-1
361,-1,388.923,412.297,155.133,379.741,0.995429,-1,-1,-1
361,-1,173.069,448.054,118.312,323.821,0.994771,-1,-1,-1
361,-1,7.31599,450.65,168.187,418.827,0.993809,-1,-1,-1
361,-1,1849.38,447.047,65.67,193.547,0.966256,-1,-1,-1
361,-1,1671.17,418.725,79.3,171.712,0.901642,-1,-1,-1
361,-1,688.409,449.974,70.096,146.41,0.789492,-1,-1,-1
362,-1,910.185,402.534,177.035,518.241,0.998064,-1,-1,-1
362,-1,1095.66,407.154,200.94,584.247,0.997926,-1,-1,-1
362,-1,0.399467,469.048,211.426,386.377,0.99365,-1,-1,-1
362,-1,402.174,417.693,135.267,372.347,0.993122,-1,-1,-1
362,-1,184.78,439.031,106.009,331.191,0.992743,-1,-1,-1
362,-1,1841.54,458.097,66.41,199.469,0.965397,-1,-1,-1
362,-1,1673.05,435.495,78.1,161.108,0.924374,-1,-1,-1
362,-1,684.551,447.443,74.678,146.384,0.751954,-1,-1,-1
362,-1,660.783,468.432,48.579,105.144,0.516843,-1,-1,-1
363,-1,916.98,420.818,161.5,507.116,0.99855,-1,-1,-1
363,-1,1102.88,411.463,190.85,576.981,0.997903,-1,-1,-1
363,-1,365.905,423.018,198.541,366.18,0.996665,-1,-1,-1
363,-1,15.2909,426.848,176.062,422.143,0.995317,-1,-1,-1
363,-1,197.677,428.936,97.36,346.4,0.992496,-1,-1,-1
363,-1,1841.79,459.753,66.81,198.474,0.962457,-1,-1,-1
363,-1,1670.95,435.401,78.23,161.311,0.92529,-1,-1,-1
363,-1,683.783,448.337,79.686,156.323,0.715362,-1,-1,-1
363,-1,663.132,467.733,59.671,99.375,0.518669,-1,-1,-1
364,-1,1091.16,394.377,203.32,598.812,0.998407,-1,-1,-1
364,-1,901.525,420.967,168.745,509.74,0.997476,-1,-1,-1
364,-1,386.559,417.96,163.863,373.415,0.994262,-1,-1,-1
364,-1,11.6771,441.222,204.628,401.652,0.993626,-1,-1,-1
364,-1,196.874,455.425,100.142,335.213,0.985448,-1,-1,-1
364,-1,1841.46,458.336,64.14,197.781,0.96625,-1,-1,-1
364,-1,1672.34,439.668,76.87,156.853,0.918317,-1,-1,-1
364,-1,685.033,452.254,80.942,146.297,0.719436,-1,-1,-1
365,-1,1099.25,405.082,193.02,575.666,0.998032,-1,-1,-1
365,-1,25.1187,420.314,178.117,437.776,0.997503,-1,-1,-1
365,-1,928.091,420.823,151.229,507.989,0.995824,-1,-1,-1
365,-1,404.201,415.671,161.402,365.956,0.99152,-1,-1,-1
365,-1,198.909,441.918,102.633,347.398,0.987622,-1,-1,-1
365,-1,1843.29,457.02,62.93,197.659,0.952252,-1,-1,-1
365,-1,1675.81,431.968,75.97,157.293,0.904567,-1,-1,-1
365,-1,683.837,456.732,79.96,137.404,0.779146,-1,-1,-1
366,-1,1093.84,384.584,187.08,642.416,0.998624,-1,-1,-1
366,-1,912.011,415.705,165.639,519.54,0.99809,-1,-1,-1
366,-1,44.315,436.415,165.771,392.085,0.99373,-1,-1,-1
366,-1,199.212,424.26,101.873,373.114,0.992485,-1,-1,-1
366,-1,419.754,421.528,147.339,362.557,0.987253,-1,-1,-1
366,-1,1842.36,454.628,65.41,201.279,0.956518,-1,-1,-1
366,-1,1676.39,436.187,74.89,157.356,0.922657,-1,-1,-1
366,-1,716.143,467.968,59.813,124.089,0.750762,-1,-1,-1
367,-1,1096.32,391.629,187.22,615.401,0.998664,-1,-1,-1
367,-1,920.823,419.634,156.667,502.173,0.998031,-1,-1,-1
367,-1,413.322,423.622,134.972,383.633,0.993912,-1,-1,-1
367,-1,51.8655,440.69,179.688,399.812,0.993244,-1,-1,-1
367,-1,204.758,427.63,97.752,365.215,0.988819,-1,-1,-1
367,-1,1840.13,455.787,67.74,200.036,0.964034,-1,-1,-1
367,-1,1672.08,432.054,76.42,161.497,0.917364,-1,-1,-1
367,-1,719.451,471.686,59.736,123.77,0.709311,-1,-1,-1
367,-1,679.15,468.86,69.392,120.783,0.657788,-1,-1,-1
368,-1,1095.5,389.856,192.8,620.534,0.99865,-1,-1,-1
368,-1,933.1,439.46,134.75,479.641,0.997208,-1,-1,-1
368,-1,414.409,434.646,160.285,351.572,0.994151,-1,-1,-1
368,-1,79.4321,451.352,152.428,368.604,0.991847,-1,-1,-1
368,-1,224.072,446.346,105.007,321.136,0.991297,-1,-1,-1
368,-1,1839.87,452.688,69.73,202.783,0.969279,-1,-1,-1
368,-1,1674.63,439.908,73.47,153.408,0.949448,-1,-1,-1
368,-1,672.359,467.931,70.475,115.08,0.636923,-1,-1,-1
369,-1,1093.72,388.46,195.31,615.56,0.998661,-1,-1,-1
369,-1,927.821,425.483,147.059,491.151,0.997808,-1,-1,-1
369,-1,229.94,447.214,111.062,329.703,0.990096,-1,-1,-1
369,-1,439.372,429.652,120.989,357.405,0.982918,-1,-1,-1
369,-1,92.8907,449.008,133.088,386.84,0.982111,-1,-1,-1
369,-1,1838.51,445.957,72.08,209.43,0.968643,-1,-1,-1
369,-1,1672.58,434.502,75.37,155.478,0.967314,-1,-1,-1
369,-1,677.624,461.397,101.331,127.744,0.501453,-1,-1,-1
370,-1,1097.77,391.343,187.28,604.596,0.99809,-1,-1,-1
370,-1,923.751,417.179,157.959,520.693,0.997976,-1,-1,-1
370,-1,441.122,435.48,130.233,327.173,0.993648,-1,-1,-1
370,-1,238.277,450.639,113.546,334.136,0.988137,-1,-1,-1
370,-1,82.9472,443.674,165.654,348.865,0.984226,-1,-1,-1
370,-1,1842.26,451.47,66.67,202.828,0.95614,-1,-1,-1
370,-1,1672.81,431.863,72.37,157.34,0.945456,-1,-1,-1
371,-1,1098.96,403.628,190.04,589.071,0.997915,-1,-1,-1
371,-1,934.708,437.157,156.952,480.844,0.994812,-1,-1,-1
371,-1,435.846,446.328,169.608,348.379,0.994773,-1,-1,-1
371,-1,222.574,447.717,133.579,331.797,0.991915,-1,-1,-1
371,-1,96.9734,443.315,154.929,374.571,0.985673,-1,-1,-1
371,-1,1838.15,453.837,70.7,197.887,0.963885,-1,-1,-1
371,-1,1674.16,428.197,73.15,158.896,0.936389,-1,-1,-1
371,-1,1265.75,436.491,69.04,91.99,0.517695,-1,-1,-1
372,-1,1103.61,425.63,202.08,553.944,0.997473,-1,-1,-1
372,-1,938.807,423.167,154.103,525.307,0.996158,-1,-1,-1
372,-1,457.261,427.25,127.763,359.449,0.994965,-1,-1,-1
372,-1,232.753,454.877,136.448,300.154,0.989273,-1,-1,-1
372,-1,105.452,436.797,160.396,373.362,0.985799,-1,-1,-1
372,-1,1840.98,458.665,66.83,194.833,0.961007,-1,-1,-1
372,-1,1672.16,426.497,74.11,162.486,0.946234,-1,-1,-1
372,-1,1264.91,435.057,66.2,91.488,0.675441,-1,-1,-1
373,-1,934.209,426.817,155.971,501.098,0.997404,-1,-1,-1
373,-1,470.641,400.592,139.13,390.42,0.9938,-1,-1,-1
373,-1,1098.54,436.76,203.92,568.8,0.99069,-1,-1,-1
373,-1,231.707,449.209,162.462,318.786,0.97524,-1,-1,-1
373,-1,92.1414,462.206,220.157,357.445,0.963937,-1,-1,-1
373,-1,1669.89,424.259,76.16,163.71,0.962966,-1,-1,-1
373,-1,1841.65,448.404,70.18,211.679,0.962354,-1,-1,-1
374,-1,1090.44,422.178,198.6,573.061,0.997909,-1,-1,-1
374,-1,466.629,419.17,140.749,345.284,0.997401,-1,-1,-1
374,-1,935.767,429.047,151.693,509.161,0.997129,-1,-1,-1
374,-1,241.148,458.727,142.549,341.734,0.973863,-1,-1,-1
374,-1,94.6097,449.255,236.444,380.295,0.966287,-1,-1,-1
374,-1,1845.05,460.436,64.38,188.934,0.956284,-1,-1,-1
374,-1,1675.35,420.635,76.74,173.018,0.914494,-1,-1,-1
375,-1,1104.01,400.762,207.4,614.298,0.997688,-1,-1,-1
375,-1,473.986,420.133,146.748,344.004,0.997567,-1,-1,-1
375,-1,937,432.281,148.13,495.794,0.996149,-1,-1,-1
375,-1,267.766,441.843,141.323,326.799,0.985235,-1,-1,-1
375,-1,125.936,448.108,221.567,364.396,0.98274,-1,-1,-1
375,-1,1861.01,468.663,49.25,180.339,0.954599,-1,-1,-1
375,-1,1669.18,414.378,87.98,176.07,0.935276,-1,-1,-1
376,-1,1099.28,408.999,212.64,581.494,0.997642,-1,-1,-1
376,-1,958.168,444.655,134.322,481.068,0.996995,-1,-1,-1
376,-1,491.543,399.44,114.901,378.193,0.99683,-1,-1,-1
376,-1,134.842,455.839,183.904,361.12,0.990255,-1,-1,-1
376,-1,251.638,461.403,144.707,284.006,0.988406,-1,-1,-1
376,-1,1847.45,448.221,62.65,207.454,0.957088,-1,-1,-1
376,-1,1669.23,416.495,84.01,173.606,0.927704,-1,-1,-1
376,-1,3.48771,452.916,79.3948,363.752,0.91261,-1,-1,-1
377,-1,1085.57,392.289,211.25,604.005,0.997746,-1,-1,-1
377,-1,504.025,424.933,116.221,335.213,0.995866,-1,-1,-1
377,-1,932.311,427.514,163.899,524.05,0.994883,-1,-1,-1
377,-1,133.204,454.373,187.043,376.447,0.993531,-1,-1,-1
377,-1,2.08891,393.339,93.1882,454.317,0.979223,-1,-1,-1
377,-1,279.852,456.762,131.325,300.4,0.969891,-1,-1,-1
377,-1,1673.78,418.468,79.59,181.392,0.962346,-1,-1,-1
377,-1,1845.36,447.989,62.9,201.438,0.952104,-1,-1,-1
378,-1,1100.75,388.254,202.61,629.616,0.996908,-1,-1,-1
378,-1,501.927,406.853,126.244,355.407,0.994348,-1,-1,-1
378,-1,138.639,439.761,233.516,375.852,0.993372,-1,-1,-1
378,-1,930.999,413.94,170.111,524.074,0.992157,-1,-1,-1
378,-1,1.28909,397.908,104.909,461.413,0.989489,-1,-1,-1
378,-1,299.769,457.353,106.522,289.689,0.976276,-1,-1,-1
378,-1,1672.61,418.362,82.61,181.489,0.96172,-1,-1,-1
378,-1,1845.28,447.038,63.41,201.006,0.947572,-1,-1,-1
379,-1,1084.53,384.077,240.74,610.126,0.998282,-1,-1,-1
379,-1,954.75,409.63,144.88,521.892,0.996167,-1,-1,-1
379,-1,122.038,462.219,254.962,380.897,0.993923,-1,-1,-1
379,-1,499.136,425.452,121.007,342.023,0.99363,-1,-1,-1
379,-1,312.55,453.198,109.097,319.147,0.989999,-1,-1,-1
379,-1,3.4222,411.625,107.875,404.054,0.968918,-1,-1,-1
379,-1,1665.26,425.181,91.79,179.944,0.959894,-1,-1,-1
379,-1,1845.81,449.498,61.38,201.899,0.951429,-1,-1,-1
380,-1,1084.68,384.901,243.11,597.427,0.998573,-1,-1,-1
380,-1,961.678,414.417,142.462,538.552,0.996512,-1,-1,-1
380,-1,502.709,417.192,146.942,360.596,0.995103,-1,-1,-1
380,-1,123.289,458.439,273.503,371.121,0.994211,-1,-1,-1
380,-1,3.03823,398.006,118.259,412.139,0.981441,-1,-1,-1
380,-1,317.135,447.88,99.726,324.087,0.975443,-1,-1,-1
380,-1,1670.71,419.366,83.3,177.712,0.966988,-1,-1,-1
380,-1,1846.57,453.524,61.48,194.454,0.937893,-1,-1,-1
381,-1,1094.79,406.763,237.16,606.907,0.999002,-1,-1,-1
381,-1,958.646,421.71,150.074,512.072,0.996837,-1,-1,-1
381,-1,155.378,444.833,204.376,369.773,0.995712,-1,-1,-1
381,-1,501.041,433.143,147.709,324.571,0.995346,-1,-1,-1
381,-1,321.005,452.646,111.367,299.592,0.986511,-1,-1,-1
381,-1,9.0769,411.722,125.586,390.79,0.948484,-1,-1,-1
381,-1,1854.67,463.614,46.78,193.341,0.936029,-1,-1,-1
381,-1,1672.48,412.355,81.12,170.508,0.933887,-1,-1,-1
382,-1,1077.62,398.779,248.95,621.381,0.999111,-1,-1,-1
382,-1,519.107,401.369,137.449,371.04,0.997506,-1,-1,-1
382,-1,964.643,425.919,146.557,517.16,0.996407,-1,-1,-1
382,-1,175.029,444.625,194.618,364.918,0.995366,-1,-1,-1
382,-1,333.378,451.449,106.154,281.483,0.987362,-1,-1,-1
382,-1,16.0593,424.831,121.65,378.59,0.986465,-1,-1,-1
382,-1,1857.31,451.663,48.65,209.671,0.937264,-1,-1,-1
382,-1,1665.22,423.153,92.95,174.749,0.883369,-1,-1,-1
383,-1,1073.35,407.789,264.78,574.964,0.997797,-1,-1,-1
383,-1,525.467,411.638,144.62,341.96,0.997354,-1,-1,-1
383,-1,947.286,407.146,157.024,528.092,0.994776,-1,-1,-1
383,-1,21.4085,416.632,146.758,411.663,0.994574,-1,-1,-1
383,-1,152.645,476.416,245.36,351.303,0.993205,-1,-1,-1
383,-1,356.197,450.941,89.127,260.318,0.974708,-1,-1,-1
383,-1,1846.39,447.094,65.03,209.7,0.96593,-1,-1,-1
383,-1,1676.29,419.777,75.08,171.904,0.783145,-1,-1,-1
384,-1,1075.06,385.415,262.5,607.503,0.998741,-1,-1,-1
384,-1,207.999,458.625,153.905,359.956,0.996744,-1,-1,-1
384,-1,948.831,405.504,155.689,547.88,0.996608,-1,-1,-1
384,-1,538.139,398.031,127.807,353.834,0.99352,-1,-1,-1
384,-1,23.2115,417.764,134.466,423.343,0.989662,-1,-1,-1
384,-1,356.327,433.825,91.977,325.702,0.956721,-1,-1,-1
384,-1,1847.14,448.178,63.87,207.991,0.953456,-1,-1,-1
384,-1,1664.68,425.067,92.41,175.017,0.86126,-1,-1,-1
385,-1,1066.84,395.897,269.91,590.307,0.997997,-1,-1,-1
385,-1,14.0768,430.48,150.252,380.148,0.997738,-1,-1,-1
385,-1,948.612,414.07,158.128,520.746,0.996658,-1,-1,-1
385,-1,229.988,456.031,126.39,333.414,0.995682,-1,-1,-1
385,-1,522.494,417.7,164.175,318.499,0.99183,-1,-1,-1
385,-1,361.169,449.693,101.125,294.026,0.985351,-1,-1,-1
385,-1,1846.12,455.457,63.8,195.49,0.96024,-1,-1,-1
385,-1,1682.45,425.457,85.29,173.697,0.847867,-1,-1,-1
386,-1,1078.24,422.105,255.81,543.288,0.997599,-1,-1,-1
386,-1,15.9903,450.422,160,350.989,0.997183,-1,-1,-1
386,-1,951.77,410.397,159.19,540.908,0.994919,-1,-1,-1
386,-1,238.129,457.945,122.979,353.702,0.994758,-1,-1,-1
386,-1,358.483,462.941,114.977,273.785,0.994031,-1,-1,-1
386,-1,529.425,405.727,138.085,337.415,0.992268,-1,-1,-1
386,-1,1844.6,454.002,63.67,192.831,0.949645,-1,-1,-1
386,-1,1676.96,427.203,76.58,174.52,0.927817,-1,-1,-1
387,-1,31.4108,442.256,157.359,370.628,0.997606,-1,-1,-1
387,-1,543.455,408.113,127.903,360.514,0.995028,-1,-1,-1
387,-1,254.24,450.114,129.364,345.429,0.994684,-1,-1,-1
387,-1,950.883,419.015,170.077,521.915,0.993808,-1,-1,-1
387,-1,364.843,444.47,115.653,310.158,0.992822,-1,-1,-1
387,-1,1064.16,421.844,264.58,564.695,0.99209,-1,-1,-1
387,-1,1673.05,418.062,75.17,167.066,0.934608,-1,-1,-1
387,-1,1845.87,466.52,61.73,178.9,0.93321,-1,-1,-1
387,-1,935.478,456.753,55.919,149.721,0.744354,-1,-1,-1
388,-1,41.3887,435.466,142.536,361.536,0.997313,-1,-1,-1
388,-1,549.892,395.966,127.726,371.65,0.994958,-1,-1,-1
388,-1,970.329,426.284,406.061,532.546,0.99476,-1,-1,-1
388,-1,363.937,451.162,113.589,292.248,0.989438,-1,-1,-1
388,-1,251.08,447.736,126.202,348.523,0.987056,-1,-1,-1
388,-1,1672.52,414.431,81.02,186.005,0.947348,-1,-1,-1
388,-1,1846.24,470.771,59.77,170.739,0.944172,-1,-1,-1
388,-1,933.76,443.402,57.983,165.397,0.643162,-1,-1,-1
389,-1,46.0413,437.142,136.586,356.278,0.997434,-1,-1,-1
389,-1,982.531,406.656,378.519,539.637,0.994993,-1,-1,-1
389,-1,557.426,405.947,124.33,347.052,0.994726,-1,-1,-1
389,-1,256.657,428.177,122.684,347.061,0.987696,-1,-1,-1
389,-1,378.23,461.289,104.312,288.066,0.980346,-1,-1,-1
389,-1,1672.46,420.086,81.31,178.046,0.967499,-1,-1,-1
389,-1,1843.88,469.677,61.83,173.392,0.947049,-1,-1,-1
389,-1,939.894,435.251,178.686,492.186,0.73106,-1,-1,-1
390,-1,43.4002,424.023,156.363,385.695,0.997401,-1,-1,-1
390,-1,562.932,398.146,124.309,367.395,0.996657,-1,-1,-1
390,-1,987.162,407.634,367.898,553.144,0.991455,-1,-1,-1
390,-1,378.991,454.778,108.652,307.635,0.987071,-1,-1,-1
390,-1,274.292,446.794,134.806,364.301,0.975515,-1,-1,-1
390,-1,1678.37,431.842,74.28,164.26,0.954877,-1,-1,-1
390,-1,1844.53,465.495,64.19,182.584,0.938697,-1,-1,-1
390,-1,935.277,441.819,57.383,177.522,0.82837,-1,-1,-1
390,-1,941.744,426.872,173.646,493.529,0.733657,-1,-1,-1
391,-1,569.99,389.129,115.091,372.528,0.997356,-1,-1,-1
391,-1,63.6928,429.396,147.209,355.77,0.997261,-1,-1,-1
391,-1,1074.37,402.509,235.86,617.191,0.992035,-1,-1,-1
391,-1,250.787,442.812,172.646,351.936,0.991858,-1,-1,-1
391,-1,960.692,413.017,160.178,542.873,0.986174,-1,-1,-1
391,-1,387.482,453.008,114.156,280.52,0.984066,-1,-1,-1
391,-1,1667.27,412.901,84.5,178.584,0.96931,-1,-1,-1
391,-1,1845.13,473.111,63.53,174.044,0.91681,-1,-1,-1
391,-1,924.458,449.615,54.607,133.441,0.579212,-1,-1,-1
392,-1,577.163,399.981,123.283,340.06,0.996578,-1,-1,-1
392,-1,95.8702,431.701,116.985,340.338,0.996268,-1,-1,-1
392,-1,250.315,460.852,200.818,324.566,0.996216,-1,-1,-1
392,-1,1046.13,417.929,287.94,571.678,0.994074,-1,-1,-1
392,-1,961.782,404.951,172.908,562.912,0.981107,-1,-1,-1
392,-1,416.974,440.256,90.808,297.953,0.973509,-1,-1,-1
392,-1,1661.71,423.264,101.28,172.178,0.954697,-1,-1,-1
392,-1,930.579,449.996,58.213,149.988,0.913535,-1,-1,-1
392,-1,1847.78,464.933,60.96,178.778,0.901124,-1,-1,-1
393,-1,77.0887,405.717,162.56,399.765,0.996915,-1,-1,-1
393,-1,574.947,426.903,136.964,328.996,0.996514,-1,-1,-1
393,-1,285.073,444.556,148.708,364.282,0.995562,-1,-1,-1
393,-1,990.555,425.771,362.135,540.101,0.994947,-1,-1,-1
393,-1,426.068,457.861,81.42,283.298,0.961422,-1,-1,-1
393,-1,1660.25,423.325,102.19,178.905,0.954671,-1,-1,-1
393,-1,1847.54,455.894,61.81,193.632,0.92338,-1,-1,-1
393,-1,926.109,454.139,58.65,152.65,0.820021,-1,-1,-1
393,-1,952.657,419.376,152.483,483.543,0.551592,-1,-1,-1
394,-1,575.082,401.983,114.155,331.894,0.997364,-1,-1,-1
394,-1,1031.57,426.425,301.92,576.355,0.996033,-1,-1,-1
394,-1,300.733,450.381,130.45,349.455,0.993695,-1,-1,-1
394,-1,961.779,443.753,169.441,495.088,0.981312,-1,-1,-1
394,-1,99.2516,403.743,125.292,344.723,0.974633,-1,-1,-1
394,-1,411.755,462.182,100.811,283.992,0.972751,-1,-1,-1
394,-1,1846.53,455.894,61.27,190.634,0.940681,-1,-1,-1
394,-1,1661.13,424.712,99.2,174.452,0.930578,-1,-1,-1
394,-1,923.229,442.111,58.259,165.988,0.809233,-1,-1,-1
395,-1,586.982,412.288,125.005,327.41,0.992955,-1,-1,-1
395,-1,277.597,460.635,178.635,340.821,0.991522,-1,-1,-1
395,-1,1043.78,410.944,292.54,590.616,0.991439,-1,-1,-1
395,-1,89.2018,417.718,157.737,379.05,0.991401,-1,-1,-1
395,-1,961.851,431.979,168.399,507.769,0.978254,-1,-1,-1
395,-1,1671.28,420.86,78.13,172.405,0.957784,-1,-1,-1
395,-1,1845.96,449.218,64,198.62,0.954816,-1,-1,-1
395,-1,428.814,457.267,94.576,289.265,0.945485,-1,-1,-1
395,-1,928.972,446.545,64.014,180.622,0.9221,-1,-1,-1
396,-1,983.412,418.081,378.408,555.325,0.99785,-1,-1,-1
396,-1,93.8646,455.683,165.254,337.008,0.995599,-1,-1,-1
396,-1,311.629,467.695,136.15,316.934,0.994096,-1,-1,-1
396,-1,595.281,382.518,96.501,369.987,0.991175,-1,-1,-1
396,-1,441.773,454.862,92.271,298.695,0.979289,-1,-1,-1
396,-1,1672.96,417.669,83.16,180.11,0.967969,-1,-1,-1
396,-1,1844.69,447.026,64.42,199.424,0.955737,-1,-1,-1
396,-1,968.624,413.783,136.886,499.164,0.939028,-1,-1,-1
396,-1,932.894,446.877,57.759,177.537,0.884141,-1,-1,-1
397,-1,998.625,406.184,364.695,566.435,0.997612,-1,-1,-1
397,-1,278.731,463.304,226.594,338.716,0.995886,-1,-1,-1
397,-1,135.269,450.45,109.041,337.168,0.9915,-1,-1,-1
397,-1,599.341,391.414,122.961,370.922,0.991159,-1,-1,-1
397,-1,969.86,433.652,156.24,514.83,0.978733,-1,-1,-1
397,-1,441.169,470.152,91.953,275.241,0.96333,-1,-1,-1
397,-1,1673.12,412.294,81.46,182.035,0.959159,-1,-1,-1
397,-1,1845.52,449.047,62.25,197.121,0.958299,-1,-1,-1
397,-1,913.952,462.107,49.404,147.674,0.723868,-1,-1,-1
397,-1,720.318,478.759,53.555,128.371,0.678324,-1,-1,-1
398,-1,1051.72,391.572,283.72,621.558,0.995914,-1,-1,-1
398,-1,316.537,468.071,150.47,330.476,0.993669,-1,-1,-1
398,-1,974.353,423.491,129.757,520.739,0.991705,-1,-1,-1
398,-1,603.627,400.566,98.461,337.392,0.989916,-1,-1,-1
398,-1,108.821,437.968,164.934,357.107,0.989225,-1,-1,-1
398,-1,1672.11,417.93,80.89,179.072,0.960522,-1,-1,-1
398,-1,1846.98,453.89,61.29,191.642,0.956409,-1,-1,-1
398,-1,445.437,467.438,93.544,280.098,0.951599,-1,-1,-1
398,-1,719.242,473.666,49.703,130.951,0.630776,-1,-1,-1
399,-1,316.898,454.79,151.388,340.721,0.995022,-1,-1,-1
399,-1,973.643,420.133,136.427,500.56,0.995015,-1,-1,-1
399,-1,1055.35,419.17,282.66,567.319,0.993525,-1,-1,-1
399,-1,129.621,414.844,142.227,375.439,0.992096,-1,-1,-1
399,-1,606.152,409.847,101.59,319.497,0.989613,-1,-1,-1
399,-1,451.654,442.461,92.436,312.323,0.984926,-1,-1,-1
399,-1,1671.29,412.106,79.94,178.349,0.964184,-1,-1,-1
399,-1,1847.14,454.521,60.56,190.39,0.930137,-1,-1,-1
400,-1,331.806,451.709,135.094,343.406,0.997197,-1,-1,-1
400,-1,966.084,412.812,153.476,529.371,0.994273,-1,-1,-1
400,-1,1051.55,414.516,270.12,588.254,0.99127,-1,-1,-1
400,-1,617.556,392.124,110.028,337.962,0.989129,-1,-1,-1
400,-1,456.422,456.4,90.914,272.658,0.98757,-1,-1,-1
400,-1,130.4,441.931,155.703,345.702,0.978619,-1,-1,-1
400,-1,1670.3,411.233,83.66,177.7,0.956156,-1,-1,-1
400,-1,1848.07,459.699,58.91,187.305,0.937042,-1,-1,-1
400,-1,713.464,469.401,45.072,157.326,0.51308,-1,-1,-1
401,-1,1068.92,388.628,254.24,622.102,0.996715,-1,-1,-1
401,-1,147.337,446.052,137.331,343.886,0.995898,-1,-1,-1
401,-1,966.077,412.656,153.273,546.572,0.994036,-1,-1,-1
401,-1,328.375,445.305,139.799,337.331,0.984504,-1,-1,-1
401,-1,595.527,416.84,122.382,318.998,0.983944,-1,-1,-1
401,-1,475.091,467.052,91.572,285.662,0.978473,-1,-1,-1
401,-1,1669.08,415.693,81.44,178.828,0.960362,-1,-1,-1
401,-1,1847.23,467.253,60.1,174.581,0.936721,-1,-1,-1
401,-1,714.131,484.44,42.09,154.212,0.66345,-1,-1,-1
401,-1,911.694,462.288,46.86,141.418,0.633831,-1,-1,-1
402,-1,320.33,457.528,184.858,314.067,0.994562,-1,-1,-1
402,-1,150.422,454.661,143.263,345.764,0.993622,-1,-1,-1
402,-1,1063.99,405.045,249.17,604.855,0.992983,-1,-1,-1
402,-1,609.323,416.483,137.535,301.192,0.992345,-1,-1,-1
402,-1,970.855,425.339,138.175,497.224,0.992003,-1,-1,-1
402,-1,494.588,457.754,82.111,271.221,0.958991,-1,-1,-1
402,-1,1669.87,416.236,77.96,179.922,0.944541,-1,-1,-1
402,-1,1848.21,456.28,61.99,187.819,0.938937,-1,-1,-1
402,-1,909.729,461.348,48.39,144.852,0.723268,-1,-1,-1
403,-1,156.189,442.439,150.073,354.376,0.995649,-1,-1,-1
403,-1,610.525,414.458,145.614,311.627,0.994885,-1,-1,-1
403,-1,1058.1,406.989,254.45,609.461,0.993931,-1,-1,-1
403,-1,969.208,412.36,143.392,545.709,0.990141,-1,-1,-1
403,-1,366.688,457.278,125.32,316.419,0.987944,-1,-1,-1
403,-1,500.528,479.591,85.038,254.184,0.987794,-1,-1,-1
403,-1,1673.21,425.692,73.7,171.704,0.934838,-1,-1,-1
403,-1,1848.6,446.648,61.1,201.425,0.934341,-1,-1,-1
403,-1,907.087,445.629,50.587,164.824,0.549013,-1,-1,-1
404,-1,1050.39,413.105,256.28,614.235,0.997784,-1,-1,-1
404,-1,175.091,434.283,124.766,347.333,0.995076,-1,-1,-1
404,-1,380.76,456.452,111.176,314.691,0.991746,-1,-1,-1
404,-1,619.343,425.081,150.772,298.358,0.991088,-1,-1,-1
404,-1,969.782,422.764,140.138,544.898,0.986762,-1,-1,-1
404,-1,485.914,456.109,108.837,280.974,0.983079,-1,-1,-1
404,-1,1848.63,448.765,63.61,205.818,0.951934,-1,-1,-1
404,-1,1670.18,422.336,78.03,175.955,0.910622,-1,-1,-1
405,-1,1039.89,386.563,278.8,650.567,0.997174,-1,-1,-1
405,-1,622.73,414.61,156.142,302.965,0.994142,-1,-1,-1
405,-1,176.754,441.393,137.1,339.205,0.992898,-1,-1,-1
405,-1,381.843,471.612,121.172,298.032,0.987945,-1,-1,-1
405,-1,496.68,448.986,104.652,277.32,0.986969,-1,-1,-1
405,-1,967.178,424.434,151.342,549.723,0.975804,-1,-1,-1
405,-1,1847.56,457.082,63.94,193.281,0.94396,-1,-1,-1
405,-1,1658.02,422.887,98.93,173.528,0.932361,-1,-1,-1
406,-1,1055.53,407.159,273,609.861,0.997344,-1,-1,-1
406,-1,628.838,419.935,150.817,317.363,0.991574,-1,-1,-1
406,-1,178.155,416.136,147.813,368.812,0.989852,-1,-1,-1
406,-1,966.927,441.483,150.273,515.504,0.988203,-1,-1,-1
406,-1,491.151,452.763,92.445,275.201,0.981598,-1,-1,-1
406,-1,393.067,448.66,121.36,319.579,0.979542,-1,-1,-1
406,-1,1669.2,422.043,78.26,175.606,0.94969,-1,-1,-1
406,-1,1848.22,460.518,62.12,185.375,0.943244,-1,-1,-1
407,-1,1032.85,398.303,293.9,636.247,0.997796,-1,-1,-1
407,-1,625.617,435.197,138.956,314.063,0.992937,-1,-1,-1
407,-1,204.862,426.815,128.671,345.092,0.992707,-1,-1,-1
407,-1,965.925,419.241,151.175,549.707,0.988694,-1,-1,-1
407,-1,503.472,446.985,115.399,289.019,0.985133,-1,-1,-1
407,-1,378.303,456.135,118.796,296.018,0.976568,-1,-1,-1
407,-1,1670.45,429.42,74.55,166.724,0.961187,-1,-1,-1
407,-1,1846.56,459.953,63.52,193.655,0.954819,-1,-1,-1
408,-1,1056.67,434.049,247.48,596.941,0.997488,-1,-1,-1
408,-1,632.956,431.013,153.071,300.855,0.995031,-1,-1,-1
408,-1,206.413,446.821,133.57,323.695,0.992534,-1,-1,-1
408,-1,968.367,417.735,143.793,546.572,0.987598,-1,-1,-1
408,-1,380.633,455.62,168.334,314.945,0.982669,-1,-1,-1
408,-1,1846.55,446.466,67.02,207.742,0.955968,-1,-1,-1
408,-1,516.629,450.355,89.129,271.418,0.949288,-1,-1,-1
408,-1,881.927,457.917,58.171,141.572,0.891368,-1,-1,-1
408,-1,1669.79,430.494,78.81,159.977,0.884522,-1,-1,-1
409,-1,1046.6,408.493,252.29,618.617,0.998046,-1,-1,-1
409,-1,643.185,423.02,149.799,326.811,0.995214,-1,-1,-1
409,-1,224.784,430.666,130.537,348.978,0.992992,-1,-1,-1
409,-1,967.37,429.921,140.05,529.877,0.981845,-1,-1,-1
409,-1,410.745,439.473,116.164,314.992,0.979239,-1,-1,-1
409,-1,1677.27,404.974,99.83,181.179,0.93837,-1,-1,-1
409,-1,1851.01,439.125,60.74,224.727,0.924963,-1,-1,-1
409,-1,508.625,441.151,90.769,244.241,0.891631,-1,-1,-1
409,-1,875.399,446.608,58.851,151.467,0.862571,-1,-1,-1
410,-1,1050.69,415.363,242.14,616.467,0.998006,-1,-1,-1
410,-1,647.136,433.452,140.991,318.994,0.995665,-1,-1,-1
410,-1,238.564,441.322,109.311,325.95,0.989352,-1,-1,-1
410,-1,966.192,413.19,144.018,526.249,0.988659,-1,-1,-1
410,-1,498.459,438.084,108.17,294.1,0.96383,-1,-1,-1
410,-1,415.557,442.587,111.479,325.13,0.956524,-1,-1,-1
410,-1,1670.72,431.56,75.88,165.424,0.951037,-1,-1,-1
410,-1,1862.47,441.439,49.5,206.368,0.943272,-1,-1,-1
411,-1,1043.53,407.18,267.31,630.32,0.997646,-1,-1,-1
411,-1,646.418,396.988,134.468,355.017,0.996459,-1,-1,-1
411,-1,232.731,429.56,121.059,350.381,0.994312,-1,-1,-1
411,-1,952.394,412.662,140.066,509.162,0.991393,-1,-1,-1
411,-1,398.699,446.429,121.451,323.232,0.954322,-1,-1,-1
411,-1,1676.38,436.032,69.8,159.892,0.951105,-1,-1,-1
411,-1,1862.53,445.379,47.96,202.82,0.932317,-1,-1,-1
411,-1,519.355,447.491,110.082,269.977,0.906275,-1,-1,-1
412,-1,1052.82,425.735,237.71,590.325,0.996597,-1,-1,-1
412,-1,675.152,411.02,105.991,327.51,0.992933,-1,-1,-1
412,-1,408.114,445.133,118.899,329.476,0.988346,-1,-1,-1
412,-1,265.205,425.115,98.015,329.238,0.987035,-1,-1,-1
412,-1,965.322,406.963,148.598,536.65,0.973319,-1,-1,-1
412,-1,1679.65,434.995,70.04,161.401,0.943867,-1,-1,-1
412,-1,1843.74,450.059,71.94,212.673,0.926302,-1,-1,-1
412,-1,550.591,431.736,84.57,285.045,0.895416,-1,-1,-1
413,-1,1028.45,386.073,293.01,633.497,0.996747,-1,-1,-1
413,-1,645.432,410.578,138.785,312.422,0.988632,-1,-1,-1
413,-1,268.381,425.575,107.499,360.727,0.982156,-1,-1,-1
413,-1,430.386,451.401,111.837,305.93,0.981899,-1,-1,-1
413,-1,1844.17,454.555,70.98,205.945,0.957799,-1,-1,-1
413,-1,962.134,410.497,163.036,513.286,0.952316,-1,-1,-1
413,-1,1678.07,434.997,68.54,163.579,0.93796,-1,-1,-1
413,-1,541.278,427.786,97.198,299.042,0.93344,-1,-1,-1
414,-1,1025.81,390.858,291.4,634.392,0.996523,-1,-1,-1
414,-1,271.303,445.453,114.848,325.952,0.992262,-1,-1,-1
414,-1,667.931,411.182,134.34,318.553,0.991305,-1,-1,-1
414,-1,412.65,452.949,167.331,307.315,0.989177,-1,-1,-1
414,-1,552.275,434.067,103.248,309.95,0.95994,-1,-1,-1
414,-1,1849.51,442.903,55.21,208.469,0.950296,-1,-1,-1
414,-1,1664.48,424.809,89.26,168.646,0.924301,-1,-1,-1
414,-1,970.367,420.64,139.843,502.011,0.917649,-1,-1,-1
415,-1,1021.49,405.064,291.97,614.526,0.997534,-1,-1,-1
415,-1,274.603,463.742,129.96,318.747,0.993695,-1,-1,-1
415,-1,673.323,415.337,132.653,315.655,0.992694,-1,-1,-1
415,-1,416.984,463.505,187.505,286.749,0.981025,-1,-1,-1
415,-1,953.51,406.239,169.71,488.738,0.972735,-1,-1,-1
415,-1,540.431,435.16,123.122,293.091,0.966787,-1,-1,-1
415,-1,1664.5,423.109,90.53,171.525,0.936275,-1,-1,-1
415,-1,1840.76,448.808,74.49,214.878,0.911744,-1,-1,-1
415,-1,868.38,458.601,47.494,123.979,0.781902,-1,-1,-1
416,-1,974.625,423.607,362.265,567.248,0.996785,-1,-1,-1
416,-1,689.438,400.123,97.216,339.923,0.995971,-1,-1,-1
416,-1,269.76,460.004,143.944,313.324,0.994907,-1,-1,-1
416,-1,420.927,445.129,141.362,313.213,0.986548,-1,-1,-1
416,-1,1677.91,424.231,68.09,169.102,0.949192,-1,-1,-1
416,-1,563.231,438.802,92.753,286.51,0.915165,-1,-1,-1
416,-1,1850.92,445.142,55.19,224.048,0.912547,-1,-1,-1
416,-1,869.554,457.936,43.704,122.181,0.843557,-1,-1,-1
416,-1,1187.18,420.407,71.75,182.165,0.527465,-1,-1,-1
417,-1,986.564,403.676,331.736,614.794,0.998549,-1,-1,-1
417,-1,261.574,449.348,178.035,311.448,0.994894,-1,-1,-1
417,-1,692.265,425.697,95.369,295.937,0.993668,-1,-1,-1
417,-1,422.241,448.37,148.184,319.254,0.976781,-1,-1,-1
417,-1,565.936,439.167,97.33,279.317,0.972962,-1,-1,-1
417,-1,1844.81,468.943,69.98,190.865,0.961133,-1,-1,-1
417,-1,1677.99,424.484,67.32,170.44,0.945966,-1,-1,-1
417,-1,866.07,454.843,44.652,122.143,0.818172,-1,-1,-1
417,-1,1209.95,445.097,55.63,155.483,0.726367,-1,-1,-1
418,-1,993.333,390.329,311.337,622.531,0.998642,-1,-1,-1
418,-1,696.766,403.226,107.363,338.221,0.997366,-1,-1,-1
418,-1,270.073,440.151,143.522,316.591,0.98907,-1,-1,-1
418,-1,433.743,462.254,166.746,306.085,0.977914,-1,-1,-1
418,-1,1850.47,457.172,60.7,187.616,0.954316,-1,-1,-1
418,-1,565.855,406.445,112.825,323.031,0.942042,-1,-1,-1
418,-1,1675.66,425.313,69.58,171.67,0.935233,-1,-1,-1
418,-1,849.138,444.111,63.732,139.337,0.793292,-1,-1,-1
418,-1,1189.14,444.821,88.79,258.429,0.747083,-1,-1,-1
419,-1,992.523,410.173,301.647,598.797,0.999001,-1,-1,-1
419,-1,690.543,405.563,115.483,324.107,0.996735,-1,-1,-1
419,-1,283.693,447.399,133.942,319.204,0.992518,-1,-1,-1
419,-1,467.678,458.064,115.571,287.282,0.980013,-1,-1,-1
419,-1,1850.12,465.054,58.95,176.272,0.951404,-1,-1,-1
419,-1,588.838,424.049,98.924,273.344,0.930324,-1,-1,-1
419,-1,1678.13,425.926,69.99,170.167,0.929344,-1,-1,-1
419,-1,1211.4,440.429,60.96,162.156,0.85942,-1,-1,-1
419,-1,829.081,438.566,53.895,139.054,0.64793,-1,-1,-1
419,-1,573.799,454.653,61.17,147.313,0.611764,-1,-1,-1
420,-1,984.412,413.798,301.058,601.512,0.998174,-1,-1,-1
420,-1,681.128,403.818,121.426,325.707,0.994216,-1,-1,-1
420,-1,299.142,428.906,126.766,331.497,0.991516,-1,-1,-1
420,-1,446.996,461.81,122.857,303.365,0.979364,-1,-1,-1
420,-1,1848.05,453.815,62.39,192.083,0.954729,-1,-1,-1
420,-1,1677.42,426.305,72.37,171.049,0.92378,-1,-1,-1
420,-1,1209.14,447.871,59.6,142.018,0.908733,-1,-1,-1
420,-1,592.004,436.772,91.674,260.398,0.856278,-1,-1,-1
421,-1,990.942,397.235,307.088,611.855,0.997861,-1,-1,-1
421,-1,690.114,387.429,127.332,332.536,0.994319,-1,-1,-1
421,-1,288.411,444.619,169.347,337.491,0.992589,-1,-1,-1
421,-1,589.711,418.129,107.7,300.294,0.966593,-1,-1,-1
421,-1,465.127,473.887,106.742,289.955,0.95901,-1,-1,-1
421,-1,1861.52,463.062,47.38,184.51,0.956959,-1,-1,-1
421,-1,1200.85,446.13,75.65,213.57,0.890505,-1,-1,-1
421,-1,1692.11,418.572,92.76,185.731,0.881342,-1,-1,-1
421,-1,849.035,439.374,60.819,131.179,0.735129,-1,-1,-1
422,-1,981.477,424.181,301.033,574.505,0.997329,-1,-1,-1
422,-1,300.512,430.453,146.289,357.156,0.989538,-1,-1,-1
422,-1,705.569,392.028,101.752,340.655,0.989195,-1,-1,-1
422,-1,476.252,466.245,114.214,285.943,0.985,-1,-1,-1
422,-1,1848.88,457.064,61.48,186.311,0.952786,-1,-1,-1
422,-1,1214.46,444.336,69.23,175.945,0.939225,-1,-1,-1
422,-1,580.849,424.805,105.272,303.578,0.928487,-1,-1,-1
422,-1,1693.73,421.17,93.33,184.437,0.904355,-1,-1,-1
422,-1,1183.44,434.609,115.29,363.414,0.819357,-1,-1,-1
422,-1,850.102,457.407,60.942,133.042,0.799114,-1,-1,-1
423,-1,997.378,431.372,283.142,569.408,0.996154,-1,-1,-1
423,-1,715.781,393.256,105.511,318.347,0.993028,-1,-1,-1
423,-1,470.727,470.567,120.804,281.715,0.987136,-1,-1,-1
423,-1,298.545,454.799,167.676,296.209,0.967042,-1,-1,-1
423,-1,603.008,440.079,96.635,277.34,0.958842,-1,-1,-1
423,-1,1849.32,453.932,61.76,191.545,0.954044,-1,-1,-1
423,-1,1667.21,425.122,90.67,172.383,0.914065,-1,-1,-1
423,-1,855.11,465.493,62.922,119.297,0.909977,-1,-1,-1
423,-1,1204.75,450.451,70.71,193.362,0.881504,-1,-1,-1
423,-1,828.422,456.76,49.93,132.37,0.760177,-1,-1,-1
424,-1,1010.29,420.287,300.21,593.063,0.997867,-1,-1,-1
424,-1,324.38,443.762,127.839,323.393,0.992291,-1,-1,-1
424,-1,508.538,462.151,95.751,306.515,0.980108,-1,-1,-1
424,-1,715.159,407.782,95.871,298.173,0.978888,-1,-1,-1
424,-1,599.862,444.316,114.005,263.128,0.974755,-1,-1,-1
424,-1,1849.59,447.219,58.63,208.858,0.953705,-1,-1,-1
424,-1,1217.21,443.776,86.58,199.595,0.930378,-1,-1,-1
424,-1,1678.05,421.545,69.46,173.793,0.92388,-1,-1,-1
424,-1,851.956,453.471,51.67,141.218,0.846805,-1,-1,-1
425,-1,986.074,457.956,309.976,563.344,0.995775,-1,-1,-1
425,-1,327.458,436.736,164.911,320.347,0.991715,-1,-1,-1
425,-1,725.233,404.176,92.079,306.746,0.98671,-1,-1,-1
425,-1,488.66,464.248,116.932,272.122,0.984674,-1,-1,-1
425,-1,614.758,454.287,105.451,257.022,0.95139,-1,-1,-1
425,-1,1861.13,458.046,47.55,196.03,0.941399,-1,-1,-1
425,-1,1663.84,422.955,93.61,177.957,0.890104,-1,-1,-1
425,-1,1223.59,449.293,79.53,163.079,0.856823,-1,-1,-1
425,-1,848.909,447.905,57.669,141.068,0.757423,-1,-1,-1
425,-1,1204.03,471.046,121.63,340.762,0.546281,-1,-1,-1
426,-1,997.941,432.653,279.119,606.937,0.994371,-1,-1,-1
426,-1,322.27,440.722,147.301,319.995,0.994008,-1,-1,-1
426,-1,727.341,387.72,94.588,324.425,0.989825,-1,-1,-1
426,-1,512.452,454.125,103.954,311.231,0.986464,-1,-1,-1
426,-1,1833.5,441.362,85.5,248.869,0.954829,-1,-1,-1
426,-1,615.156,439.254,92.089,279.896,0.917989,-1,-1,-1
426,-1,1678.62,426.653,70.13,174.364,0.879969,-1,-1,-1
426,-1,848.66,442.716,53.876,144.135,0.877267,-1,-1,-1
426,-1,1242.4,448.701,81.09,193.031,0.768085,-1,-1,-1
427,-1,1021.63,404.9,213.21,655.9,0.994842,-1,-1,-1
427,-1,341.24,445.694,130.625,316.078,0.994592,-1,-1,-1
427,-1,522.268,450.559,108.548,309.189,0.989454,-1,-1,-1
427,-1,710.93,389.74,113.108,351.076,0.986875,-1,-1,-1
427,-1,1732.65,595.451,156.72,320.545,0.93199,-1,-1,-1
427,-1,850.87,448.138,51.362,138.718,0.90921,-1,-1,-1
427,-1,1667.35,424.943,89.4,168.819,0.89254,-1,-1,-1
427,-1,630.928,458.938,85.008,263.543,0.866979,-1,-1,-1
427,-1,1214.88,459.01,112.86,350.211,0.856847,-1,-1,-1
427,-1,1236.62,424.916,73.73,173.674,0.772388,-1,-1,-1
428,-1,376.616,447.914,110.382,306.435,0.994267,-1,-1,-1
428,-1,1007.82,410.226,244.83,607.774,0.991123,-1,-1,-1
428,-1,718.763,423.704,108.193,288.582,0.988521,-1,-1,-1
428,-1,498.956,464.472,160.331,286.382,0.988159,-1,-1,-1
428,-1,1675.47,386.807,121.72,199.893,0.946992,-1,-1,-1
428,-1,839.022,466.317,65.925,117.001,0.872758,-1,-1,-1
428,-1,634.517,458.713,81.321,240.667,0.852339,-1,-1,-1
428,-1,1244.49,428.09,70.14,171.047,0.843823,-1,-1,-1
428,-1,1654.38,347.197,238.5,580.316,0.513626,-1,-1,-1
429,-1,381.089,447.104,107.575,319.563,0.993749,-1,-1,-1
429,-1,999.796,438.677,290.594,608.443,0.991874,-1,-1,-1
429,-1,722.518,420.708,108.938,285.611,0.989389,-1,-1,-1
429,-1,507.164,453.947,128.05,310.239,0.988772,-1,-1,-1
429,-1,1246.41,443.192,85.17,193.267,0.944432,-1,-1,-1
429,-1,634.341,457.007,95.763,259.536,0.930221,-1,-1,-1
430,-1,991.401,413.67,306.919,632.44,0.991597,-1,-1,-1
430,-1,536.77,434.512,93.354,327.636,0.990707,-1,-1,-1
430,-1,720.785,423.292,115.351,280.503,0.988585,-1,-1,-1
430,-1,389.573,458.078,100.621,282.208,0.977441,-1,-1,-1
430,-1,646.929,443.616,87.866,263.67,0.964045,-1,-1,-1
430,-1,1245.37,436.7,74.86,161.725,0.873706,-1,-1,-1
430,-1,1538.71,204.022,367.73,756.669,0.810359,-1,-1,-1
430,-1,1233.91,398.867,108.17,376.436,0.686308,-1,-1,-1
430,-1,847.482,448.957,58.315,133.735,0.625577,-1,-1,-1
431,-1,514.388,450.382,148.711,312.247,0.993256,-1,-1,-1
431,-1,996.05,441.939,300.51,601.871,0.990522,-1,-1,-1
431,-1,374.933,450.769,117.55,311.472,0.984962,-1,-1,-1
431,-1,1247.67,443.424,86.68,209.062,0.945596,-1,-1,-1
431,-1,659.823,455.11,76.793,198.472,0.938618,-1,-1,-1
431,-1,676.6,441.52,169.574,258.614,0.932729,-1,-1,-1
431,-1,838.752,451.305,43.256,133.2,0.541866,-1,-1,-1
432,-1,1009.96,440.517,257.03,575.703,0.99532,-1,-1,-1
432,-1,509.947,438.36,152.95,328.438,0.991553,-1,-1,-1
432,-1,385.729,452.423,116.779,292.253,0.985655,-1,-1,-1
432,-1,698.955,439.013,129.767,276.82,0.982039,-1,-1,-1
432,-1,1255.08,430.703,87.63,216.36,0.982028,-1,-1,-1
432,-1,1853.96,451.931,62.95,213.751,0.951348,-1,-1,-1
432,-1,1467.89,264.154,344.57,739.426,0.915209,-1,-1,-1
432,-1,664.47,429.102,84.575,272.207,0.906612,-1,-1,-1
432,-1,831.726,441.998,52.23,158.703,0.901739,-1,-1,-1
432,-1,644.342,456.599,59.112,180.435,0.543792,-1,-1,-1
433,-1,996.417,413.155,247.933,578.477,0.995662,-1,-1,-1
433,-1,517.988,441.834,140.358,318.829,0.986872,-1,-1,-1
433,-1,718.988,431.614,120.794,287.635,0.986346,-1,-1,-1
433,-1,1271.3,440.987,90.32,202.875,0.98,-1,-1,-1
433,-1,1860.74,463.076,56.49,195.9,0.971772,-1,-1,-1
433,-1,401.021,445.997,102.89,295.978,0.969743,-1,-1,-1
433,-1,665.472,445.122,78.738,226.008,0.897875,-1,-1,-1
433,-1,1445.09,198.383,351.16,796.776,0.808817,-1,-1,-1
433,-1,836.307,436.388,59.695,158.667,0.619279,-1,-1,-1
434,-1,997.089,424.726,220.131,496.925,0.990609,-1,-1,-1
434,-1,412.91,438.777,92.024,287.356,0.990182,-1,-1,-1
434,-1,536.851,439.347,111.223,303.701,0.989544,-1,-1,-1
434,-1,728.075,413.758,119.355,305.03,0.989517,-1,-1,-1
434,-1,1245.7,437.771,117.68,245.096,0.972119,-1,-1,-1
434,-1,680.346,448.449,72.256,215.936,0.944855,-1,-1,-1
434,-1,1844.42,453.063,71.73,202.499,0.934832,-1,-1,-1
434,-1,1708.56,417.55,74.34,165.345,0.835499,-1,-1,-1
434,-1,1202.61,412.97,85.99,235.301,0.704621,-1,-1,-1
434,-1,1343.26,195.857,469.41,846.193,0.627572,-1,-1,-1
434,-1,1129.07,440.877,139.31,332.562,0.513827,-1,-1,-1
435,-1,541.776,453.37,112.991,298.879,0.989924,-1,-1,-1
435,-1,747.445,423.491,104.845,299.781,0.989536,-1,-1,-1
435,-1,418.325,448.427,99.94,291.389,0.986193,-1,-1,-1
435,-1,986.796,428.956,190.044,483.88,0.976039,-1,-1,-1
435,-1,1261.26,442.765,103.83,268.103,0.964147,-1,-1,-1
435,-1,1851.19,443.146,59.86,220.021,0.944856,-1,-1,-1
435,-1,680.949,447.792,68.289,242.532,0.929845,-1,-1,-1
435,-1,1690.41,420.478,95.5,186.142,0.909641,-1,-1,-1
435,-1,1121.3,439.449,141.87,322.631,0.730824,-1,-1,-1
435,-1,1204.31,414.681,78.81,232.162,0.702543,-1,-1,-1
435,-1,617.692,453.721,57.466,210.843,0.572399,-1,-1,-1
435,-1,1319.02,299.401,454.18,702.849,0.524336,-1,-1,-1
436,-1,417.939,457.958,110.543,290.722,0.990806,-1,-1,-1
436,-1,549.685,453.409,129.515,302.557,0.990217,-1,-1,-1
436,-1,748.276,429.002,102.468,296.752,0.989076,-1,-1,-1
436,-1,1065.21,439.665,178.45,368.328,0.979416,-1,-1,-1
436,-1,1848.78,443.257,60.24,206.578,0.959977,-1,-1,-1
436,-1,1258.79,270.787,415.86,753.253,0.936451,-1,-1,-1
436,-1,1661.29,418.445,102.02,193.115,0.923516,-1,-1,-1
436,-1,684.117,455.282,68.708,227.143,0.917594,-1,-1,-1
436,-1,1009.9,443.236,115.36,354.961,0.643916,-1,-1,-1
436,-1,1255.57,385.927,130.56,307.181,0.642571,-1,-1,-1
437,-1,568.693,445.442,103.092,299.56,0.992839,-1,-1,-1
437,-1,419.999,456.087,111.174,285.425,0.988642,-1,-1,-1
437,-1,758.156,420.733,98.693,289.962,0.982056,-1,-1,-1
437,-1,997.826,430.057,164.964,388.925,0.978081,-1,-1,-1
437,-1,1666.07,422.866,89.61,175.595,0.952018,-1,-1,-1
437,-1,1847.94,446.444,64,205.381,0.946885,-1,-1,-1
437,-1,696.744,450.972,81.258,237.691,0.881446,-1,-1,-1
437,-1,1132.08,279.835,491.08,748.365,0.877142,-1,-1,-1
437,-1,670.478,457.475,61.202,206.141,0.772712,-1,-1,-1
437,-1,1092.54,444.833,173.68,358.214,0.665104,-1,-1,-1
438,-1,746.916,421.681,112.179,305.926,0.990115,-1,-1,-1
438,-1,1000.98,454.153,166.94,391.25,0.984618,-1,-1,-1
438,-1,562.025,445.494,112.503,289.275,0.984263,-1,-1,-1
438,-1,398.77,449.939,145.05,283.022,0.97802,-1,-1,-1
438,-1,1080.82,426.487,199.01,406.931,0.968793,-1,-1,-1
438,-1,1848.14,456.652,62,196.256,0.940976,-1,-1,-1
438,-1,694.542,443.96,83.231,281.524,0.923579,-1,-1,-1
438,-1,1662.56,425.085,95.66,178.94,0.891255,-1,-1,-1
438,-1,1031.97,336.152,520.63,672.588,0.710589,-1,-1,-1
439,-1,569.282,448.472,114.873,285.248,0.989008,-1,-1,-1
439,-1,746.427,432.625,119.173,290.863,0.982318,-1,-1,-1
439,-1,415.465,428.019,142.527,340.061,0.97808,-1,-1,-1
439,-1,703.059,424.129,91.135,281.326,0.977095,-1,-1,-1
439,-1,998.421,430.856,164.889,415.479,0.965711,-1,-1,-1
439,-1,1840.99,460.91,73.38,202.756,0.948227,-1,-1,-1
439,-1,1086.48,347.006,445.99,698.904,0.92678,-1,-1,-1
439,-1,1661.55,422.764,101.6,184.445,0.9136,-1,-1,-1
440,-1,1028.73,430.078,149.4,466.5,0.992776,-1,-1,-1
440,-1,697.42,427.082,171.042,288.806,0.990253,-1,-1,-1
440,-1,566.494,452.178,123.28,305.807,0.989038,-1,-1,-1
440,-1,441.417,431.185,107.605,316.067,0.973679,-1,-1,-1
440,-1,1860.93,449.123,49.06,197.926,0.939906,-1,-1,-1
440,-1,1067.2,377.665,369.43,660.115,0.892831,-1,-1,-1
440,-1,1690.84,416.259,81.57,196.556,0.8736,-1,-1,-1
441,-1,747.181,423.029,117.165,294.665,0.98884,-1,-1,-1
441,-1,567.551,431.535,133.011,304.29,0.976525,-1,-1,-1
441,-1,447.483,440.515,109.125,318.073,0.97084,-1,-1,-1
441,-1,1858.67,449.365,48.65,201.076,0.941084,-1,-1,-1
441,-1,1052.21,392.751,374.03,679.489,0.932671,-1,-1,-1
441,-1,694.375,426.942,103.366,302.709,0.888852,-1,-1,-1
441,-1,1676.85,428.128,74.33,173.244,0.846294,-1,-1,-1
441,-1,996.535,419.375,200.035,401.313,0.756405,-1,-1,-1
441,-1,1282.79,437.17,144.61,314.883,0.696333,-1,-1,-1
442,-1,446.374,431.968,116.727,312.727,0.990407,-1,-1,-1
442,-1,757.26,429.743,119.105,294.968,0.986841,-1,-1,-1
442,-1,994.102,407.054,386.968,627.866,0.985707,-1,-1,-1
442,-1,539.79,455.703,164.749,288.666,0.981353,-1,-1,-1
442,-1,1271.58,446.831,144.92,340.718,0.968076,-1,-1,-1
442,-1,701.56,437.826,109.005,280.138,0.966396,-1,-1,-1
442,-1,1861.47,449.265,49.78,200.266,0.920316,-1,-1,-1
442,-1,1676.1,426.173,75.96,173.854,0.899946,-1,-1,-1
442,-1,970.264,441.038,73.996,185.462,0.651539,-1,-1,-1
443,-1,953.601,395.121,350.769,614.009,0.996486,-1,-1,-1
443,-1,453.75,450.74,111.575,293.527,0.994453,-1,-1,-1
443,-1,750.681,431.128,119.644,283.557,0.986133,-1,-1,-1
443,-1,580.974,450.046,124.592,308.012,0.983792,-1,-1,-1
443,-1,1280.45,422.173,137.09,379.938,0.980421,-1,-1,-1
443,-1,694.855,445.413,86.474,257.372,0.948864,-1,-1,-1
443,-1,1836.33,477.99,69.65,163.748,0.901525,-1,-1,-1
443,-1,1674.57,426.258,77.6,177.671,0.875328,-1,-1,-1
444,-1,466.778,447.07,101.974,290.62,0.991296,-1,-1,-1
444,-1,731.979,430.531,149.988,270.05,0.988443,-1,-1,-1
444,-1,1285.41,449.806,136.57,305.646,0.98725,-1,-1,-1
444,-1,912.329,392.386,413.441,605.17,0.972553,-1,-1,-1
444,-1,603.35,456.859,95.415,281.742,0.971282,-1,-1,-1
444,-1,1851.28,442.033,58.86,222.808,0.919187,-1,-1,-1
444,-1,1675.35,423.894,76.78,182.189,0.865775,-1,-1,-1
444,-1,1165.74,449.052,154.84,336.988,0.84919,-1,-1,-1
445,-1,477.594,452.839,95.048,293.543,0.992778,-1,-1,-1
445,-1,1319.96,436.435,119.29,317.098,0.989354,-1,-1,-1
445,-1,734.229,426.956,149.941,266.826,0.986829,-1,-1,-1
445,-1,602.701,439.684,96.623,299.383,0.983283,-1,-1,-1
445,-1,875.842,397.952,379.288,639.498,0.952899,-1,-1,-1
445,-1,1842.19,456.067,72.99,203.753,0.916033,-1,-1,-1
445,-1,1677.45,422.776,75.19,179.595,0.846146,-1,-1,-1
445,-1,1169.72,394.758,140.27,390.863,0.656144,-1,-1,-1
445,-1,705.496,435.61,75.284,270.271,0.620863,-1,-1,-1
446,-1,1332.89,421.049,110.18,334.844,0.992786,-1,-1,-1
446,-1,612.995,449.443,107.794,300.338,0.984151,-1,-1,-1
446,-1,466.243,439.756,106.262,276.436,0.981865,-1,-1,-1
446,-1,722.092,428.661,172.085,279.964,0.980495,-1,-1,-1
446,-1,1850.64,450.891,56.09,205.664,0.935888,-1,-1,-1
446,-1,835.477,423.725,366.763,551.096,0.883936,-1,-1,-1
446,-1,1676.73,427.848,72.48,175.42,0.882075,-1,-1,-1
446,-1,1157.3,434.046,123.92,313.227,0.717211,-1,-1,-1
446,-1,1092.8,404.885,84.67,303.992,0.703573,-1,-1,-1
446,-1,724.758,454.215,64.392,184.862,0.616015,-1,-1,-1
447,-1,1322.29,430.803,110.42,331.09,0.990258,-1,-1,-1
447,-1,491.074,447.665,90.237,284.66,0.986039,-1,-1,-1
447,-1,608.199,438.753,105.348,299.434,0.980961,-1,-1,-1
447,-1,779.182,408.831,91.955,317.822,0.972318,-1,-1,-1
447,-1,794.114,393.081,393.966,612.159,0.952793,-1,-1,-1
447,-1,1854.05,458.877,61.47,180.967,0.908671,-1,-1,-1
447,-1,724.025,431.023,85.213,269.827,0.867645,-1,-1,-1
447,-1,1123.58,445.133,223.51,609.107,0.864753,-1,-1,-1
447,-1,1665.03,418.542,90.54,173.838,0.858306,-1,-1,-1
447,-1,1071.9,413.141,132.62,372.372,0.674019,-1,-1,-1
447,-1,1180.95,434.297,123.69,290.645,0.598857,-1,-1,-1
448,-1,1336.33,420.303,117.68,340.532,0.992708,-1,-1,-1
448,-1,603.425,447.309,116.569,284.936,0.988985,-1,-1,-1
448,-1,471.45,420.159,108.599,325.931,0.982694,-1,-1,-1
448,-1,1855.85,460.994,60.25,176.486,0.955039,-1,-1,-1
448,-1,748.847,419.366,491.603,598.154,0.949825,-1,-1,-1
448,-1,763.094,454.201,84.226,232.705,0.942757,-1,-1,-1
448,-1,1098.25,438.387,234.41,616.193,0.940712,-1,-1,-1
448,-1,1687.56,416.819,87.54,199.055,0.895262,-1,-1,-1
448,-1,1042.95,443.072,141.45,462.202,0.808739,-1,-1,-1
448,-1,1175.33,413.176,181.72,304.606,0.752836,-1,-1,-1
449,-1,1359.77,427.533,110.91,336.005,0.994918,-1,-1,-1
449,-1,486.405,459.999,102.604,275.755,0.989519,-1,-1,-1
449,-1,633.38,468.667,90.842,266.356,0.987253,-1,-1,-1
449,-1,1051.92,429.024,146.61,488.306,0.980199,-1,-1,-1
449,-1,724.685,376.048,353.635,599.277,0.963647,-1,-1,-1
449,-1,1850.82,457.079,65.62,186.236,0.956062,-1,-1,-1
449,-1,1091.51,449.793,247.07,596.097,0.955106,-1,-1,-1
449,-1,1674.19,425.684,75.81,175.039,0.836571,-1,-1,-1
449,-1,1235.22,415.952,109.79,360.986,0.577508,-1,-1,-1
450,-1,1357.21,420.8,109.78,320.935,0.990493,-1,-1,-1
450,-1,641.249,447.367,90.825,295.154,0.978061,-1,-1,-1
450,-1,1129.73,473.406,223.19,605.594,0.974732,-1,-1,-1
450,-1,1043.36,440.984,136.83,535.842,0.972057,-1,-1,-1
450,-1,490.313,453.314,101.251,263.97,0.951101,-1,-1,-1
450,-1,1854.81,460.032,48.12,199.83,0.941633,-1,-1,-1
450,-1,640.484,408.131,396.846,560.455,0.931491,-1,-1,-1
450,-1,1675.37,422.834,76.57,177.637,0.845791,-1,-1,-1
450,-1,1207.24,401.08,127.57,285.275,0.668739,-1,-1,-1
450,-1,592.295,438.405,84.825,256.974,0.660472,-1,-1,-1
451,-1,1361.15,432.402,112.1,314.811,0.995355,-1,-1,-1
451,-1,489.154,468.291,99.945,241.718,0.991837,-1,-1,-1
451,-1,1042.43,431.769,138.26,561.313,0.976178,-1,-1,-1
451,-1,659.161,400.137,354.739,577.037,0.973414,-1,-1,-1
451,-1,639.119,453.093,102.333,285.951,0.954611,-1,-1,-1
451,-1,1846.3,433.506,68.77,221.58,0.945307,-1,-1,-1
451,-1,1091.91,395.161,241.31,665.499,0.918878,-1,-1,-1
451,-1,1674.17,422.899,79.07,176.197,0.853986,-1,-1,-1
451,-1,1225.7,416.099,129.36,373.834,0.712459,-1,-1,-1
451,-1,989.393,451.465,66.727,130.31,0.507106,-1,-1,-1
451,-1,267.49,496.195,106.856,163.13,0.503172,-1,-1,-1
452,-1,1360.4,423.751,124.59,329.342,0.996008,-1,-1,-1
452,-1,497.196,459.999,121.608,273.749,0.991353,-1,-1,-1
452,-1,1043.63,423.173,151.28,562.327,0.988895,-1,-1,-1
452,-1,644.955,364.747,298.149,609.77,0.984007,-1,-1,-1
452,-1,1102.64,415.334,272.39,641.666,0.96398,-1,-1,-1
452,-1,1859.96,438.381,49.11,207.534,0.947915,-1,-1,-1
452,-1,1688.87,422.11,90.05,169.869,0.881087,-1,-1,-1
452,-1,582.297,452.014,85.934,232.606,0.756296,-1,-1,-1
453,-1,1358.43,437.903,113.2,330.639,0.993384,-1,-1,-1
453,-1,591.855,352.696,324.9,663.164,0.992144,-1,-1,-1
453,-1,1058.76,433.43,142.67,540.271,0.988166,-1,-1,-1
453,-1,1098.77,431.649,294.08,631.631,0.97488,-1,-1,-1
453,-1,490.744,444.237,146.462,274.868,0.957762,-1,-1,-1
453,-1,1843.63,447.124,71.46,212.034,0.930239,-1,-1,-1
453,-1,1687.77,419.285,92.92,175.994,0.768587,-1,-1,-1
453,-1,1219.9,427.254,140.15,383.582,0.759307,-1,-1,-1
454,-1,1371.08,443.226,122.46,311.215,0.995703,-1,-1,-1
454,-1,564.384,362.68,342.763,643.52,0.992307,-1,-1,-1
454,-1,1056.64,413.747,136.42,565.157,0.982243,-1,-1,-1
454,-1,505.792,438.451,112.841,301.556,0.982149,-1,-1,-1
454,-1,1145.78,422.399,275.77,638.901,0.978966,-1,-1,-1
454,-1,801.856,394.673,86.368,300.327,0.961594,-1,-1,-1
454,-1,1860.64,439.791,47.37,207.558,0.937296,-1,-1,-1
454,-1,1675.18,428.426,75.58,169.735,0.92619,-1,-1,-1
455,-1,1376.89,438.637,131,320.531,0.996543,-1,-1,-1
455,-1,469.812,380.34,406.424,639.46,0.989457,-1,-1,-1
455,-1,1071.41,447.562,129.06,512.94,0.987413,-1,-1,-1
455,-1,1111.18,406.148,310.42,668.802,0.986353,-1,-1,-1
455,-1,789.339,419.618,102.317,317.053,0.981831,-1,-1,-1
455,-1,1668.17,424.624,89.06,171.046,0.919043,-1,-1,-1
455,-1,1852.88,423.571,56.96,248.527,0.901192,-1,-1,-1
455,-1,240.275,494.324,91.903,174.956,0.647168,-1,-1,-1
456,-1,1379.47,432.011,140.01,338.007,0.996167,-1,-1,-1
456,-1,790.811,414.513,114.797,300.351,0.99336,-1,-1,-1
456,-1,1069.62,421.292,131.41,549.385,0.985877,-1,-1,-1
456,-1,453.842,419.233,409.426,625.827,0.982601,-1,-1,-1
456,-1,1132.55,399.037,288.61,668.373,0.973293,-1,-1,-1
456,-1,1684.1,424.513,85.27,181.927,0.940749,-1,-1,-1
456,-1,1850.94,416.931,56.44,257.747,0.929777,-1,-1,-1
456,-1,255.78,471.833,96.563,182.927,0.601812,-1,-1,-1
457,-1,409.263,420.661,383.778,641.479,0.997747,-1,-1,-1
457,-1,1383.33,427.036,138.16,346.111,0.996005,-1,-1,-1
457,-1,795.964,409.297,120.874,312.562,0.993591,-1,-1,-1
457,-1,1068.8,421.854,147.29,564.419,0.984731,-1,-1,-1
457,-1,1138.89,416.561,283.34,646.349,0.971514,-1,-1,-1
457,-1,1861.89,429.942,50.07,215.993,0.939419,-1,-1,-1
457,-1,1682.62,401.882,92.77,179.368,0.928407,-1,-1,-1
457,-1,689.147,430.603,70.981,237.074,0.909722,-1,-1,-1
457,-1,234.425,495.999,100.089,170.377,0.64601,-1,-1,-1
457,-1,764.898,425.813,71.155,260.605,0.529126,-1,-1,-1
457,-1,1238.55,414.978,141.62,317.074,0.50786,-1,-1,-1
458,-1,1393.14,445.093,130.22,316.081,0.995455,-1,-1,-1
458,-1,794.876,409.886,115.703,310.252,0.993686,-1,-1,-1
458,-1,1071.13,428.801,157.51,525.277,0.993632,-1,-1,-1
458,-1,378.54,413.191,364.775,636.619,0.991263,-1,-1,-1
458,-1,665.321,448.13,98.643,386.566,0.971654,-1,-1,-1
458,-1,1165.66,421.93,261.29,632.21,0.949485,-1,-1,-1
458,-1,1860.06,426.446,49.8,214.117,0.941474,-1,-1,-1
458,-1,1684.62,415.302,89.83,184.424,0.889766,-1,-1,-1
458,-1,209.435,500.896,122.922,151.579,0.817739,-1,-1,-1
459,-1,1398.99,444.97,127.01,322.947,0.994118,-1,-1,-1
459,-1,1094.19,440.802,127.3,515.966,0.992856,-1,-1,-1
459,-1,795.15,419.746,110.696,293.704,0.992356,-1,-1,-1
459,-1,358.113,394.398,351.571,669.402,0.974641,-1,-1,-1
459,-1,667.268,442.112,108.392,314.262,0.973125,-1,-1,-1
459,-1,1849.1,415.051,58.75,263.14,0.932868,-1,-1,-1
459,-1,1245.95,436.648,147.52,366.477,0.908717,-1,-1,-1
459,-1,1166.91,346.492,299.51,696.888,0.880058,-1,-1,-1
459,-1,1682.61,423.872,87.7,177.629,0.857795,-1,-1,-1
460,-1,1402.16,444.237,116.62,346.355,0.996099,-1,-1,-1
460,-1,1097.59,426.893,132.49,497.351,0.993608,-1,-1,-1
460,-1,796.957,404.612,123.252,316.927,0.986119,-1,-1,-1
460,-1,668.296,442.077,99.174,301.886,0.978326,-1,-1,-1
460,-1,287.751,409.656,402.629,632.274,0.965996,-1,-1,-1
460,-1,1175.64,421.488,308.32,610.442,0.965483,-1,-1,-1
460,-1,1862.09,438.847,52.15,221.033,0.947222,-1,-1,-1
460,-1,1665.81,415.755,110.95,190.526,0.875281,-1,-1,-1
460,-1,570.712,446.846,60.577,152.152,0.87073,-1,-1,-1
460,-1,1257.78,398.698,134.64,408.327,0.573616,-1,-1,-1
461,-1,1408.16,440.282,121.03,357.163,0.994654,-1,-1,-1
461,-1,1106.59,435.91,139.15,530.685,0.992864,-1,-1,-1
461,-1,788.238,426.067,140.813,289.387,0.992673,-1,-1,-1
461,-1,673.648,456.052,100.618,274.661,0.991105,-1,-1,-1
461,-1,564.817,434.266,84.772,237.304,0.949773,-1,-1,-1
461,-1,1202.67,404.996,255.8,614.234,0.939099,-1,-1,-1
461,-1,1862.79,442.871,48.44,209.159,0.936777,-1,-1,-1
461,-1,238.078,343.165,418.071,685.195,0.920587,-1,-1,-1
461,-1,1677.62,424.878,82.3,169.847,0.831365,-1,-1,-1
462,-1,1401.06,430.326,159.83,356.85,0.995401,-1,-1,-1
462,-1,815.916,399.371,91.8,312.289,0.99345,-1,-1,-1
462,-1,1104.01,429.896,149.84,530.092,0.993044,-1,-1,-1
462,-1,673.383,440.862,103.571,305.96,0.977048,-1,-1,-1
462,-1,1176.83,417.446,316.74,623.084,0.976649,-1,-1,-1
462,-1,182.228,372.359,434.523,675.601,0.941216,-1,-1,-1
462,-1,1852.41,398.694,56.07,250.235,0.929724,-1,-1,-1
462,-1,541.761,435.768,93.634,337.599,0.855856,-1,-1,-1
462,-1,1678.36,434.836,69.34,152.911,0.834117,-1,-1,-1
462,-1,1307.94,411.69,131.79,441.106,0.644923,-1,-1,-1
463,-1,1109.54,434.459,154.74,532.436,0.994964,-1,-1,-1
463,-1,1398.04,417.287,152.24,390.176,0.994437,-1,-1,-1
463,-1,676.047,442.595,101.362,295.188,0.988692,-1,-1,-1
463,-1,820.76,411.747,86.902,309.543,0.988266,-1,-1,-1
463,-1,1172.45,424.266,339.81,635.744,0.984931,-1,-1,-1
463,-1,590.388,436.717,74.941,271.651,0.960516,-1,-1,-1
463,-1,176.396,367.511,396.475,671.959,0.933929,-1,-1,-1
463,-1,1851.83,428.178,56.52,224.626,0.906593,-1,-1,-1
463,-1,1688.88,420.01,93.77,171.613,0.872549,-1,-1,-1
463,-1,525.703,437.875,60.491,170.921,0.686275,-1,-1,-1
463,-1,1269.71,422.224,144.67,400.679,0.607352,-1,-1,-1
464,-1,1427.23,433.217,122.6,380.648,0.99513,-1,-1,-1
464,-1,1122.57,426.845,145.16,517.906,0.993705,-1,-1,-1
464,-1,813.809,391.138,90.836,315.452,0.98724,-1,-1,-1
464,-1,694.938,438.082,92.672,310.545,0.98465,-1,-1,-1
464,-1,1236.9,439.049,307.07,606.811,0.967848,-1,-1,-1
464,-1,572.515,437.644,82.692,278.152,0.966936,-1,-1,-1
464,-1,1847.66,429.989,65.52,246.194,0.939091,-1,-1,-1
464,-1,104.931,361.108,487.262,678.822,0.935844,-1,-1,-1
464,-1,1663.01,418.01,99.05,176.04,0.911483,-1,-1,-1
464,-1,533.118,444.812,76.426,223.578,0.778247,-1,-1,-1
465,-1,1418.95,431.985,145.15,361.343,0.995117,-1,-1,-1
465,-1,1124.96,418.271,152.37,550.509,0.99251,-1,-1,-1
465,-1,701.185,421.424,107.153,324.625,0.992477,-1,-1,-1
465,-1,814.013,397.675,91.101,305.054,0.988341,-1,-1,-1
465,-1,574.443,417.089,87.149,310.027,0.984059,-1,-1,-1
465,-1,1210.54,398.473,339.16,650.737,0.975918,-1,-1,-1
465,-1,109.705,356.197,453.916,681.173,0.959789,-1,-1,-1
465,-1,1835.04,433.302,72.58,215.38,0.958566,-1,-1,-1
465,-1,518.182,456.577,65.984,160.385,0.890594,-1,-1,-1
465,-1,1291.9,410.728,145.96,426.787,0.846546,-1,-1,-1
465,-1,1662.59,414.295,113.37,191.558,0.83336,-1,-1,-1
466,-1,1444.59,445.549,115.74,358.383,0.995327,-1,-1,-1
466,-1,1123.12,421.276,143.62,529.969,0.992496,-1,-1,-1
466,-1,830.583,407.568,86.589,295.006,0.98893,-1,-1,-1
466,-1,572.704,442.54,105.087,288.484,0.985844,-1,-1,-1
466,-1,699.425,447.6,109.004,290.428,0.984826,-1,-1,-1
466,-1,1845.68,416.737,69.08,267.416,0.944582,-1,-1,-1
466,-1,511.336,454.232,78.719,204.102,0.933462,-1,-1,-1
466,-1,1242.5,413.141,265.57,632.119,0.922205,-1,-1,-1
466,-1,110.675,358.659,389.463,684.331,0.91912,-1,-1,-1
466,-1,1669.2,425.992,88.07,170.61,0.888616,-1,-1,-1
466,-1,1088.11,445.764,60.36,162.396,0.708562,-1,-1,-1
466,-1,1351.29,406.671,115.1,442.613,0.68028,-1,-1,-1
467,-1,1451.87,444.024,129.07,360.528,0.993524,-1,-1,-1
467,-1,1125.62,425.411,140.56,537.837,0.990068,-1,-1,-1
467,-1,820.302,409.794,107.088,307.161,0.989104,-1,-1,-1
467,-1,579.838,433.42,92.778,276.757,0.988258,-1,-1,-1
467,-1,704.849,445.879,114.92,298.709,0.983603,-1,-1,-1
467,-1,1236.26,412.77,295.21,649.79,0.979247,-1,-1,-1
467,-1,1846.23,423.679,69.27,251.706,0.945354,-1,-1,-1
467,-1,1667.25,422.096,90.66,170.381,0.885373,-1,-1,-1
467,-1,74.343,340.35,402.903,709.62,0.862944,-1,-1,-1
467,-1,1320.39,413.09,134.12,422.292,0.790869,-1,-1,-1
467,-1,1072.31,449.93,66.66,159.898,0.732241,-1,-1,-1
467,-1,509.937,455.007,73.537,182.211,0.650993,-1,-1,-1
468,-1,1458.43,423.195,128.61,376.072,0.993822,-1,-1,-1
468,-1,1121.16,423.942,152.06,522.917,0.993158,-1,-1,-1
468,-1,583.941,433.475,89.513,293.622,0.992289,-1,-1,-1
468,-1,821.335,409.894,103.115,309.853,0.989542,-1,-1,-1
468,-1,716.871,416.293,106.525,333.082,0.984353,-1,-1,-1
468,-1,1278.68,412.389,276.89,644.951,0.973982,-1,-1,-1
468,-1,1840.26,452.189,75.15,211.901,0.957938,-1,-1,-1
468,-1,29.09,346.592,429.857,717.098,0.935688,-1,-1,-1
468,-1,1689.8,415.745,93.14,183.249,0.81998,-1,-1,-1
468,-1,1071.94,471.349,50.08,123.855,0.740685,-1,-1,-1
468,-1,506.276,466.824,66.377,168.972,0.681584,-1,-1,-1
469,-1,1460.11,420.395,142.42,387.952,0.994457,-1,-1,-1
469,-1,589.193,413.378,93.495,311.169,0.992699,-1,-1,-1
469,-1,1130.65,409.916,139.94,561.725,0.990131,-1,-1,-1
469,-1,832.447,420.758,94.254,285.594,0.98929,-1,-1,-1
469,-1,698.659,437.048,133.431,296.911,0.984616,-1,-1,-1
469,-1,0,412.512,433.265,619.958,0.980748,-1,-1,-1
469,-1,1270.33,420.377,258.69,633.833,0.94266,-1,-1,-1
469,-1,1846.72,444.98,65.68,223.5,0.935891,-1,-1,-1
469,-1,1682.83,432.235,78.63,161.73,0.860505,-1,-1,-1
469,-1,497.811,460.493,69.409,174.42,0.812926,-1,-1,-1
469,-1,1088.85,461.199,53.76,147.061,0.704537,-1,-1,-1
470,-1,1133.13,424.945,143.7,565.569,0.994382,-1,-1,-1
470,-1,1478.04,428.642,128.08,364.673,0.994236,-1,-1,-1
470,-1,1287,392.471,227.31,682.519,0.992327,-1,-1,-1
470,-1,702.096,429.659,136.821,304.706,0.990145,-1,-1,-1
470,-1,593.821,431.271,75.198,279.891,0.989248,-1,-1,-1
470,-1,839.205,426.165,91.657,292.262,0.987203,-1,-1,-1
470,-1,1855.89,447.159,50.85,206.2,0.956747,-1,-1,-1
470,-1,25.5941,406.385,389.616,611.125,0.944746,-1,-1,-1
470,-1,1071.09,453.887,68.15,152.222,0.869164,-1,-1,-1
470,-1,1691.72,413.107,95.27,184.87,0.830128,-1,-1,-1
470,-1,498.378,457.912,70.898,182.047,0.761691,-1,-1,-1
470,-1,397.383,477.966,73.621,142.489,0.610248,-1,-1,-1
471,-1,1490.85,434.966,118.76,375.953,0.994589,-1,-1,-1
471,-1,1140.85,431.625,140.92,571.215,0.991725,-1,-1,-1
471,-1,827.439,413.693,99.558,284.586,0.989824,-1,-1,-1
471,-1,1284.6,396.85,227.65,680.06,0.989576,-1,-1,-1
471,-1,733.305,416.556,105.399,337.696,0.989563,-1,-1,-1
471,-1,596.171,424.348,78.901,271.324,0.988848,-1,-1,-1
471,-1,0,386.208,394.824,659.062,0.962776,-1,-1,-1
471,-1,1846,438.271,68.83,235.891,0.946217,-1,-1,-1
471,-1,1077.56,465.059,49.21,119.939,0.857734,-1,-1,-1
471,-1,1677.22,415.688,84.68,174.993,0.837584,-1,-1,-1
471,-1,482.932,458.428,77.85,176.65,0.736209,-1,-1,-1
471,-1,403.625,475.843,66.547,154.558,0.602122,-1,-1,-1
472,-1,1146.21,445.353,133.87,540.52,0.994691,-1,-1,-1
472,-1,1283.28,400.427,226.53,678.573,0.994416,-1,-1,-1
472,-1,717.997,443.594,118.57,288.244,0.992787,-1,-1,-1
472,-1,1491.08,423.604,120,348.706,0.990629,-1,-1,-1
472,-1,606.13,432.194,79.459,258.402,0.987694,-1,-1,-1
472,-1,834.279,402.7,93.761,300.024,0.980038,-1,-1,-1
472,-1,1854.19,458.64,50.34,194.147,0.962859,-1,-1,-1
472,-1,1074.33,464.172,55.65,125.058,0.941741,-1,-1,-1
472,-1,463.323,450.804,87.676,174.601,0.893982,-1,-1,-1
472,-1,5.75731,380.809,368.697,660.321,0.881925,-1,-1,-1
472,-1,1674.39,418.088,84.43,177.028,0.799196,-1,-1,-1
472,-1,404.681,470.567,74.539,155.471,0.743639,-1,-1,-1
473,-1,1138.34,461.196,155.65,527.021,0.995352,-1,-1,-1
473,-1,1292.8,425.019,260.86,652.671,0.995349,-1,-1,-1
473,-1,722.969,443.971,115.25,297.59,0.990258,-1,-1,-1
473,-1,839.349,415.391,98.12,282.339,0.988438,-1,-1,-1
473,-1,1494.74,431.639,114.65,340.909,0.986465,-1,-1,-1
473,-1,595.087,425.889,76.915,271.427,0.984929,-1,-1,-1
473,-1,1858.47,461.403,57.07,203.357,0.954793,-1,-1,-1
473,-1,0,362.79,355.739,683.77,0.951682,-1,-1,-1
473,-1,1075.18,453.686,58.78,139.025,0.930038,-1,-1,-1
473,-1,459.685,463.689,80.961,163.244,0.915188,-1,-1,-1
473,-1,1672.46,424.347,82.48,171.919,0.856508,-1,-1,-1
473,-1,391.246,482.777,70.912,139.877,0.777369,-1,-1,-1
474,-1,1299.97,418.712,225.37,653.438,0.995279,-1,-1,-1
474,-1,600.637,426.52,94.561,268.227,0.992446,-1,-1,-1
474,-1,1146.77,437.162,137.68,538.184,0.99165,-1,-1,-1
474,-1,1507.14,427.164,104.39,384.355,0.988102,-1,-1,-1
474,-1,844.82,412.111,96.069,288.127,0.984371,-1,-1,-1
474,-1,743.995,429.032,94.981,323.95,0.983198,-1,-1,-1
474,-1,0,366.355,325.112,676.275,0.973932,-1,-1,-1
474,-1,1846.64,436.628,67.15,218.764,0.961215,-1,-1,-1
474,-1,460.779,468.549,87.813,198.428,0.946178,-1,-1,-1
474,-1,1076,447.9,56.64,140.164,0.929912,-1,-1,-1
474,-1,1673.6,428.023,95.61,174.749,0.842013,-1,-1,-1
474,-1,369.46,479.345,75.949,148.055,0.621849,-1,-1,-1
475,-1,1158.45,434.29,150.87,554.162,0.997671,-1,-1,-1
475,-1,1495.15,432.604,144.89,360.951,0.996628,-1,-1,-1
475,-1,1312.43,407.289,240.73,650.761,0.995583,-1,-1,-1
475,-1,597.706,420.801,85.65,279.464,0.98129,-1,-1,-1
475,-1,0,373.751,324.865,683.239,0.98084,-1,-1,-1
475,-1,840.832,406.582,98.38,288.39,0.98043,-1,-1,-1
475,-1,1859.23,449.253,50.18,204.033,0.955787,-1,-1,-1
475,-1,741.849,422.55,102.083,325.82,0.954117,-1,-1,-1
475,-1,458.668,459.832,76.188,172.445,0.949087,-1,-1,-1
475,-1,1076.58,451.739,54.41,137.158,0.912728,-1,-1,-1
475,-1,1675.93,405.68,81.75,191.887,0.684835,-1,-1,-1
475,-1,386.508,484.98,63.719,135.266,0.607861,-1,-1,-1
476,-1,1152.37,440.148,152.02,533.62,0.997722,-1,-1,-1
476,-1,1494.64,445.101,136.5,372.641,0.994408,-1,-1,-1
476,-1,597.431,416.575,92.634,293.694,0.985951,-1,-1,-1
476,-1,1327.17,418.163,247.96,644.147,0.984792,-1,-1,-1
476,-1,843.994,409.657,107.877,282.712,0.983176,-1,-1,-1
476,-1,740.6,454.9,105.029,300.109,0.968653,-1,-1,-1
476,-1,0,388.318,318.84,671.502,0.965435,-1,-1,-1
476,-1,1845.12,429.407,69.52,233.075,0.962348,-1,-1,-1
476,-1,1087.07,442.009,53.62,124.34,0.823007,-1,-1,-1
476,-1,1695.55,414.955,77.85,185.798,0.778968,-1,-1,-1
476,-1,426.42,469.068,85.749,164.332,0.736382,-1,-1,-1
476,-1,1376.07,410.05,121.92,319.756,0.539744,-1,-1,-1
476,-1,363.742,471.541,93.399,182.517,0.525683,-1,-1,-1
477,-1,1153.68,453.992,172.4,547.558,0.997097,-1,-1,-1
477,-1,1503.55,421.518,134.96,404.125,0.996576,-1,-1,-1
477,-1,604.582,429.995,85.552,282.58,0.986076,-1,-1,-1
477,-1,838.568,404.877,103.106,306.148,0.97703,-1,-1,-1
477,-1,747.462,427.764,99.562,309.067,0.971291,-1,-1,-1
477,-1,1315.59,426.771,261.79,626.599,0.968332,-1,-1,-1
477,-1,1857.9,457.318,58.01,208.921,0.967561,-1,-1,-1
477,-1,1079.25,447.846,58.58,147.128,0.960442,-1,-1,-1
477,-1,0,364.205,266.333,686.845,0.951154,-1,-1,-1
477,-1,1671.13,413.467,102.91,176.393,0.869125,-1,-1,-1
477,-1,423.884,480.48,96.095,172.867,0.845266,-1,-1,-1
477,-1,375.648,472.997,86.193,159.46,0.711517,-1,-1,-1
478,-1,1511.89,401.682,140.5,436.872,0.996415,-1,-1,-1
478,-1,1165.7,446.555,153.14,550.279,0.996267,-1,-1,-1
478,-1,603.267,428.019,91.742,278.31,0.991508,-1,-1,-1
478,-1,750.865,424.096,99.605,315.532,0.978001,-1,-1,-1
478,-1,835.2,417.101,111.598,281.077,0.967242,-1,-1,-1
478,-1,1845.17,446.676,68.04,208.352,0.96565,-1,-1,-1
478,-1,1340.04,394.597,231.28,662.473,0.950893,-1,-1,-1
478,-1,1080.53,446.344,56.19,143.946,0.940698,-1,-1,-1
478,-1,0,321.975,268.026,724.795,0.935629,-1,-1,-1
478,-1,1678.2,423.894,94.18,171.851,0.857471,-1,-1,-1
478,-1,401.221,476.693,83.684,157.305,0.637162,-1,-1,-1
479,-1,1173.85,453.59,140.43,526.525,0.997378,-1,-1,-1
479,-1,1515.49,431.819,156.8,386.111,0.994438,-1,-1,-1
479,-1,606.449,434.599,93.93,269.466,0.990441,-1,-1,-1
479,-1,1344.17,400.642,206.21,660.238,0.987432,-1,-1,-1
479,-1,758.835,421.18,97.84,323.208,0.981533,-1,-1,-1
479,-1,853.57,423.08,100.614,247.321,0.964639,-1,-1,-1
479,-1,1857.84,446.244,47.52,195.699,0.957292,-1,-1,-1
479,-1,1081.71,445.584,54.12,146.116,0.935015,-1,-1,-1
479,-1,363.765,464.987,114.975,199.853,0.849883,-1,-1,-1
479,-1,1671.52,415.047,101.9,169.073,0.84985,-1,-1,-1
479,-1,7.1739,325.273,217.539,715.987,0.831224,-1,-1,-1
480,-1,1520.14,436.065,188.83,380.771,0.996803,-1,-1,-1
480,-1,1174.49,413.946,133.52,593.194,0.996626,-1,-1,-1
480,-1,609.469,423.107,97.752,269.236,0.989152,-1,-1,-1
480,-1,762.656,434.889,96.415,290.043,0.977231,-1,-1,-1
480,-1,831.341,426.568,114.649,284.002,0.973461,-1,-1,-1
480,-1,1336.97,422.48,248.33,631.86,0.972759,-1,-1,-1
480,-1,1.2983,299.404,200.714,757.516,0.966165,-1,-1,-1
480,-1,1853.97,451.076,49.23,196.179,0.960866,-1,-1,-1
480,-1,1092.94,445.408,54.68,147.146,0.838965,-1,-1,-1
480,-1,908.917,438.89,71.075,233.699,0.83257,-1,-1,-1
480,-1,361.42,474.865,65.688,146.619,0.781777,-1,-1,-1
480,-1,410.992,472.473,89.923,175.681,0.781124,-1,-1,-1
480,-1,1685.6,409.01,77.15,191.067,0.744239,-1,-1,-1
480,-1,1316.57,444.147,59.44,108.061,0.615035,-1,-1,-1
481,-1,1177.8,441.205,152.59,548.079,0.997538,-1,-1,-1
481,-1,1533.95,435.768,148.14,394.423,0.99492,-1,-1,-1
481,-1,614.449,429.107,100.26,267.475,0.989621,-1,-1,-1
481,-1,766.86,439.813,162.151,260.264,0.975079,-1,-1,-1
481,-1,1345.04,411.609,258.95,662.351,0.970382,-1,-1,-1
481,-1,1842.88,462.302,71.38,202.783,0.955401,-1,-1,-1
481,-1,0,318.153,185.059,700.967,0.931329,-1,-1,-1
481,-1,895.41,423.059,98.196,271.555,0.926741,-1,-1,-1
481,-1,396.596,472.085,89.624,170.748,0.923658,-1,-1,-1
481,-1,741.987,447.159,81.082,252.098,0.69527,-1,-1,-1
481,-1,1092.81,451.585,53.84,145.466,0.69173,-1,-1,-1
481,-1,1685.41,417.7,79.55,183.586,0.656985,-1,-1,-1
482,-1,1190.8,428.412,125.06,585.278,0.997053,-1,-1,-1
482,-1,1549.36,425.514,152.42,424.267,0.99704,-1,-1,-1
482,-1,1347.06,406.688,241.82,672.312,0.98886,-1,-1,-1
482,-1,629.831,431.566,95.513,270.14,0.987833,-1,-1,-1
482,-1,805.164,433.379,176.129,264.612,0.976961,-1,-1,-1
482,-1,375.761,465.704,127.152,204.491,0.97194,-1,-1,-1
482,-1,1859.24,435.743,47.07,208.333,0.94631,-1,-1,-1
482,-1,781.81,437.867,74.393,265.805,0.883118,-1,-1,-1
482,-1,25.7174,429.212,151.877,579.008,0.87661,-1,-1,-1
482,-1,926.144,433.826,58.299,242.499,0.587364,-1,-1,-1
482,-1,1700.95,413.272,75.33,182.305,0.550833,-1,-1,-1
483,-1,1189.92,449.458,130.05,566.122,0.997225,-1,-1,-1
483,-1,1552.86,428.054,133.46,432.113,0.99402,-1,-1,-1
483,-1,624.58,441.142,102.014,268.302,0.987095,-1,-1,-1
483,-1,1344.8,412.492,252.61,663.868,0.972718,-1,-1,-1
483,-1,811.065,435.112,168.327,267.711,0.969815,-1,-1,-1
483,-1,1861.98,429.481,48.67,213.765,0.947324,-1,-1,-1
483,-1,378.947,458.089,101.095,176.547,0.92893,-1,-1,-1
483,-1,761.836,441.26,94.459,280.454,0.857535,-1,-1,-1
483,-1,1090.26,451.632,57.23,145.551,0.832102,-1,-1,-1
483,-1,21.7064,457.485,132.845,499.543,0.782315,-1,-1,-1
483,-1,1674.82,414.812,99.5,173.542,0.531519,-1,-1,-1
484,-1,1182.78,430.972,143.3,596.308,0.995161,-1,-1,-1
484,-1,1566.68,435.079,123.85,419.86,0.991794,-1,-1,-1
484,-1,1340.23,425.684,324.52,644.036,0.990783,-1,-1,-1
484,-1,638.897,441.148,98.928,262.405,0.982681,-1,-1,-1
484,-1,800.219,440.296,103.92,294.689,0.982444,-1,-1,-1
484,-1,904.902,428.158,67.177,248.641,0.934529,-1,-1,-1
484,-1,360.34,460.663,128.746,190.686,0.927165,-1,-1,-1
484,-1,1851.01,435.51,62.61,230.524,0.921421,-1,-1,-1
484,-1,1090.79,448.68,54.82,145.733,0.885197,-1,-1,-1
484,-1,870.333,424.763,62.909,252.546,0.828326,-1,-1,-1
484,-1,1693.91,409.552,77.91,210.516,0.735376,-1,-1,-1
484,-1,14.9298,520.136,110.078,241.515,0.731774,-1,-1,-1
484,-1,548.155,447.287,46.014,85.106,0.589033,-1,-1,-1
485,-1,1352.66,398.563,328.97,663.887,0.994443,-1,-1,-1
485,-1,1191.53,432.523,134.55,613.977,0.994442,-1,-1,-1
485,-1,614.232,446.354,122.509,270.118,0.988403,-1,-1,-1
485,-1,1565.02,420.763,132.82,421.922,0.986488,-1,-1,-1
485,-1,785.123,434.767,107.545,293.434,0.985837,-1,-1,-1
485,-1,920.203,426.604,69.624,243.885,0.981796,-1,-1,-1
485,-1,385.448,473.928,90.55,162.305,0.967555,-1,-1,-1
485,-1,1846.62,443.076,68.53,223.614,0.931051,-1,-1,-1
485,-1,1399.21,386.119,137.12,442.552,0.824044,-1,-1,-1
485,-1,1704.19,414.917,69.21,201.172,0.80991,-1,-1,-1
485,-1,859.348,426.597,88.441,267.348,0.80436,-1,-1,-1
485,-1,21.6499,524.034,117.684,351.694,0.716525,-1,-1,-1
485,-1,1069.83,446.945,72.38,124.671,0.666669,-1,-1,-1
485,-1,546.57,447.723,44.944,87.954,0.659516,-1,-1,-1
486,-1,1186.33,446.786,147.72,588.734,0.996515,-1,-1,-1
486,-1,613.872,445.194,142.368,277.767,0.990781,-1,-1,-1
486,-1,1568.09,423.501,139.41,403.617,0.990252,-1,-1,-1
486,-1,795.173,440.733,144.018,260.377,0.986657,-1,-1,-1
486,-1,1352.89,415.129,287.2,644.321,0.985225,-1,-1,-1
486,-1,376.774,467.05,94.236,192.83,0.98046,-1,-1,-1
486,-1,937.522,446.168,74.688,228.122,0.970547,-1,-1,-1
486,-1,1845.1,443.866,69.39,220.977,0.934707,-1,-1,-1
486,-1,1409.52,393.955,129.62,292.002,0.675424,-1,-1,-1
486,-1,539.222,426.894,55.818,92.995,0.664722,-1,-1,-1
486,-1,1347.67,442.923,78.19,155.755,0.647982,-1,-1,-1
486,-1,893.768,430.274,62.742,239.705,0.642338,-1,-1,-1
486,-1,9.98801,527.022,92.347,223.045,0.602216,-1,-1,-1
486,-1,1693.94,428.134,83.94,157.873,0.567219,-1,-1,-1
487,-1,1191.9,444.916,151.32,584.474,0.997145,-1,-1,-1
487,-1,783.121,428.502,159.644,281.153,0.992806,-1,-1,-1
487,-1,635.058,422.318,116.745,286.92,0.990216,-1,-1,-1
487,-1,347.125,483.159,106.553,176.499,0.985763,-1,-1,-1
487,-1,1364.33,398.455,255.11,666.945,0.984084,-1,-1,-1
487,-1,1585.33,428.514,127.74,382.666,0.982365,-1,-1,-1
487,-1,943.386,445.371,71.974,235.689,0.973366,-1,-1,-1
487,-1,5.70922,525.552,89.4892,223.446,0.907259,-1,-1,-1
487,-1,1852.01,430.683,60.43,243.77,0.892733,-1,-1,-1
487,-1,1345.65,420.992,109.95,383.876,0.823571,-1,-1,-1
487,-1,548.509,453.566,43.824,81.327,0.641785,-1,-1,-1
487,-1,1081.05,433.805,61.43,140.67,0.615499,-1,-1,-1
487,-1,1452.1,399.305,98.2,263.899,0.577341,-1,-1,-1
488,-1,1196.19,432.615,155.09,601.935,0.997571,-1,-1,-1
488,-1,1600.66,415.594,127.87,403.194,0.995166,-1,-1,-1
488,-1,793.087,447.188,129.014,295.264,0.993929,-1,-1,-1
488,-1,642.766,437.27,100.067,279.312,0.991176,-1,-1,-1
488,-1,1364.11,417.04,255.98,647.08,0.989861,-1,-1,-1
488,-1,344.722,446.635,107.658,223.655,0.966488,-1,-1,-1
488,-1,938.52,431.241,74.62,257.694,0.96553,-1,-1,-1
488,-1,1844.58,439.861,69.54,223.974,0.905934,-1,-1,-1
488,-1,1347.44,432.73,92.51,364.886,0.745448,-1,-1,-1
488,-1,547.877,447.422,45.837,84.202,0.674156,-1,-1,-1
488,-1,1455.38,395.434,106.08,281.654,0.612139,-1,-1,-1
488,-1,1684.07,425.717,93.3,215.804,0.559468,-1,-1,-1
489,-1,1200.39,451.538,159.22,570.682,0.995923,-1,-1,-1
489,-1,622.918,428.673,129.664,285.793,0.991892,-1,-1,-1
489,-1,1604.11,434.806,137.76,401.601,0.989636,-1,-1,-1
489,-1,808.234,418.558,130.284,302.842,0.98917,-1,-1,-1
489,-1,1368.55,405.196,281.9,653.304,0.98057,-1,-1,-1
489,-1,312.881,457.698,112.484,203.774,0.963028,-1,-1,-1
489,-1,931.574,437.468,70.666,260.565,0.953549,-1,-1,-1
489,-1,1845.76,440.413,68.11,219.596,0.889319,-1,-1,-1
489,-1,1354.09,421.267,99.21,377.894,0.721034,-1,-1,-1
489,-1,549.286,449.265,46.415,84.222,0.6751,-1,-1,-1
489,-1,1686.45,419.796,88.96,310.857,0.576979,-1,-1,-1
490,-1,1206.22,448.79,157.56,580.98,0.997965,-1,-1,-1
490,-1,626.534,425.481,129.443,296.223,0.992942,-1,-1,-1
490,-1,810.369,430.677,128.017,298.209,0.992206,-1,-1,-1
490,-1,1612.97,420.265,141.52,401.489,0.991626,-1,-1,-1
490,-1,1386.16,404.495,243.49,642.665,0.975821,-1,-1,-1
490,-1,938.129,438.512,68.751,232.258,0.920479,-1,-1,-1
490,-1,309.817,474.568,129.146,188.553,0.919544,-1,-1,-1
490,-1,1849.79,418.607,63.6,255.594,0.889285,-1,-1,-1
490,-1,1456.63,397.38,117.07,170.369,0.700007,-1,-1,-1
490,-1,1345.42,425.168,81.76,372.571,0.667888,-1,-1,-1
491,-1,1214.87,433.931,160.56,574.649,0.997565,-1,-1,-1
491,-1,634.492,431.08,124.368,281.931,0.992568,-1,-1,-1
491,-1,813.441,429.911,124.799,294.026,0.989386,-1,-1,-1
491,-1,1610.08,423.842,136.58,382.395,0.986165,-1,-1,-1
491,-1,315.324,444.678,124.386,234.959,0.980621,-1,-1,-1
491,-1,938.352,429.796,82.778,231.298,0.97446,-1,-1,-1
491,-1,1371.03,424.229,276.91,622.571,0.956444,-1,-1,-1
491,-1,1852.73,434.606,58.57,228.995,0.819289,-1,-1,-1
491,-1,1727.83,419.671,62.31,246.23,0.781777,-1,-1,-1
491,-1,1368.8,413.412,118.62,412.948,0.662595,-1,-1,-1
492,-1,1214.83,437.907,176.98,596.133,0.998235,-1,-1,-1
492,-1,1621.81,405.311,131.19,455.134,0.99639,-1,-1,-1
492,-1,649.847,437.861,102.138,268.884,0.992691,-1,-1,-1
492,-1,816.909,424.39,132.272,310.595,0.991919,-1,-1,-1
492,-1,315.95,467.85,105.442,201.228,0.972229,-1,-1,-1
492,-1,944.569,423.091,81.251,243.199,0.964225,-1,-1,-1
492,-1,1384.25,418.993,257.5,627.777,0.964107,-1,-1,-1
492,-1,1852.82,429.954,60.18,233.193,0.855587,-1,-1,-1
492,-1,1380.57,425.875,100.2,217.383,0.783298,-1,-1,-1
492,-1,1064.5,440.922,75.06,132.014,0.620547,-1,-1,-1
493,-1,1211.32,441.939,173.97,587.161,0.997388,-1,-1,-1
493,-1,1636.22,428.336,132.54,416.377,0.994091,-1,-1,-1
493,-1,647.693,462.319,118.17,238.353,0.992996,-1,-1,-1
493,-1,948.662,446.307,88.608,237.371,0.990713,-1,-1,-1
493,-1,1385.96,426.03,240.53,642.71,0.97457,-1,-1,-1
493,-1,824.893,434.502,100.386,293.551,0.969366,-1,-1,-1
493,-1,292.86,480.067,102.274,165.607,0.956312,-1,-1,-1
493,-1,1848.35,444.763,65.79,214.056,0.849432,-1,-1,-1
493,-1,1381.01,425.239,96.34,373.71,0.592089,-1,-1,-1
493,-1,1066.99,438.054,73.42,148.501,0.563415,-1,-1,-1
494,-1,1214.87,449.343,181.84,565.627,0.997258,-1,-1,-1
494,-1,658.832,432.273,100.538,288.868,0.992929,-1,-1,-1
494,-1,811.987,421.951,119.703,299.12,0.983016,-1,-1,-1
494,-1,956.138,434.535,85.692,255.471,0.974348,-1,-1,-1
494,-1,1647.35,408.979,117.65,391.443,0.961746,-1,-1,-1
494,-1,306.414,480.474,83.901,175.186,0.930918,-1,-1,-1
494,-1,1402.17,420.118,258.22,607.732,0.928522,-1,-1,-1
494,-1,1387.24,423.593,98.83,443.672,0.864348,-1,-1,-1
494,-1,1853.92,431.43,59.65,232.491,0.852056,-1,-1,-1
494,-1,1075.58,435.104,69.97,143.142,0.564901,-1,-1,-1
494,-1,565.161,440.254,40.152,78.39,0.563575,-1,-1,-1
495,-1,1228.62,452.526,176.63,577.674,0.997557,-1,-1,-1
495,-1,666.577,439.175,95.017,282.568,0.990744,-1,-1,-1
495,-1,1641.73,418.666,126.96,372.028,0.986445,-1,-1,-1
495,-1,837.353,424.129,99.997,319.038,0.985858,-1,-1,-1
495,-1,942.257,439.632,119.853,253.949,0.976095,-1,-1,-1
495,-1,1444.4,412.666,168.23,478.03,0.964545,-1,-1,-1
495,-1,291.01,463.944,101.302,235.158,0.964417,-1,-1,-1
495,-1,1853.25,438.526,60.04,225.258,0.842817,-1,-1,-1
495,-1,1392.06,423.281,94.93,435.874,0.808789,-1,-1,-1
495,-1,556.598,440.246,41.759,87.897,0.682976,-1,-1,-1
496,-1,1215.28,444.625,187.83,573.415,0.996942,-1,-1,-1
496,-1,1647.82,430.703,131.94,404.522,0.994,-1,-1,-1
496,-1,659.075,419.851,108.364,306.252,0.993942,-1,-1,-1
496,-1,1415.04,398.886,231.18,655.714,0.98358,-1,-1,-1
496,-1,843.993,399.155,98.194,329.691,0.98329,-1,-1,-1
496,-1,951.101,425.486,90.939,266.359,0.975356,-1,-1,-1
496,-1,274.904,468.497,102.947,220.04,0.940408,-1,-1,-1
496,-1,1382.07,427.118,81.12,340.387,0.789481,-1,-1,-1
496,-1,569.721,440.964,41.489,81.249,0.704205,-1,-1,-1
496,-1,1856.2,438.063,56.38,225.647,0.664375,-1,-1,-1
496,-1,1062.93,438.23,81.72,130.087,0.55565,-1,-1,-1
497,-1,1663.79,389.939,119.82,499.234,0.996641,-1,-1,-1
497,-1,1413.74,410.679,256.95,660.031,0.996303,-1,-1,-1
497,-1,1235.6,444.337,171.52,569.363,0.994573,-1,-1,-1
497,-1,660.742,441.117,109.212,270.213,0.993873,-1,-1,-1
497,-1,850.405,435.818,93.866,297.318,0.990308,-1,-1,-1
497,-1,971.04,449.374,90.5,211.336,0.976797,-1,-1,-1
497,-1,243.279,466.492,137.966,233.223,0.976301,-1,-1,-1
497,-1,1084.6,442.766,61.52,121.858,0.755588,-1,-1,-1
497,-1,568.128,435.989,40.631,77.719,0.706761,-1,-1,-1
497,-1,1856.9,430.335,55.83,231.643,0.68789,-1,-1,-1
497,-1,1405,429.221,93.18,370.626,0.516682,-1,-1,-1
498,-1,1237.06,421.359,186.55,614.071,0.995203,-1,-1,-1
498,-1,1420.85,400.563,285.2,668.127,0.992106,-1,-1,-1
498,-1,1645.98,418.743,165.05,453.206,0.990845,-1,-1,-1
498,-1,662.927,434.611,108.07,279.212,0.987882,-1,-1,-1
498,-1,852.241,409.296,89.436,327.678,0.98492,-1,-1,-1
498,-1,956.964,426.545,83.636,248.821,0.978288,-1,-1,-1
498,-1,260.583,459.063,121.774,224.195,0.940185,-1,-1,-1
498,-1,1081.62,443.764,69.66,120.573,0.828245,-1,-1,-1
498,-1,555.587,433.657,40.106,81.301,0.795533,-1,-1,-1
498,-1,1855.64,429.94,57.25,229.162,0.704444,-1,-1,-1
498,-1,369.12,454.567,66.497,129.277,0.650555,-1,-1,-1
498,-1,1410.56,436.542,85.56,352.126,0.605141,-1,-1,-1
499,-1,1264.19,420.028,166.05,612.142,0.99534,-1,-1,-1
499,-1,1427.24,379.074,268.45,659.496,0.993609,-1,-1,-1
499,-1,1619,432.414,220.67,474.818,0.989856,-1,-1,-1
499,-1,853.894,400.12,98.833,314.359,0.989103,-1,-1,-1
499,-1,666.722,433.728,107.221,274.974,0.987067,-1,-1,-1
499,-1,240.649,468.965,110.11,217.901,0.975539,-1,-1,-1
499,-1,975.829,439.005,85.551,244.492,0.971049,-1,-1,-1
499,-1,1086.55,452.13,66.29,138.983,0.916374,-1,-1,-1
499,-1,1848.3,411.334,63.16,242.984,0.813405,-1,-1,-1
499,-1,553.972,434.124,40.639,79.39,0.742601,-1,-1,-1
499,-1,1798.22,426.383,73.36,205.432,0.633864,-1,-1,-1
499,-1,1411.12,439.865,92.45,361.102,0.623095,-1,-1,-1
500,-1,1264.24,405.944,184.45,621.796,0.996559,-1,-1,-1
500,-1,1435.96,414.079,261.86,577.826,0.994597,-1,-1,-1
500,-1,674.774,420.03,108.427,278.695,0.990611,-1,-1,-1
500,-1,1679.82,426.899,131.75,437.286,0.979338,-1,-1,-1
500,-1,968.435,436.068,95.975,250.034,0.977111,-1,-1,-1
500,-1,222.446,458.944,135.745,223.256,0.976612,-1,-1,-1
500,-1,840.666,407.184,126.239,313.518,0.975855,-1,-1,-1
500,-1,1087.23,441.414,61.37,139.285,0.949818,-1,-1,-1
500,-1,1851.05,432.559,61.98,230.562,0.820397,-1,-1,-1
500,-1,1416.29,433.718,91.86,345.332,0.718837,-1,-1,-1
500,-1,382.349,482.476,66.45,105.759,0.583754,-1,-1,-1
500,-1,555.747,438.087,40.931,77.072,0.536692,-1,-1,-1
501,-1,1436.08,372.463,283.48,671.817,0.996146,-1,-1,-1
501,-1,844.197,416.952,123.924,306.273,0.993112,-1,-1,-1
501,-1,223.136,470.145,120.1,234.714,0.989951,-1,-1,-1
501,-1,675.785,435.756,88.881,280.157,0.986902,-1,-1,-1
501,-1,1273.11,411.685,148.99,618.935,0.986249,-1,-1,-1
501,-1,986.861,455.17,93.519,220.199,0.980523,-1,-1,-1
501,-1,1088.42,445.046,56.92,132.46,0.931073,-1,-1,-1
501,-1,1684.95,403.387,118.88,457.7,0.918712,-1,-1,-1
501,-1,1417.95,390.419,115.48,567.522,0.808522,-1,-1,-1
501,-1,1843.68,450.432,68.99,203.945,0.739393,-1,-1,-1
501,-1,389.191,467.956,76.977,109.047,0.55968,-1,-1,-1
501,-1,557.153,438.064,41.464,81.481,0.501757,-1,-1,-1
502,-1,1429.57,408.029,284.46,598.171,0.994879,-1,-1,-1
502,-1,862.274,415.443,103.711,307.088,0.99243,-1,-1,-1
502,-1,1278.03,418.538,146.64,590.872,0.990416,-1,-1,-1
502,-1,680.377,439.17,81.325,258.618,0.982761,-1,-1,-1
502,-1,1694.37,413.907,134.91,461.705,0.96223,-1,-1,-1
502,-1,998.521,447.22,82.909,208.687,0.960942,-1,-1,-1
502,-1,226.174,445.163,112.481,267.399,0.959858,-1,-1,-1
502,-1,1093.59,442.395,51.11,132.001,0.915371,-1,-1,-1
502,-1,364.755,469.41,71.942,115.267,0.857545,-1,-1,-1
502,-1,1851.94,411.037,58.93,237.201,0.720691,-1,-1,-1
502,-1,1432.22,435.099,102.43,354.143,0.632825,-1,-1,-1
502,-1,541.926,422.657,45.208,86.906,0.613712,-1,-1,-1
503,-1,1276.75,405.55,165.49,609.86,0.996395,-1,-1,-1
503,-1,1430.1,399.924,301.26,616.356,0.994767,-1,-1,-1
503,-1,871.056,431.592,102.436,292.443,0.994244,-1,-1,-1
503,-1,690.138,421.465,91.922,278.649,0.985962,-1,-1,-1
503,-1,1688.04,435.301,162.07,460.858,0.983774,-1,-1,-1
503,-1,989.94,447.916,79.14,210.615,0.964706,-1,-1,-1
503,-1,185.622,451.024,133.853,256.606,0.937613,-1,-1,-1
503,-1,1083.45,455.793,59,117.462,0.917598,-1,-1,-1
503,-1,361.4,463.764,75.674,118.298,0.844908,-1,-1,-1
503,-1,1435.4,424.521,97.66,366.812,0.752506,-1,-1,-1
503,-1,1851.67,412.278,60.5,258.232,0.668691,-1,-1,-1
503,-1,540.687,425.409,46.524,86.509,0.559087,-1,-1,-1
504,-1,1289.49,427.623,178.4,615.707,0.995446,-1,-1,-1
504,-1,871.256,418.033,106.415,319.806,0.990314,-1,-1,-1
504,-1,1442.54,395.341,288,600.659,0.988453,-1,-1,-1
504,-1,691.473,418.818,96.848,280.479,0.988178,-1,-1,-1
504,-1,1068.35,454.734,74.58,144.013,0.969083,-1,-1,-1
504,-1,164.659,484.08,154.493,241.81,0.962347,-1,-1,-1
504,-1,1712.58,416.005,141.73,467.799,0.957707,-1,-1,-1
504,-1,992.71,445.568,78.23,232.147,0.895295,-1,-1,-1
504,-1,361.752,460.108,78.225,120.297,0.87243,-1,-1,-1
504,-1,1440.48,412.873,97.18,421.108,0.843092,-1,-1,-1
504,-1,1855.5,422.556,53.02,241.97,0.605647,-1,-1,-1
504,-1,541.658,424.795,46.05,85.952,0.60066,-1,-1,-1
504,-1,575.575,456.744,49.671,51.802,0.545587,-1,-1,-1
505,-1,1294.53,421.95,151.14,609,0.996079,-1,-1,-1
505,-1,1443.91,382.435,316.09,677.805,0.994818,-1,-1,-1
505,-1,877.725,430.803,104.893,309.296,0.993702,-1,-1,-1
505,-1,168.208,493.35,142.018,221.434,0.991921,-1,-1,-1
505,-1,690.973,421.627,87.5,282.896,0.991542,-1,-1,-1
505,-1,1703.18,388.778,203.53,518.895,0.990604,-1,-1,-1
505,-1,1072.4,461.997,70.56,119.954,0.966735,-1,-1,-1
505,-1,363.486,462.808,76.259,116.095,0.881724,-1,-1,-1
505,-1,1440.58,435.344,93,300.641,0.850071,-1,-1,-1
505,-1,542.562,424.854,46.027,88.917,0.58086,-1,-1,-1
506,-1,1304.39,414.191,147.97,609.359,0.996561,-1,-1,-1
506,-1,1453.66,387.877,320.54,680.733,0.995943,-1,-1,-1
506,-1,691.882,421.839,93.767,290.016,0.993001,-1,-1,-1
506,-1,877.695,413.283,115.316,313.047,0.990504,-1,-1,-1
506,-1,151.656,457.113,132.492,244.63,0.988044,-1,-1,-1
506,-1,1709.6,365.098,201.04,575.661,0.986088,-1,-1,-1
506,-1,1089.9,454.305,61.91,121.411,0.92555,-1,-1,-1
506,-1,361.001,458.573,78.35,119.487,0.865521,-1,-1,-1
506,-1,1447.52,438.383,85.61,283.183,0.862611,-1,-1,-1
506,-1,1019.22,448.86,72.5,233.248,0.812319,-1,-1,-1
506,-1,540.805,426.591,48.779,91.471,0.564166,-1,-1,-1
507,-1,1311.84,420.498,134.15,603.492,0.997199,-1,-1,-1
507,-1,1470.6,408.505,279.8,647.915,0.995497,-1,-1,-1
507,-1,1693.38,423.177,220.48,509.466,0.993759,-1,-1,-1
507,-1,689.259,420.019,103.229,289.809,0.993474,-1,-1,-1
507,-1,874.08,417.188,134.03,319.92,0.9888,-1,-1,-1
507,-1,161.013,477.917,118.458,258.411,0.975817,-1,-1,-1
507,-1,1069.05,450.077,74.98,146.584,0.960503,-1,-1,-1
507,-1,1458.8,436.721,82.93,276.226,0.855251,-1,-1,-1
507,-1,1009.2,436.543,80.82,248.837,0.766707,-1,-1,-1
507,-1,383.868,465.078,81.189,124.316,0.718752,-1,-1,-1
507,-1,540.067,425.225,48.55,88.47,0.624671,-1,-1,-1
507,-1,1114.69,462.419,60.49,106.341,0.583305,-1,-1,-1
507,-1,633.51,457.758,50.889,81.556,0.508203,-1,-1,-1
508,-1,1305.21,413.955,159.12,618.895,0.998067,-1,-1,-1
508,-1,692.336,442.828,103.656,260.073,0.993889,-1,-1,-1
508,-1,1710.91,398.447,208.09,521.248,0.992969,-1,-1,-1
508,-1,1486.78,404.49,279.53,643.85,0.985375,-1,-1,-1
508,-1,888.99,438.495,115.91,304.242,0.98007,-1,-1,-1
508,-1,123.536,494.559,154.684,214.351,0.972719,-1,-1,-1
508,-1,1081.72,450.516,66.7,137.501,0.935865,-1,-1,-1
508,-1,1465.41,432.304,94.09,304.983,0.776048,-1,-1,-1
508,-1,1011.63,444.61,73.53,234.391,0.775851,-1,-1,-1
508,-1,857.619,434.044,81.045,260.587,0.753756,-1,-1,-1
508,-1,381.687,462.351,81.383,124.126,0.730557,-1,-1,-1
508,-1,542.43,426.31,48.252,88.663,0.689018,-1,-1,-1
509,-1,1315.95,416.232,158.79,626.168,0.996801,-1,-1,-1
509,-1,1740.94,416.298,162.31,484.08,0.994023,-1,-1,-1
509,-1,695.816,444.741,106.853,255.732,0.99365,-1,-1,-1
509,-1,1482.16,398.16,279.14,635.94,0.992588,-1,-1,-1
509,-1,897.888,423.409,118.512,304.77,0.981926,-1,-1,-1
509,-1,1101.5,451.21,61.14,125.512,0.899385,-1,-1,-1
509,-1,1011,456.033,69.86,231.504,0.846708,-1,-1,-1
509,-1,857.911,428.477,81.574,249.264,0.838196,-1,-1,-1
509,-1,542.108,428.669,47.953,87.91,0.760366,-1,-1,-1
509,-1,130.816,466.69,135.413,255.659,0.738065,-1,-1,-1
509,-1,1064.15,449.113,69.97,173.006,0.712074,-1,-1,-1
509,-1,1471.24,434.408,72.21,241.293,0.679437,-1,-1,-1
509,-1,380.074,462.166,84.182,123.653,0.65897,-1,-1,-1
509,-1,567.9,444.152,41.655,84.103,0.606508,-1,-1,-1
509,-1,652.085,450.056,44.325,80.989,0.523721,-1,-1,-1
510,-1,1320.67,413.672,166.89,654.348,0.997546,-1,-1,-1
510,-1,1748.98,372.197,170.02,545.672,0.995495,-1,-1,-1
510,-1,100.181,484.805,147.203,240.958,0.992681,-1,-1,-1
510,-1,700.46,439.682,109.43,261.177,0.991701,-1,-1,-1
510,-1,1492.6,382.658,277.74,665.172,0.987491,-1,-1,-1
510,-1,872.826,442.725,173.354,281.51,0.978886,-1,-1,-1
510,-1,1027.2,457.869,71.9,222.557,0.922338,-1,-1,-1
510,-1,1079.05,453.995,64,171.172,0.919897,-1,-1,-1
510,-1,1469.91,436.105,90.91,328.301,0.869926,-1,-1,-1
510,-1,543.578,427.944,47.52,88.514,0.80206,-1,-1,-1
510,-1,375.497,474.178,68.658,116.11,0.754902,-1,-1,-1
510,-1,649.722,461.284,51.718,75.619,0.629651,-1,-1,-1
510,-1,864.229,409.667,69.151,248.358,0.617282,-1,-1,-1
510,-1,563.652,453.512,47.906,97.794,0.599877,-1,-1,-1
511,-1,1329.97,428.936,176.34,617.924,0.995606,-1,-1,-1
511,-1,1753.86,381.745,165.14,518.759,0.993656,-1,-1,-1
511,-1,712.953,452.558,96.108,246.822,0.991613,-1,-1,-1
511,-1,1488.18,423.961,305.33,625.469,0.989251,-1,-1,-1
511,-1,902.187,447.779,138.483,262.853,0.975363,-1,-1,-1
511,-1,1076.84,455.782,62.3,177.032,0.928861,-1,-1,-1
511,-1,867.411,417.762,71.102,284.119,0.905475,-1,-1,-1
511,-1,1030.96,448.072,70.5,224.169,0.901877,-1,-1,-1
511,-1,544.844,427.193,46.473,88.354,0.794407,-1,-1,-1
511,-1,1473.21,433.113,85.22,329.865,0.761129,-1,-1,-1
511,-1,374.284,470.539,70.5,114.78,0.727288,-1,-1,-1
511,-1,565.151,455.104,47.103,96.426,0.626904,-1,-1,-1
511,-1,996.855,455.282,64.555,212.419,0.623241,-1,-1,-1
511,-1,105.524,481.253,130.462,243.263,0.618702,-1,-1,-1
511,-1,648.76,461.754,51.537,71.112,0.613915,-1,-1,-1
511,-1,1128.16,473.493,44.18,114.273,0.517777,-1,-1,-1
512,-1,1333.04,416.959,208.74,638.731,0.996798,-1,-1,-1
512,-1,1479.61,385.721,315.64,678.809,0.994143,-1,-1,-1
512,-1,1777.86,410.188,141.14,451.856,0.980707,-1,-1,-1
512,-1,697.412,442.473,117.403,271.544,0.979198,-1,-1,-1
512,-1,865.236,439.373,165.794,275.134,0.974599,-1,-1,-1
512,-1,86.8206,499.188,139.563,214.837,0.952111,-1,-1,-1
512,-1,1084.58,463.127,58.43,173.746,0.930344,-1,-1,-1
512,-1,1036.04,441.28,73.16,248.379,0.907753,-1,-1,-1
512,-1,1475.79,432.167,82.89,302.099,0.731388,-1,-1,-1
512,-1,540.212,434.668,47.285,86.03,0.723756,-1,-1,-1
512,-1,569.979,444.664,38.877,84.644,0.664453,-1,-1,-1
512,-1,998.649,432.02,70.821,232.06,0.629005,-1,-1,-1
512,-1,646.328,456.908,41.1,83.051,0.601579,-1,-1,-1
512,-1,689.251,465.489,47.318,118.754,0.530983,-1,-1,-1
513,-1,1340.14,422.755,177.01,622.685,0.995211,-1,-1,-1
513,-1,1515.91,400.306,266.69,674.664,0.990182,-1,-1,-1
513,-1,720.216,446.185,98.689,263.363,0.985537,-1,-1,-1
513,-1,90.4661,487.24,125.995,231.645,0.980579,-1,-1,-1
513,-1,1791.8,421.075,127.2,398.631,0.97211,-1,-1,-1
513,-1,862.978,437.875,165.512,258.62,0.971989,-1,-1,-1
513,-1,1080.3,462.7,64.74,175.608,0.953519,-1,-1,-1
513,-1,973.972,447.152,163.568,245.892,0.896894,-1,-1,-1
513,-1,686.188,463.688,46.01,117.142,0.834609,-1,-1,-1
513,-1,653.128,464.53,52.564,69.482,0.672988,-1,-1,-1
513,-1,541.02,435.777,46.67,88.111,0.672623,-1,-1,-1
513,-1,1480.34,437.046,86.7,281.453,0.671524,-1,-1,-1
513,-1,570.865,444.957,37.92,88.461,0.609635,-1,-1,-1
513,-1,698.29,459.678,67.317,183.217,0.564247,-1,-1,-1
513,-1,382.244,459.765,77.511,129.867,0.523605,-1,-1,-1
514,-1,1322.48,433.688,252.52,609.122,0.992871,-1,-1,-1
514,-1,1510.75,410.83,272.59,636.92,0.987423,-1,-1,-1
514,-1,862.882,423.899,171.038,290.997,0.978089,-1,-1,-1
514,-1,1804.75,414.013,112.86,430.009,0.977563,-1,-1,-1
514,-1,717.842,453.001,96.507,246.653,0.975997,-1,-1,-1
514,-1,64.2944,509.896,148.896,220.963,0.972098,-1,-1,-1
514,-1,1062.04,453.526,70.67,194.235,0.960983,-1,-1,-1
514,-1,1103.65,453.034,57.39,130.18,0.83064,-1,-1,-1
514,-1,665.915,470.15,63.844,104.632,0.80222,-1,-1,-1
514,-1,540.304,434.581,48.801,91.062,0.663356,-1,-1,-1
514,-1,655.164,463.192,40.662,82.059,0.655903,-1,-1,-1
514,-1,570.582,447.123,38.85,89.805,0.604639,-1,-1,-1
514,-1,944.216,456.042,71.524,200.723,0.602035,-1,-1,-1
514,-1,1370.12,428.268,133.48,304.22,0.53739,-1,-1,-1
514,-1,358.335,463.485,75.252,107.989,0.528981,-1,-1,-1
515,-1,1323.25,460.435,246.54,586.145,0.994994,-1,-1,-1
515,-1,1521.54,373.022,274.72,703.988,0.987245,-1,-1,-1
515,-1,722.826,441.232,99.189,268.588,0.98342,-1,-1,-1
515,-1,862.999,430.93,177.121,281.327,0.975939,-1,-1,-1
515,-1,46.2442,483.565,136.531,246.397,0.975487,-1,-1,-1
515,-1,1794.61,383.537,114.07,538.641,0.973307,-1,-1,-1
515,-1,1069.03,453.901,65.15,179.633,0.968399,-1,-1,-1
515,-1,691.096,452.141,55.495,132.651,0.857282,-1,-1,-1
515,-1,1039.55,446.723,60.45,215.727,0.815042,-1,-1,-1
515,-1,1102.95,447.939,51.84,135.445,0.753519,-1,-1,-1
515,-1,542.107,436.435,50.196,87.08,0.704997,-1,-1,-1
515,-1,658.182,461.747,40.443,82.918,0.69007,-1,-1,-1
515,-1,383.685,461.005,77.444,129.099,0.52243,-1,-1,-1
516,-1,1356.67,425.334,217.11,628.306,0.994996,-1,-1,-1
516,-1,43.7258,496.407,136.218,216.901,0.98681,-1,-1,-1
516,-1,728.023,432.736,95.635,261.36,0.984647,-1,-1,-1
516,-1,1524.02,353.444,300.78,699.836,0.980932,-1,-1,-1
516,-1,893.475,437.273,138.435,286.954,0.974089,-1,-1,-1
516,-1,1828.46,376.515,90.54,522.822,0.973988,-1,-1,-1
516,-1,1063.39,448.082,75.82,216.53,0.958219,-1,-1,-1
516,-1,661.169,454.789,58.882,105.195,0.856067,-1,-1,-1
516,-1,542.815,433.77,53.294,89.503,0.779273,-1,-1,-1
516,-1,869.448,419.453,76.533,275.575,0.728388,-1,-1,-1
516,-1,984.248,442.231,81.702,235.435,0.705532,-1,-1,-1
516,-1,693.12,466.305,60.949,113.744,0.675834,-1,-1,-1
517,-1,1352.31,410.179,212.18,652.721,0.994809,-1,-1,-1
517,-1,1512.64,415.761,343.23,625.639,0.993393,-1,-1,-1
517,-1,40.6467,514.888,144.871,225.333,0.989944,-1,-1,-1
517,-1,882.81,426.76,161.81,288.83,0.987007,-1,-1,-1
517,-1,735.525,441.125,91.437,265.06,0.983316,-1,-1,-1
517,-1,1069.31,459.545,79.49,191.685,0.961017,-1,-1,-1
517,-1,673.73,449.236,49.338,98.916,0.885643,-1,-1,-1
517,-1,643.606,466.231,56.432,98.174,0.845354,-1,-1,-1
517,-1,1836.56,407.51,78.54,385.453,0.842146,-1,-1,-1
517,-1,1013.5,444.964,68.78,226.692,0.745408,-1,-1,-1
517,-1,543.84,434.28,51.422,92.599,0.736281,-1,-1,-1
517,-1,1391.78,412.273,128.92,276.592,0.653721,-1,-1,-1
518,-1,22.7257,499.618,151.386,245.058,0.992815,-1,-1,-1
518,-1,1353.01,403.15,237.66,651.54,0.992226,-1,-1,-1
518,-1,1521.82,398.568,331.64,632.652,0.98996,-1,-1,-1
518,-1,741.909,433.867,92.847,271.555,0.985691,-1,-1,-1
518,-1,894.274,428.618,191.476,276.193,0.985622,-1,-1,-1
518,-1,1062.68,454.034,73.36,214.675,0.940103,-1,-1,-1
518,-1,676.342,445.835,41.242,100.47,0.920178,-1,-1,-1
518,-1,697.202,463.895,45.798,113.879,0.782028,-1,-1,-1
518,-1,1837.55,401.725,81.45,294.751,0.779283,-1,-1,-1
518,-1,543.611,432.051,50.092,89.344,0.765659,-1,-1,-1
518,-1,374.298,470.918,68.842,118.464,0.699546,-1,-1,-1
518,-1,867.555,420.049,84.094,277.224,0.624901,-1,-1,-1
518,-1,634.063,461.436,65.112,71.224,0.537485,-1,-1,-1
518,-1,1401.27,416.033,119.97,232.596,0.52478,-1,-1,-1
519,-1,1528.82,417.691,302.48,611.469,0.99387,-1,-1,-1
519,-1,10.1467,496.069,140.895,258.979,0.992207,-1,-1,-1
519,-1,1351.96,406.696,242.26,657.674,0.989875,-1,-1,-1
519,-1,747.926,425.486,101.06,273.096,0.983908,-1,-1,-1
519,-1,956.142,439.958,102.908,279.618,0.954862,-1,-1,-1
519,-1,1061.04,474.448,83.21,188.957,0.934276,-1,-1,-1
519,-1,864.001,417.426,98.76,286.336,0.932901,-1,-1,-1
519,-1,673.836,447.866,47.361,105.481,0.927511,-1,-1,-1
519,-1,636.714,472.968,62.185,89.109,0.889588,-1,-1,-1
519,-1,1845.54,409.841,68.97,244.295,0.794631,-1,-1,-1
519,-1,542.315,430.233,51.376,91.687,0.7744,-1,-1,-1
519,-1,373.961,467.802,68.934,119.77,0.690671,-1,-1,-1
520,-1,2.80586,500.211,130.861,235.34,0.994711,-1,-1,-1
520,-1,1558.54,403.49,285,633.23,0.993929,-1,-1,-1
520,-1,1363.09,405.98,243.58,649.46,0.990134,-1,-1,-1
520,-1,938.02,459.247,135.39,264.063,0.978601,-1,-1,-1
520,-1,754.195,416.358,96.03,295.127,0.971778,-1,-1,-1
520,-1,875.072,419.501,125.448,309.022,0.963306,-1,-1,-1
520,-1,1069.16,462.294,79.62,217.045,0.943785,-1,-1,-1
520,-1,667.628,466.204,42.043,88.477,0.925464,-1,-1,-1
520,-1,541.022,427.138,51.463,97.146,0.757062,-1,-1,-1
520,-1,374.566,465.897,69.618,122.974,0.706682,-1,-1,-1
520,-1,1854.24,429.425,61.08,209.864,0.65506,-1,-1,-1
520,-1,568.681,444.657,37.948,90.905,0.62872,-1,-1,-1
521,-1,1538.01,414.885,324.84,625.915,0.989789,-1,-1,-1
521,-1,1343.05,399.709,327.06,670.111,0.985778,-1,-1,-1
521,-1,757.388,417.457,83.804,280.534,0.983898,-1,-1,-1
521,-1,955.194,451.504,113.386,282.405,0.981844,-1,-1,-1
521,-1,9.60136,490.385,116.556,266.581,0.980796,-1,-1,-1
521,-1,1065.74,460.937,84.48,226.936,0.953062,-1,-1,-1
521,-1,884.974,426.017,101.911,295.268,0.939873,-1,-1,-1
521,-1,662.269,457.807,48.606,107.722,0.920249,-1,-1,-1
521,-1,1414.65,416.016,157.18,379.443,0.797654,-1,-1,-1
521,-1,541.152,431.108,51.758,95.309,0.704102,-1,-1,-1
521,-1,372.904,463.502,70.466,125.36,0.681568,-1,-1,-1
521,-1,570.048,447.459,38.485,90.493,0.589781,-1,-1,-1
522,-1,1376.59,410.547,231.49,661.333,0.9885,-1,-1,-1
522,-1,754.328,446.417,99.743,262.491,0.987424,-1,-1,-1
522,-1,960.369,459.347,106.061,277.083,0.978775,-1,-1,-1
522,-1,1584.15,358.817,264.76,653.763,0.978367,-1,-1,-1
522,-1,1070.44,470.882,77.61,217.099,0.962426,-1,-1,-1
522,-1,12.7935,486.119,97.6875,245.42,0.954232,-1,-1,-1
522,-1,665.148,449.429,49.358,95.025,0.90146,-1,-1,-1
522,-1,901.559,417.097,97.042,282.317,0.832586,-1,-1,-1
522,-1,371.746,462.828,71.442,127.135,0.72787,-1,-1,-1
522,-1,1432.37,423.765,133.78,329.93,0.702265,-1,-1,-1
522,-1,561.606,441.438,43.894,96.722,0.679187,-1,-1,-1
522,-1,639.679,468.78,54.009,100.696,0.525201,-1,-1,-1
523,-1,766.383,420.118,85.316,267.375,0.986953,-1,-1,-1
523,-1,1385.44,414.813,220.2,656.857,0.986832,-1,-1,-1
523,-1,3.72452,514.461,101.83,230.264,0.986575,-1,-1,-1
523,-1,1577.81,394.233,271.87,639.537,0.978686,-1,-1,-1
523,-1,975.432,465.321,85.938,262.51,0.971618,-1,-1,-1
523,-1,881.368,411.761,93.81,290.731,0.967567,-1,-1,-1
523,-1,668.42,460.405,46.101,113.372,0.91793,-1,-1,-1
523,-1,1084.05,447.533,70.53,214.146,0.91258,-1,-1,-1
523,-1,540.969,425.099,54.509,102.841,0.766338,-1,-1,-1
523,-1,374.407,466.178,69.395,124.249,0.677309,-1,-1,-1
523,-1,568.256,451.208,42.275,101.284,0.628498,-1,-1,-1
524,-1,1413.26,419.991,199.97,654.649,0.99257,-1,-1,-1
524,-1,775.768,446.264,68.949,204.191,0.983081,-1,-1,-1
524,-1,962.446,460.062,98.304,283.978,0.977954,-1,-1,-1
524,-1,885.286,420.478,96.448,272.012,0.974745,-1,-1,-1
524,-1,1570.3,401.284,287.61,643.626,0.963692,-1,-1,-1
524,-1,1069.23,467.56,82.13,198.039,0.933194,-1,-1,-1
524,-1,674.02,456.064,50.357,101.415,0.891982,-1,-1,-1
524,-1,12.1814,519.351,95.8066,228.406,0.865315,-1,-1,-1
524,-1,568.277,444.502,35.556,91.211,0.734773,-1,-1,-1
525,-1,774.66,425.702,79.729,272.188,0.983741,-1,-1,-1
525,-1,1598.92,405.135,250.09,632.225,0.982995,-1,-1,-1
525,-1,1409.11,412.26,259.46,639.86,0.982023,-1,-1,-1
525,-1,904.837,410.029,96.943,322.36,0.976251,-1,-1,-1
525,-1,967.809,431.629,94.261,303.153,0.965889,-1,-1,-1
525,-1,1073.95,460.585,80.22,191.669,0.963329,-1,-1,-1
525,-1,676.774,450.555,45.155,102.946,0.885523,-1,-1,-1
525,-1,376.194,466.469,64.757,124.04,0.880303,-1,-1,-1
525,-1,542.041,426.13,51.785,98.904,0.793851,-1,-1,-1
525,-1,565.985,457.094,41.482,99.892,0.613196,-1,-1,-1
525,-1,1440.08,426.597,139.41,349.532,0.601755,-1,-1,-1
525,-1,9.56311,541.42,74.467,204.484,0.507191,-1,-1,-1
526,-1,1073.17,444.077,90.31,232.79,0.986881,-1,-1,-1
526,-1,781.886,436.266,85.548,259.312,0.978685,-1,-1,-1
526,-1,1610.89,383.399,277.27,627.061,0.978632,-1,-1,-1
526,-1,894.306,419.19,106.754,297.929,0.976525,-1,-1,-1
526,-1,1430.85,377.996,241.45,666.234,0.966541,-1,-1,-1
526,-1,975.309,437.163,90.621,301.716,0.959279,-1,-1,-1
526,-1,673.331,469.754,42.251,90.045,0.867581,-1,-1,-1
526,-1,543.41,423.266,51.422,98.505,0.811124,-1,-1,-1
526,-1,1446.27,432.634,142.92,323.914,0.737329,-1,-1,-1
526,-1,362.159,467.815,71.896,105.259,0.643326,-1,-1,-1
526,-1,705.244,460.167,40.107,112.031,0.605431,-1,-1,-1
526,-1,566.134,449.374,41.249,103.237,0.579651,-1,-1,-1
527,-1,1436.53,403.702,190.69,669.698,0.989665,-1,-1,-1
527,-1,788.022,439.623,86.692,257.351,0.984827,-1,-1,-1
527,-1,900.942,414.351,79.713,296.859,0.975767,-1,-1,-1
527,-1,1601.97,396.009,286.04,633.621,0.975415,-1,-1,-1
527,-1,978.829,448.618,94.291,293.348,0.969077,-1,-1,-1
527,-1,1081.2,445.106,85.49,211.292,0.956026,-1,-1,-1
527,-1,662.563,466.424,61.247,106.089,0.897906,-1,-1,-1
527,-1,543.465,424.639,51.694,95.623,0.826095,-1,-1,-1
527,-1,361.954,467.32,71.965,105.579,0.643405,-1,-1,-1
527,-1,701.679,469.867,35.656,102.781,0.62388,-1,-1,-1
527,-1,564.961,459.478,40.026,99.014,0.568216,-1,-1,-1
528,-1,1439.66,397.873,196.92,672.747,0.990995,-1,-1,-1
528,-1,773.954,445.378,119.198,260.046,0.981891,-1,-1,-1
528,-1,980.955,463.084,109.885,285.847,0.981222,-1,-1,-1
528,-1,891.542,409.228,87.341,309.612,0.976431,-1,-1,-1
528,-1,1082.69,455.144,91.13,228.475,0.955099,-1,-1,-1
528,-1,365.358,458.085,75.615,121.032,0.935896,-1,-1,-1
528,-1,1602.37,365.023,290.74,643.537,0.934623,-1,-1,-1
528,-1,678.815,451.347,35.849,93.404,0.902303,-1,-1,-1
528,-1,544.57,418.81,50.71,98.031,0.867943,-1,-1,-1
528,-1,1125.82,447.644,53.15,126.046,0.716925,-1,-1,-1
529,-1,1442.83,399.862,195.9,663.448,0.991036,-1,-1,-1
529,-1,770.581,437.36,124.812,276.671,0.981911,-1,-1,-1
529,-1,999.224,449.102,97.456,285.267,0.976933,-1,-1,-1
529,-1,889.143,410.405,88.58,316.119,0.969858,-1,-1,-1
529,-1,1646.78,385.544,248.85,539.963,0.962497,-1,-1,-1
529,-1,366.361,459.664,74.585,120.017,0.931712,-1,-1,-1
529,-1,1097.64,447.751,63.67,211.415,0.930495,-1,-1,-1
529,-1,665.038,473.23,34.716,80.476,0.922179,-1,-1,-1
529,-1,568.325,442.5,28.238,75.968,0.799947,-1,-1,-1
529,-1,687.567,466.223,27.534,89.583,0.629167,-1,-1,-1
529,-1,1564.47,368.446,192.16,652.104,0.618463,-1,-1,-1
529,-1,1127.5,458.923,48.5,118.686,0.603473,-1,-1,-1
530,-1,1439.26,391.722,208.95,682.258,0.994477,-1,-1,-1
530,-1,784.306,434.917,93.615,274.675,0.98439,-1,-1,-1
530,-1,1624.64,412.454,267.16,570.673,0.982674,-1,-1,-1
530,-1,1006.45,453.845,94.84,271.708,0.969115,-1,-1,-1
530,-1,367.982,460.22,74.458,119.753,0.958511,-1,-1,-1
530,-1,1094.25,463.262,80.73,223.396,0.948568,-1,-1,-1
530,-1,909.646,425.785,89.82,288.497,0.940057,-1,-1,-1
530,-1,668.818,465.502,35.883,84.017,0.917738,-1,-1,-1
530,-1,567.177,437.873,30.585,75.937,0.883963,-1,-1,-1
530,-1,1555.17,374.832,173.25,643.448,0.660097,-1,-1,-1
531,-1,1431.86,396.449,270.43,676.441,0.995994,-1,-1,-1
531,-1,784.309,415.756,98.191,273.2,0.986415,-1,-1,-1
531,-1,992.619,454.695,120.571,286.339,0.982263,-1,-1,-1
531,-1,1629.73,427.772,267.11,585.988,0.974506,-1,-1,-1
531,-1,915.557,429.43,93.203,282.663,0.954589,-1,-1,-1
531,-1,367.301,463.899,73.687,113.831,0.94649,-1,-1,-1
531,-1,1093.04,454.524,63.03,188.251,0.935618,-1,-1,-1
531,-1,658.272,450.157,46.045,100.037,0.916083,-1,-1,-1
531,-1,1127,448.779,52.91,102.472,0.809344,-1,-1,-1
531,-1,633.463,458.832,36.554,83.047,0.683449,-1,-1,-1
531,-1,563.07,446.88,37.964,92.529,0.642961,-1,-1,-1
532,-1,1453,404.581,291.06,671.969,0.992707,-1,-1,-1
532,-1,789.287,430.218,100.579,255.995,0.990762,-1,-1,-1
532,-1,996.634,438.725,124.346,291.75,0.978063,-1,-1,-1
532,-1,1640.41,401.751,276.38,647.249,0.976567,-1,-1,-1
532,-1,912.212,423.716,90.418,276.214,0.954776,-1,-1,-1
532,-1,367.442,462.062,72.546,115.693,0.952836,-1,-1,-1
532,-1,660.372,452.87,49.179,108.741,0.928469,-1,-1,-1
532,-1,1110.53,451.279,49.39,155.879,0.905043,-1,-1,-1
532,-1,632.408,462.601,38.791,82.773,0.704947,-1,-1,-1
532,-1,562.907,445.174,38.402,91.204,0.679883,-1,-1,-1
532,-1,1150.31,458.96,55.76,107.47,0.621482,-1,-1,-1
533,-1,1456.05,406.302,288.7,660.848,0.996108,-1,-1,-1
533,-1,790.31,426.404,112.269,281.216,0.988447,-1,-1,-1
533,-1,1690.67,392.4,227.7,642.95,0.988445,-1,-1,-1
533,-1,992.337,432.445,139.913,301.229,0.98128,-1,-1,-1
533,-1,928.569,419.407,85.311,297.548,0.964064,-1,-1,-1
533,-1,367.065,461.957,72.637,115.477,0.946896,-1,-1,-1
533,-1,669.892,453.074,40.869,98.222,0.922647,-1,-1,-1
533,-1,1104.52,459.962,46.74,161.497,0.834049,-1,-1,-1
533,-1,569.036,435.756,30.702,80.367,0.771835,-1,-1,-1
534,-1,1454.49,400.612,219.85,677.958,0.996069,-1,-1,-1
534,-1,795.321,439.612,113.846,247.541,0.991647,-1,-1,-1
534,-1,1673.53,377.8,245.47,670.63,0.991511,-1,-1,-1
534,-1,978.974,448.426,139.266,264.535,0.97857,-1,-1,-1
534,-1,922.483,421.859,87.517,298.242,0.968323,-1,-1,-1
534,-1,365.494,458.852,77.712,120.955,0.965207,-1,-1,-1
534,-1,1109.91,444.686,61.04,218.55,0.928257,-1,-1,-1
534,-1,659.138,458.739,52.141,111.102,0.924785,-1,-1,-1
534,-1,565.853,441.701,37.893,97.975,0.823377,-1,-1,-1
534,-1,1609.94,438.3,135.94,601.27,0.606159,-1,-1,-1
535,-1,1453.84,413.05,275.15,662.02,0.997189,-1,-1,-1
535,-1,1705.06,384.806,213.94,694.194,0.990228,-1,-1,-1
535,-1,986.511,444.399,180.529,273.42,0.987134,-1,-1,-1
535,-1,785.708,441.949,139.337,259.835,0.984684,-1,-1,-1
535,-1,923.326,416.143,97.794,305.582,0.975914,-1,-1,-1
535,-1,660.986,457.49,49.658,105.998,0.92945,-1,-1,-1
535,-1,1105.88,446.784,67.21,219.451,0.902358,-1,-1,-1
535,-1,565.418,417.54,39.921,94.578,0.830317,-1,-1,-1
535,-1,365.861,476.413,75.958,103.09,0.722423,-1,-1,-1
535,-1,703.676,452.1,36.601,100.037,0.51476,-1,-1,-1
536,-1,1701.3,384.03,217.7,673.85,0.994596,-1,-1,-1
536,-1,1472.29,394.871,262.83,684.129,0.994307,-1,-1,-1
536,-1,805.559,430.759,119.985,280.715,0.991105,-1,-1,-1
536,-1,1010.76,447.125,132.98,282.395,0.982872,-1,-1,-1
536,-1,923.905,426.889,73.012,280.146,0.967274,-1,-1,-1
536,-1,368.089,460.439,74.019,118.398,0.950966,-1,-1,-1
536,-1,1105.35,449.653,73.07,238.837,0.939579,-1,-1,-1
536,-1,666.978,444.69,41.241,98.195,0.925898,-1,-1,-1
536,-1,564.69,418.983,39.528,93.124,0.789569,-1,-1,-1
536,-1,700.643,444.976,39.91,112.159,0.583166,-1,-1,-1
537,-1,1464.97,421.236,273.68,657.704,0.995514,-1,-1,-1
537,-1,1731.66,386.539,187.34,674.651,0.98745,-1,-1,-1
537,-1,809.76,417.087,111.517,285.243,0.98734,-1,-1,-1
537,-1,1020.38,450.191,123.96,287.881,0.981071,-1,-1,-1
537,-1,924.102,399.143,90.288,332.383,0.969928,-1,-1,-1
537,-1,367.379,460.951,74.852,117.77,0.938974,-1,-1,-1
537,-1,1118.76,440.883,60.71,241.604,0.929921,-1,-1,-1
537,-1,665.495,442.677,44.893,103.131,0.926558,-1,-1,-1
537,-1,565.55,424.444,39.47,95.588,0.816086,-1,-1,-1
538,-1,1469.5,426.217,272.95,639.163,0.996217,-1,-1,-1
538,-1,1745.66,384.323,167.14,688.487,0.98814,-1,-1,-1
538,-1,815.182,438.924,118.637,265.803,0.987282,-1,-1,-1
538,-1,1031.02,459.778,118.61,272.654,0.97112,-1,-1,-1
538,-1,934.716,406.275,106.294,305.649,0.970732,-1,-1,-1
538,-1,1112.07,432.746,71.29,230.596,0.95219,-1,-1,-1
538,-1,675.607,454.249,42.414,90.587,0.910934,-1,-1,-1
538,-1,637.473,468.126,64.665,98.839,0.867115,-1,-1,-1
538,-1,564.396,431.983,41.451,101.438,0.784247,-1,-1,-1
538,-1,362.508,472.006,82.557,103.785,0.58872,-1,-1,-1
539,-1,1465.32,404.262,305.08,662.788,0.997012,-1,-1,-1
539,-1,925.271,417.115,108.959,292.129,0.977867,-1,-1,-1
539,-1,826.433,427.542,98.079,270.227,0.976681,-1,-1,-1
539,-1,1023.17,462.719,110.44,273.012,0.973242,-1,-1,-1
539,-1,365.491,460.911,77.126,120.214,0.952253,-1,-1,-1
539,-1,1121.31,451.136,55.35,201.546,0.937797,-1,-1,-1
539,-1,670.456,460.505,37.544,88.286,0.925654,-1,-1,-1
539,-1,1745.36,326.259,173.64,750.671,0.920892,-1,-1,-1
539,-1,565.4,433.699,38.834,98.064,0.722849,-1,-1,-1
539,-1,695.995,444.914,36.945,93.104,0.553441,-1,-1,-1
540,-1,1478.44,406.042,283.18,667.778,0.998052,-1,-1,-1
540,-1,1029.53,454.835,163.66,250.797,0.98853,-1,-1,-1
540,-1,822.602,433.399,103.673,263.356,0.98439,-1,-1,-1
540,-1,936.386,399.593,104.494,326.249,0.980761,-1,-1,-1
540,-1,1759.15,291.692,156.97,787.308,0.958918,-1,-1,-1
540,-1,667.172,461.388,35.836,86.23,0.908934,-1,-1,-1
540,-1,368.422,461.939,73.213,111.087,0.907123,-1,-1,-1
540,-1,1117.69,465.072,61.61,193.593,0.80626,-1,-1,-1
540,-1,678.94,464.689,64.314,102.609,0.774846,-1,-1,-1
540,-1,562.613,463.302,53.464,91.588,0.653707,-1,-1,-1
540,-1,542.647,430.237,46.611,91.098,0.625723,-1,-1,-1
541,-1,1501,412.024,281.95,652.046,0.997313,-1,-1,-1
541,-1,1030.61,461.45,158.91,250.764,0.98885,-1,-1,-1
541,-1,814.322,446.541,105.07,228.41,0.974058,-1,-1,-1
541,-1,942.558,397.886,101.172,311.374,0.959525,-1,-1,-1
541,-1,368.347,460.804,73.508,111.981,0.898948,-1,-1,-1
541,-1,1770.87,438.453,148.13,501.857,0.881221,-1,-1,-1
541,-1,650.635,460.662,52.286,105.846,0.876237,-1,-1,-1
541,-1,567.485,443.432,38.178,87.357,0.710859,-1,-1,-1
541,-1,679.155,470.2,63.007,94.388,0.702711,-1,-1,-1
541,-1,1118.5,476.98,56.93,167.241,0.702307,-1,-1,-1
542,-1,1512.71,410.435,306.1,653.065,0.996772,-1,-1,-1
542,-1,1028.48,460.828,157.36,252.513,0.990744,-1,-1,-1
542,-1,837.789,442.643,100.046,244.542,0.953644,-1,-1,-1
542,-1,943.418,424.551,89.932,275.239,0.951693,-1,-1,-1
542,-1,1791.17,396.081,118.82,598.305,0.94671,-1,-1,-1
542,-1,367.384,461.294,74.88,111.332,0.884745,-1,-1,-1
542,-1,667.504,446.266,35.968,95.106,0.879973,-1,-1,-1
542,-1,680.939,464.754,62.566,96.868,0.733294,-1,-1,-1
542,-1,542.437,428.98,47.537,94.225,0.698641,-1,-1,-1
542,-1,562.643,462.028,54.011,94.911,0.671059,-1,-1,-1
542,-1,1113.71,461.404,58.79,197.359,0.661544,-1,-1,-1
542,-1,816.046,473.136,54.295,81.898,0.593388,-1,-1,-1
543,-1,1511.05,389.554,269.88,649.396,0.998108,-1,-1,-1
543,-1,1016.75,439.355,171.83,268.426,0.986829,-1,-1,-1
543,-1,940.695,427.982,105.305,274.682,0.97842,-1,-1,-1
543,-1,837.344,430.103,95.216,253.617,0.968648,-1,-1,-1
543,-1,1811.95,411.275,104.85,549.171,0.906427,-1,-1,-1
543,-1,368.936,462.749,73.361,110.053,0.898104,-1,-1,-1
543,-1,674.693,454.719,43.512,88.552,0.864383,-1,-1,-1
543,-1,565.813,432.885,38.251,88.817,0.708338,-1,-1,-1
543,-1,1122.19,461.586,56.83,165.733,0.570972,-1,-1,-1
543,-1,816.464,469.897,52.709,83.034,0.518497,-1,-1,-1
544,-1,1528.5,407.552,287.3,646.968,0.997263,-1,-1,-1
544,-1,1017.73,458.729,178.32,230.045,0.981978,-1,-1,-1
544,-1,949.935,426.112,80.985,255.709,0.978612,-1,-1,-1
544,-1,845.174,429.602,99.08,260.979,0.952838,-1,-1,-1
544,-1,365.853,458.671,75.355,116.557,0.931392,-1,-1,-1
544,-1,651.972,461.249,50.752,103.372,0.833137,-1,-1,-1
544,-1,566.694,436.194,39.991,89.085,0.807806,-1,-1,-1
544,-1,1813.03,460.277,105.97,538.824,0.803104,-1,-1,-1
544,-1,683.095,468.835,63.29,92.993,0.639608,-1,-1,-1
545,-1,1525.51,373.455,293.73,677.895,0.996664,-1,-1,-1
545,-1,1041.01,433.268,161.32,275.761,0.981899,-1,-1,-1
545,-1,868.715,411.307,87.71,263.901,0.974547,-1,-1,-1
545,-1,368.74,460.614,74.43,116.265,0.927399,-1,-1,-1
545,-1,650.76,456.297,53.628,106.079,0.879271,-1,-1,-1
545,-1,1834.3,472.393,82,469.265,0.846304,-1,-1,-1
545,-1,542.637,424.896,53.569,95.952,0.844253,-1,-1,-1
545,-1,954.52,426.248,94.17,291.152,0.794111,-1,-1,-1
545,-1,680.882,471.77,61.255,93.279,0.624499,-1,-1,-1
545,-1,1138.93,452.271,61.6,172.47,0.543527,-1,-1,-1
546,-1,1521.87,401.896,295.05,655.514,0.997703,-1,-1,-1
546,-1,868.148,416.988,95.221,251.681,0.983967,-1,-1,-1
546,-1,1054.44,443.025,126.61,246.428,0.983428,-1,-1,-1
546,-1,956.46,405.48,100.64,301.916,0.970898,-1,-1,-1
546,-1,368.001,459.372,76.223,116.025,0.92646,-1,-1,-1
546,-1,649.017,461.778,53.095,104.522,0.885865,-1,-1,-1
546,-1,559.954,446.804,43.906,96.795,0.810469,-1,-1,-1
546,-1,682.281,472.343,61.72,91.683,0.623942,-1,-1,-1
546,-1,1852.74,466.563,62.86,480.736,0.536115,-1,-1,-1
546,-1,1136.35,453.063,63.75,158.644,0.52164,-1,-1,-1
547,-1,1530.85,396.523,293.72,667.887,0.998539,-1,-1,-1
547,-1,1053.59,446.495,129.27,265.499,0.988845,-1,-1,-1
547,-1,949.454,412.063,96.756,308.96,0.979939,-1,-1,-1
547,-1,849.763,410.098,111.969,286.524,0.978763,-1,-1,-1
547,-1,365.369,457.096,77.542,117.8,0.902286,-1,-1,-1
547,-1,637.527,474.134,57.607,89.134,0.864395,-1,-1,-1
547,-1,544.32,423.606,49.556,93.92,0.852902,-1,-1,-1
547,-1,674.075,458.252,46.539,103.375,0.792472,-1,-1,-1
548,-1,1529.38,399.486,316.61,661.804,0.998268,-1,-1,-1
548,-1,1052.58,451.412,135.06,259.501,0.991552,-1,-1,-1
548,-1,862.779,412.936,101.313,276.997,0.979054,-1,-1,-1
548,-1,944.5,421.054,88.52,274.641,0.966781,-1,-1,-1
548,-1,632.96,460.123,61.923,96.817,0.902253,-1,-1,-1
548,-1,366.813,458.319,76.101,115.73,0.895373,-1,-1,-1
548,-1,673.836,457.691,46.87,110.613,0.852319,-1,-1,-1
548,-1,564.012,433.904,39.354,95.049,0.827115,-1,-1,-1
548,-1,1733.32,407.749,134.08,247.331,0.601848,-1,-1,-1
549,-1,1528.27,391.364,319.71,665.656,0.998344,-1,-1,-1
549,-1,1052.24,448.956,148.09,258.626,0.992825,-1,-1,-1
549,-1,870.838,444.212,87.032,227.08,0.961984,-1,-1,-1
549,-1,946.453,419.513,92.567,273.781,0.951268,-1,-1,-1
549,-1,647.783,447.421,39.363,97.607,0.928729,-1,-1,-1
549,-1,676.15,456.332,43.914,105.68,0.856537,-1,-1,-1
549,-1,564.835,437.079,40.053,98.47,0.841663,-1,-1,-1
549,-1,366.754,458.845,75.619,112.404,0.839335,-1,-1,-1
549,-1,542.147,425.713,43.712,95.232,0.81421,-1,-1,-1
549,-1,1860.48,416.314,53.6,260.488,0.620886,-1,-1,-1
549,-1,1746.94,395.58,126.85,247.788,0.593265,-1,-1,-1
550,-1,1553.64,424.278,298.41,638.192,0.997178,-1,-1,-1
550,-1,1029.88,445.959,183.8,269.523,0.994102,-1,-1,-1
550,-1,966.067,409.501,106.553,300.165,0.968467,-1,-1,-1
550,-1,868.922,436.814,92.819,231.089,0.936663,-1,-1,-1
550,-1,633.664,451.719,44.859,98.429,0.929717,-1,-1,-1
550,-1,658.593,454.201,59.374,108.604,0.910044,-1,-1,-1
550,-1,568.872,423.792,37.558,101.109,0.838905,-1,-1,-1
550,-1,374.301,474.918,74.168,107.557,0.787331,-1,-1,-1
550,-1,1853.25,424.981,60.92,246.279,0.577016,-1,-1,-1
551,-1,1558.42,408.491,279.43,652.539,0.998542,-1,-1,-1
551,-1,1031.09,428.952,190.81,262.549,0.996711,-1,-1,-1
551,-1,969.398,416.601,97.452,276.754,0.98224,-1,-1,-1
551,-1,872.292,440.568,94.817,231.939,0.948464,-1,-1,-1
551,-1,653.554,462.544,37.323,86.776,0.925247,-1,-1,-1
551,-1,569.86,448.6,42.397,105.107,0.845007,-1,-1,-1
551,-1,372.995,477.186,74.28,109.343,0.82163,-1,-1,-1
551,-1,545.203,423.77,47.872,106.524,0.757259,-1,-1,-1
551,-1,632.443,453.471,37.324,103.19,0.664115,-1,-1,-1
551,-1,677.812,446.236,44.187,94.126,0.649844,-1,-1,-1
551,-1,1868.67,434.07,44.89,231.746,0.562235,-1,-1,-1
552,-1,1557.95,395.267,280.68,667.853,0.997727,-1,-1,-1
552,-1,1059.97,456.519,160.82,257.926,0.99538,-1,-1,-1
552,-1,970.503,400.567,104.807,314.611,0.987743,-1,-1,-1
552,-1,876.522,423.18,89.272,256.296,0.943841,-1,-1,-1
552,-1,651.454,461.349,38.107,83.665,0.931549,-1,-1,-1
552,-1,561.706,441.043,44.007,105.1,0.869182,-1,-1,-1
552,-1,371.987,478.61,77.572,106.897,0.80199,-1,-1,-1
552,-1,630.047,453.746,36.393,97.697,0.705748,-1,-1,-1
553,-1,1555.78,407.269,296.02,652.941,0.996258,-1,-1,-1
553,-1,1065.06,455.873,164.65,250.024,0.995813,-1,-1,-1
553,-1,978.49,421.517,97.64,301.235,0.987153,-1,-1,-1
553,-1,877.44,420.74,85.449,255.303,0.959671,-1,-1,-1
553,-1,653.511,458.657,35.911,84.808,0.9248,-1,-1,-1
553,-1,569.121,456.39,41.42,99.801,0.863947,-1,-1,-1
553,-1,371.034,476.422,77.05,109.346,0.863941,-1,-1,-1
553,-1,549.841,431.863,42.501,94.903,0.749271,-1,-1,-1
553,-1,629.936,453.048,34.36,99.12,0.562523,-1,-1,-1
554,-1,1564.24,376.191,307.11,688.499,0.996805,-1,-1,-1
554,-1,1067.3,445.446,172.93,265.365,0.993517,-1,-1,-1
554,-1,979.654,421.933,87.016,275.135,0.971364,-1,-1,-1
554,-1,900.269,433.585,86.799,248.823,0.970291,-1,-1,-1
554,-1,651.199,465.111,37.764,89.752,0.934707,-1,-1,-1
554,-1,371.204,475.594,74.317,108.895,0.900704,-1,-1,-1
554,-1,570.038,454.526,40.98,98.864,0.839168,-1,-1,-1
554,-1,546.836,429.489,45.204,98.281,0.7746,-1,-1,-1
554,-1,631.718,456.913,34.362,97.998,0.762235,-1,-1,-1
555,-1,1574.67,412.856,319.87,650.444,0.997859,-1,-1,-1
555,-1,1082.09,438.304,146.64,281.333,0.990262,-1,-1,-1
555,-1,975.032,398.932,87.968,327.006,0.982239,-1,-1,-1
555,-1,879.987,405.108,104.044,290.136,0.954326,-1,-1,-1
555,-1,653.919,467.703,36.722,84.194,0.93032,-1,-1,-1
555,-1,370.167,476.321,74.352,111.83,0.840788,-1,-1,-1
555,-1,564.115,440.565,41.415,103.943,0.813266,-1,-1,-1
555,-1,631.763,455.661,34.172,95.131,0.744431,-1,-1,-1
555,-1,680.994,466.43,59.255,91.377,0.616943,-1,-1,-1
556,-1,1573.11,407.098,321.83,657.262,0.997778,-1,-1,-1
556,-1,1065.66,446.403,151.47,258.916,0.993916,-1,-1,-1
556,-1,991.686,410.737,89.274,274.364,0.983466,-1,-1,-1
556,-1,882.202,428.421,93.385,258.286,0.975907,-1,-1,-1
556,-1,653.951,468.828,35.052,81.063,0.930327,-1,-1,-1
556,-1,371.085,474.91,72.136,114.585,0.876229,-1,-1,-1
556,-1,563.872,440.792,41.593,102.861,0.805305,-1,-1,-1
556,-1,633.068,456.974,33.167,93.72,0.737839,-1,-1,-1
556,-1,682.034,468.45,59.142,87.929,0.517965,-1,-1,-1
557,-1,1547.58,391.124,355.68,671.976,0.997617,-1,-1,-1
557,-1,1104.33,443.49,121.99,268.471,0.994176,-1,-1,-1
557,-1,886.643,435.11,95.796,266.295,0.985525,-1,-1,-1
557,-1,997.922,414.511,88.138,286.092,0.979397,-1,-1,-1
557,-1,651.859,470.307,34.539,80.575,0.942993,-1,-1,-1
557,-1,369.738,471.467,75.784,115.55,0.86057,-1,-1,-1
557,-1,631.623,457.223,32.736,92.97,0.832395,-1,-1,-1
557,-1,545.267,448.058,57.413,114.143,0.830439,-1,-1,-1
557,-1,681.069,466.955,57.649,89.008,0.611741,-1,-1,-1
558,-1,1554.07,399.37,335.61,667.85,0.99821,-1,-1,-1
558,-1,1085.51,447.957,127.93,275.83,0.995163,-1,-1,-1
558,-1,892.08,418.911,96.734,270.116,0.988699,-1,-1,-1
558,-1,1004.43,414.331,91.6,289.966,0.973226,-1,-1,-1
558,-1,640.978,460.785,43.179,88.912,0.944315,-1,-1,-1
558,-1,563.47,445.914,41.83,106.801,0.871445,-1,-1,-1
558,-1,370.352,472.051,74.533,117.261,0.866343,-1,-1,-1
558,-1,670.527,453.135,34.905,85.241,0.735243,-1,-1,-1
558,-1,684.289,464.916,53.715,92.971,0.65902,-1,-1,-1
559,-1,1550.3,404.329,314.16,667.241,0.998014,-1,-1,-1
559,-1,1092.88,456.759,130.5,263.253,0.994403,-1,-1,-1
559,-1,996.376,402.521,105.974,298.973,0.962137,-1,-1,-1
559,-1,641.72,444.601,48.51,117.064,0.95032,-1,-1,-1
559,-1,902.409,442.857,90.568,246.318,0.944218,-1,-1,-1
559,-1,369.466,472.328,76.482,114.929,0.879232,-1,-1,-1
559,-1,560.831,444.935,43.788,112.136,0.864449,-1,-1,-1
559,-1,542.176,426.842,41.07,104.792,0.704472,-1,-1,-1
559,-1,686.721,460.189,55.391,98.23,0.629743,-1,-1,-1
559,-1,590.396,466.44,72.957,102.061,0.617863,-1,-1,-1
560,-1,1566.75,377.068,309.9,690.262,0.998154,-1,-1,-1
560,-1,1069.3,451.923,169.46,248.676,0.992273,-1,-1,-1
560,-1,996.908,428.227,103.132,283.533,0.966728,-1,-1,-1
560,-1,907.96,431.235,83.222,266.718,0.957873,-1,-1,-1
560,-1,629.524,443.642,43.673,112.795,0.939445,-1,-1,-1
560,-1,369.288,473.748,78.337,114.919,0.871963,-1,-1,-1
560,-1,560.515,444.513,44.192,113.216,0.870753,-1,-1,-1
560,-1,646.346,450.192,64.686,118.861,0.870409,-1,-1,-1
560,-1,683.511,454.346,56.886,104.633,0.575027,-1,-1,-1
561,-1,1591.02,371.313,274.44,701.597,0.998683,-1,-1,-1
561,-1,1078.21,431.107,165.64,284.941,0.981234,-1,-1,-1
561,-1,1002.76,386.195,106.26,314.614,0.964357,-1,-1,-1
561,-1,912.995,429.337,87.225,275.925,0.962897,-1,-1,-1
561,-1,646.062,468.72,36.862,90.695,0.940393,-1,-1,-1
561,-1,559.028,438.469,45.778,115.742,0.858727,-1,-1,-1
561,-1,371.628,478.743,80.041,108.341,0.83288,-1,-1,-1
561,-1,667.934,447.203,37.264,95.248,0.660106,-1,-1,-1
561,-1,684.855,452.149,61.88,106.608,0.580254,-1,-1,-1
561,-1,588.367,462.774,74.474,103.495,0.54152,-1,-1,-1
562,-1,1589.19,391.514,302.21,682.586,0.998627,-1,-1,-1
562,-1,1090.8,445.522,151.83,261.575,0.993346,-1,-1,-1
562,-1,1029.99,430.42,84.46,260.022,0.975534,-1,-1,-1
562,-1,902.154,424.476,98.316,283.739,0.969584,-1,-1,-1
562,-1,651.207,458.744,38.26,90.495,0.903589,-1,-1,-1
562,-1,562.427,434.893,46.98,115.518,0.877013,-1,-1,-1
562,-1,373.817,477.556,75.853,111.463,0.854953,-1,-1,-1
563,-1,1603.75,385.554,273.28,693.446,0.998592,-1,-1,-1
563,-1,1107,449.046,138.27,247.525,0.983826,-1,-1,-1
563,-1,910.889,430.689,85.811,269.675,0.973483,-1,-1,-1
563,-1,1013.87,417.296,92.47,292.761,0.971589,-1,-1,-1
563,-1,652.112,455.308,36.532,95.954,0.880326,-1,-1,-1
563,-1,564.439,446.723,42.935,102.851,0.838724,-1,-1,-1
563,-1,372.183,477.229,78.169,110.468,0.830801,-1,-1,-1
563,-1,541.167,420.702,41.786,96.905,0.717747,-1,-1,-1
563,-1,627.626,443.734,34.082,103.749,0.682737,-1,-1,-1
564,-1,1595.99,381.14,306.42,689.81,0.998312,-1,-1,-1
564,-1,1109.76,446.128,154.33,262.609,0.988982,-1,-1,-1
564,-1,919.014,426.538,85.406,257.282,0.971116,-1,-1,-1
564,-1,1027.3,418.979,84.81,279.76,0.970345,-1,-1,-1
564,-1,652.565,451.315,37.988,98.893,0.877158,-1,-1,-1
564,-1,565.064,445.693,41.258,100.077,0.793243,-1,-1,-1
564,-1,373.253,470.958,76.056,111.743,0.699483,-1,-1,-1
564,-1,626.138,440.86,35.395,104.267,0.692941,-1,-1,-1
565,-1,1601.47,392.943,293.9,686.057,0.998661,-1,-1,-1
565,-1,1113.25,450.654,131.43,261.485,0.99199,-1,-1,-1
565,-1,1016.63,418.494,86.46,272.452,0.97465,-1,-1,-1
565,-1,915.071,424.727,107.539,268.215,0.946619,-1,-1,-1
565,-1,567.566,428.553,39.428,109.158,0.775826,-1,-1,-1
565,-1,648.344,432.586,36.796,108.484,0.747139,-1,-1,-1
565,-1,372.902,472.441,77.485,112.852,0.723288,-1,-1,-1
566,-1,1625.4,389.095,280.44,689.905,0.998436,-1,-1,-1
566,-1,1122.17,450.809,128.42,258.716,0.992671,-1,-1,-1
566,-1,1022.7,413.424,79.27,270.753,0.979283,-1,-1,-1
566,-1,932.931,447.247,81.019,213.206,0.948958,-1,-1,-1
566,-1,652.097,448.981,37.752,98.17,0.874995,-1,-1,-1
566,-1,372.842,471.964,74.879,117.219,0.852105,-1,-1,-1
566,-1,565.391,425.117,38.762,104.799,0.739326,-1,-1,-1
566,-1,631.065,451.06,35.319,93.183,0.624095,-1,-1,-1
567,-1,1636.3,377.477,268.72,685.543,0.999199,-1,-1,-1
567,-1,1140.95,439.741,98.95,270.609,0.995067,-1,-1,-1
567,-1,1013.23,425.943,91.25,270.308,0.974319,-1,-1,-1
567,-1,937.897,430.067,80.193,221.09,0.926263,-1,-1,-1
567,-1,648.718,449.926,38.386,98.159,0.886752,-1,-1,-1
567,-1,375.275,470.783,70.047,115.764,0.86456,-1,-1,-1
567,-1,564.888,427.258,38.667,108.262,0.715987,-1,-1,-1
567,-1,630.108,450.606,35.639,91.637,0.698259,-1,-1,-1
568,-1,1627.98,374.188,264.27,680.372,0.999178,-1,-1,-1
568,-1,1143.86,450.498,100.89,249.571,0.996232,-1,-1,-1
568,-1,1009.61,411.613,104.97,286.076,0.971763,-1,-1,-1
568,-1,367.299,458.533,72.808,113.557,0.908469,-1,-1,-1
568,-1,633.683,449.859,37.267,95.906,0.906399,-1,-1,-1
568,-1,653.856,461.199,36.266,93.242,0.906399,-1,-1,-1
568,-1,943.484,418.006,87.716,238.773,0.898968,-1,-1,-1
568,-1,564.203,434.732,37.053,102.366,0.732049,-1,-1,-1
569,-1,1647.9,392.48,257.45,674.74,0.998833,-1,-1,-1
569,-1,1147.44,437.001,105.63,285.789,0.988939,-1,-1,-1
569,-1,1028.41,405.186,93.32,287.573,0.955121,-1,-1,-1
569,-1,942.463,425.826,100.467,257.827,0.931314,-1,-1,-1
569,-1,632.904,451.559,34.548,94.147,0.90186,-1,-1,-1
569,-1,371.742,479.155,78.057,109.675,0.858344,-1,-1,-1
569,-1,658.373,465.572,33.097,88.41,0.847785,-1,-1,-1
569,-1,558.638,430.92,43.829,114.021,0.725104,-1,-1,-1
569,-1,683.85,451.15,65.818,112.441,0.57272,-1,-1,-1
570,-1,1653.36,401.721,252.1,671.289,0.999356,-1,-1,-1
570,-1,1139.19,440.423,114.39,263.272,0.993209,-1,-1,-1
570,-1,1032.03,419.83,91.09,277.653,0.958283,-1,-1,-1
570,-1,942.299,418.236,97.141,281.45,0.934707,-1,-1,-1
570,-1,643.207,461.32,58.026,99.499,0.825792,-1,-1,-1
570,-1,558.571,433.549,43.121,108.452,0.800228,-1,-1,-1
570,-1,370.527,481.611,78.018,109.149,0.738746,-1,-1,-1
570,-1,631.223,448.037,31.443,91.969,0.695679,-1,-1,-1
570,-1,684.692,460.561,64.73,103.564,0.588629,-1,-1,-1
571,-1,1653.6,370.54,254.71,699.75,0.999556,-1,-1,-1
571,-1,1132.94,437.917,139.18,270.748,0.982828,-1,-1,-1
571,-1,943.575,434.279,103.365,260.408,0.982236,-1,-1,-1
571,-1,1031.99,408.936,81.37,296.95,0.930259,-1,-1,-1
571,-1,657.373,462.783,34.202,88.265,0.856032,-1,-1,-1
571,-1,364.297,459.387,73.974,112.471,0.855781,-1,-1,-1
571,-1,560.614,446.196,41.4,93.513,0.812307,-1,-1,-1
571,-1,629.981,448.168,32.034,96.156,0.732145,-1,-1,-1
571,-1,684.389,456.177,63.869,108.81,0.698622,-1,-1,-1
572,-1,1674.06,375.514,240.31,703.486,0.999136,-1,-1,-1
572,-1,1133.32,457.222,142.38,262.68,0.985429,-1,-1,-1
572,-1,945.12,422.187,94.96,265.188,0.972457,-1,-1,-1
572,-1,1041.6,401.856,95.03,287.175,0.910561,-1,-1,-1
572,-1,655.675,459.19,35.678,91.011,0.862105,-1,-1,-1
572,-1,562.38,446.039,42.432,92.368,0.836673,-1,-1,-1
572,-1,674.438,454.24,41.87,94.905,0.789625,-1,-1,-1
572,-1,373.788,478.249,74.082,108.536,0.78218,-1,-1,-1
572,-1,701.464,449.677,39.848,92.295,0.561773,-1,-1,-1
573,-1,1653.47,399.8,263,679.2,0.999499,-1,-1,-1
573,-1,1149.54,442.062,134.72,273.525,0.993329,-1,-1,-1
573,-1,939.41,435.738,115,238.457,0.986468,-1,-1,-1
573,-1,1031.84,392.105,98.75,292.331,0.947001,-1,-1,-1
573,-1,654.243,461.968,33.945,88.37,0.913524,-1,-1,-1
573,-1,561.43,455.238,52.8,103.668,0.795392,-1,-1,-1
573,-1,373.864,480.253,72.91,108.519,0.788214,-1,-1,-1
573,-1,674.595,452.278,38.497,88.16,0.760613,-1,-1,-1
573,-1,689.547,455.249,60.966,106.646,0.669477,-1,-1,-1
574,-1,1665.5,381.12,253.5,697.88,0.999294,-1,-1,-1
574,-1,1153.93,439.5,117.61,273.87,0.992436,-1,-1,-1
574,-1,943.204,408.696,117.496,255.107,0.976016,-1,-1,-1
574,-1,1032.66,401.238,102.05,277.536,0.971639,-1,-1,-1
574,-1,653.625,463.169,33.118,86.434,0.908251,-1,-1,-1
574,-1,366.201,458.454,71.314,112.307,0.860465,-1,-1,-1
574,-1,628.831,448.906,34.466,101.549,0.798515,-1,-1,-1
574,-1,561.165,442.044,55.221,110.23,0.717498,-1,-1,-1
574,-1,665.147,454.27,63.071,102.942,0.652546,-1,-1,-1
574,-1,708.256,456.856,37.658,81.809,0.524178,-1,-1,-1
575,-1,1646.63,401.464,272.37,677.536,0.998456,-1,-1,-1
575,-1,1129.82,451.833,147.06,267.267,0.99326,-1,-1,-1
575,-1,962.398,415.16,96.982,250.046,0.983003,-1,-1,-1
575,-1,1029.34,416.173,105.08,283.318,0.957274,-1,-1,-1
575,-1,655.858,461.662,33.251,85.421,0.920263,-1,-1,-1
575,-1,366.514,462.703,72.21,110.514,0.919142,-1,-1,-1
575,-1,632.712,447.717,35.456,102.598,0.796989,-1,-1,-1
575,-1,677.629,453.161,35.174,89.82,0.760071,-1,-1,-1
575,-1,710.422,454.208,36.05,81.196,0.735555,-1,-1,-1
575,-1,563.029,440.233,54.172,106.595,0.601195,-1,-1,-1
576,-1,1685.08,397.629,233.92,681.371,0.999188,-1,-1,-1
576,-1,1137.25,436.915,143.72,270.625,0.993571,-1,-1,-1
576,-1,944.083,434.757,98.907,248.584,0.992916,-1,-1,-1
576,-1,1042.63,422.173,99.69,289.161,0.981967,-1,-1,-1
576,-1,646.962,463.934,37.323,89.573,0.941686,-1,-1,-1
576,-1,362.803,472.399,81.67,119.71,0.899346,-1,-1,-1
576,-1,664.252,459.653,55.154,103.887,0.744781,-1,-1,-1
576,-1,712.805,452.915,37.496,86.29,0.739673,-1,-1,-1
576,-1,564.42,441.421,43.678,96.323,0.724624,-1,-1,-1
577,-1,1663.54,423.382,255.46,655.618,0.999112,-1,-1,-1
577,-1,1133.94,439.252,150.07,267.718,0.992044,-1,-1,-1
577,-1,945.05,425.469,118.05,267.492,0.990598,-1,-1,-1
577,-1,1060.28,424.947,84.94,275.494,0.975046,-1,-1,-1
577,-1,650.427,459.728,34.572,89.472,0.913343,-1,-1,-1
577,-1,380.529,459.383,66.617,108.227,0.891923,-1,-1,-1
577,-1,624.978,447.943,37.905,104.812,0.826564,-1,-1,-1
577,-1,715.725,454.853,37.115,90.442,0.7992,-1,-1,-1
577,-1,665.882,453.983,59.401,106.617,0.765967,-1,-1,-1
577,-1,575.05,439.64,44.663,108.48,0.723147,-1,-1,-1
577,-1,1669.68,409.662,99.44,157.791,0.689475,-1,-1,-1
578,-1,1694.43,411.641,224.57,666.589,0.998497,-1,-1,-1
578,-1,948.081,438.164,89.139,232.412,0.991418,-1,-1,-1
578,-1,1153.19,447.841,129.41,267.505,0.990455,-1,-1,-1
578,-1,1051.44,392.151,92.23,295.588,0.973465,-1,-1,-1
578,-1,646.04,469.979,34.919,81.78,0.935809,-1,-1,-1
578,-1,366.439,461.77,70.587,109.309,0.906054,-1,-1,-1
578,-1,561.864,451.139,56.754,97.893,0.767123,-1,-1,-1
578,-1,719.206,462.823,32.962,83.743,0.753081,-1,-1,-1
578,-1,542.453,425.185,39.793,90.527,0.590535,-1,-1,-1
578,-1,1665.84,429.673,77.67,157.056,0.520572,-1,-1,-1
578,-1,678.27,459.632,31,89.019,0.506574,-1,-1,-1
579,-1,1715.98,421.35,203.02,657.39,0.998742,-1,-1,-1
579,-1,1176.5,451.294,125.19,249.865,0.991832,-1,-1,-1
579,-1,942.181,447.516,105.139,233.039,0.987947,-1,-1,-1
579,-1,1042.84,414.024,107.53,278.685,0.975552,-1,-1,-1
579,-1,648.237,473.827,31.344,78.602,0.935348,-1,-1,-1
579,-1,365.572,459.916,70.967,114.095,0.927527,-1,-1,-1
579,-1,719.793,463.471,33.409,79.124,0.7377,-1,-1,-1
579,-1,561.611,448.131,56.75,101.886,0.725958,-1,-1,-1
579,-1,676.326,462.891,27.777,84.295,0.539056,-1,-1,-1
580,-1,1708.72,411.229,210.28,664.061,0.997829,-1,-1,-1
580,-1,1178.17,454.548,132.02,244.068,0.9896,-1,-1,-1
580,-1,969.331,438.606,92.289,256.427,0.986284,-1,-1,-1
580,-1,1060.46,420.321,87.15,302.551,0.974849,-1,-1,-1
580,-1,647.908,467.116,30.941,80.913,0.894378,-1,-1,-1
580,-1,624.928,451.619,36.521,99.828,0.815174,-1,-1,-1
580,-1,383.273,476.238,81.102,114.929,0.768616,-1,-1,-1
580,-1,559.452,433.807,59.897,110.782,0.759067,-1,-1,-1
580,-1,1675.38,418.184,74.66,167.26,0.715179,-1,-1,-1
580,-1,541.848,426.325,41.059,93.603,0.633272,-1,-1,-1
581,-1,1716.43,390.47,202.57,684.99,0.996984,-1,-1,-1
581,-1,1166.28,456.622,138.51,241.171,0.990185,-1,-1,-1
581,-1,950.362,423.371,97.718,255.59,0.97503,-1,-1,-1
581,-1,1074.26,419.465,78.64,308.519,0.973639,-1,-1,-1
581,-1,634.553,469.336,53.361,94.725,0.877253,-1,-1,-1
581,-1,544.469,437.625,63.657,103.163,0.842671,-1,-1,-1
581,-1,362.519,466.492,73.724,125.202,0.70794,-1,-1,-1
581,-1,1677.02,425.474,94.33,164.396,0.657579,-1,-1,-1
581,-1,722.904,455.183,34.829,79.551,0.579391,-1,-1,-1
581,-1,620.747,447.803,34.65,99.838,0.533066,-1,-1,-1
581,-1,1007.77,442.425,66.82,194.744,0.518658,-1,-1,-1
582,-1,1728.87,419.473,190.13,646.967,0.998415,-1,-1,-1
582,-1,1180.07,454.083,125.33,248.823,0.993732,-1,-1,-1
582,-1,1081.14,415.471,76,288.812,0.980117,-1,-1,-1
582,-1,966.578,418.25,100.152,269.725,0.97442,-1,-1,-1
582,-1,636.07,469.059,51.223,91.132,0.851082,-1,-1,-1
582,-1,544.586,437.55,63.484,106.906,0.843298,-1,-1,-1
582,-1,1665.25,416.116,115.79,187.02,0.788096,-1,-1,-1
583,-1,1725.67,426.206,193.33,633.424,0.997474,-1,-1,-1
583,-1,1179.79,448.498,126,254.425,0.993551,-1,-1,-1
583,-1,1067.28,406.272,89.24,318.027,0.98041,-1,-1,-1
583,-1,960.316,415.704,101.034,259.276,0.974738,-1,-1,-1
583,-1,363.793,458.855,79.001,119.842,0.946174,-1,-1,-1
583,-1,1673.42,434.647,92.03,155.698,0.929535,-1,-1,-1
583,-1,642.8,462.926,32.718,79.31,0.878627,-1,-1,-1
583,-1,545.285,437.125,60.932,108.716,0.802257,-1,-1,-1
583,-1,661,459.052,53.064,93.99,0.712081,-1,-1,-1
583,-1,580.895,431.143,34.213,89.967,0.641345,-1,-1,-1
583,-1,606.535,452.403,43.877,110.669,0.554287,-1,-1,-1
583,-1,716.852,466.757,60.349,78.051,0.54978,-1,-1,-1
584,-1,1731.26,410.88,187.74,651.11,0.997739,-1,-1,-1
584,-1,1183.04,452.383,124.11,269.38,0.994525,-1,-1,-1
584,-1,970.741,426.617,109.649,257.037,0.986382,-1,-1,-1
584,-1,1072.96,419.66,82.01,271.938,0.978668,-1,-1,-1
584,-1,365.154,463.08,78.924,118.483,0.952473,-1,-1,-1
584,-1,1671.51,425.669,92.89,160.614,0.863625,-1,-1,-1
584,-1,544.39,444.779,59.265,106.706,0.828569,-1,-1,-1
584,-1,635.72,459.892,52.351,93.932,0.820322,-1,-1,-1
584,-1,716.849,465.24,60.743,79.781,0.661127,-1,-1,-1
584,-1,579.87,429.033,33.55,96.899,0.656357,-1,-1,-1
584,-1,601.269,451.771,43.795,110.138,0.560835,-1,-1,-1
585,-1,1739,445.816,180,602.024,0.995992,-1,-1,-1
585,-1,1181.76,439.678,134.05,279.588,0.993319,-1,-1,-1
585,-1,1068.4,410.174,90.65,281.568,0.972047,-1,-1,-1
585,-1,380.862,457.764,65.561,111.05,0.967052,-1,-1,-1
585,-1,988.336,424.993,79.004,229.987,0.932677,-1,-1,-1
585,-1,543.036,446.399,58.903,106.303,0.853207,-1,-1,-1
585,-1,579.406,449.69,38.18,99.852,0.827738,-1,-1,-1
585,-1,1684.79,418.214,86.44,165.223,0.80056,-1,-1,-1
585,-1,640.886,456.042,34.897,79.321,0.740774,-1,-1,-1
585,-1,703.781,448.491,52.157,99.945,0.575338,-1,-1,-1
585,-1,614.878,446.305,33.635,92.325,0.549197,-1,-1,-1
586,-1,1185.26,430.138,116.61,280.487,0.993789,-1,-1,-1
586,-1,1766.22,416.908,152.78,637.122,0.990572,-1,-1,-1
586,-1,1073.54,412.131,87.95,281.985,0.976133,-1,-1,-1
586,-1,380.161,456.547,64.832,115.936,0.971453,-1,-1,-1
586,-1,972.729,412.323,107.871,262.573,0.967037,-1,-1,-1
586,-1,543.34,439.109,60.939,111.588,0.879807,-1,-1,-1
586,-1,1672.8,427.32,81.13,159.201,0.787708,-1,-1,-1
586,-1,725.176,448.407,37.745,87.54,0.621504,-1,-1,-1
586,-1,642.302,455.295,35.418,88.266,0.508827,-1,-1,-1
587,-1,1202.4,434.216,118.35,268.331,0.992759,-1,-1,-1
587,-1,1787.58,426.318,131.42,614.532,0.986554,-1,-1,-1
587,-1,1090.68,427.423,90.56,278.127,0.979529,-1,-1,-1
587,-1,979.732,428.142,104.268,241.17,0.973873,-1,-1,-1
587,-1,369.313,464.103,64.606,118.291,0.963989,-1,-1,-1
587,-1,567.494,465.634,57.135,95.309,0.884063,-1,-1,-1
587,-1,718.229,466.981,47.51,96.027,0.721864,-1,-1,-1
587,-1,1672.49,426.467,87.34,167.81,0.683869,-1,-1,-1
587,-1,632.683,461.993,54.16,93.014,0.592934,-1,-1,-1
588,-1,1798.25,429.693,120.75,607.007,0.989929,-1,-1,-1
588,-1,1174.73,435.285,151.09,271.584,0.985656,-1,-1,-1
588,-1,1078.89,432.423,93.97,271.775,0.981072,-1,-1,-1
588,-1,380.094,459.602,64.259,110.33,0.959221,-1,-1,-1
588,-1,987.119,443.384,89.821,239.717,0.935001,-1,-1,-1
588,-1,567.485,468.604,55.3,90.548,0.831407,-1,-1,-1
588,-1,1672.16,420.143,88.61,175.511,0.759767,-1,-1,-1
588,-1,579.484,432.753,33.71,86.592,0.673413,-1,-1,-1
588,-1,713.329,455.839,63.379,87.765,0.646172,-1,-1,-1
588,-1,643.478,456.089,36.207,86.825,0.537273,-1,-1,-1
589,-1,1211.42,425.673,117.84,272.96,0.992068,-1,-1,-1
589,-1,1085.51,431.139,91.28,276.254,0.979799,-1,-1,-1
589,-1,379.486,459.546,64.928,112.741,0.964441,-1,-1,-1
589,-1,1793.99,439.794,125.01,605.956,0.963069,-1,-1,-1
589,-1,991.419,417.221,82.611,249.333,0.956469,-1,-1,-1
589,-1,547.046,444.004,59.218,109.433,0.855615,-1,-1,-1
589,-1,1676.04,424.557,83.96,174.835,0.837941,-1,-1,-1
589,-1,579.3,431.82,34.899,90.587,0.730626,-1,-1,-1
589,-1,716.618,460.807,49.07,103.427,0.708148,-1,-1,-1
589,-1,598.266,454.689,48.577,108.458,0.687645,-1,-1,-1
589,-1,632.235,467.833,54.922,92.21,0.611414,-1,-1,-1
589,-1,1178.09,446.952,68.83,215.543,0.517694,-1,-1,-1
590,-1,1091.9,421.156,91.07,275.675,0.977325,-1,-1,-1
590,-1,379.763,461.108,64.668,113.442,0.971657,-1,-1,-1
590,-1,1207.67,437.54,120.77,273.293,0.969089,-1,-1,-1
590,-1,989.611,436.153,92.269,237.009,0.959693,-1,-1,-1
590,-1,1823.39,426.349,95.61,572.009,0.917222,-1,-1,-1
590,-1,1658.41,406.253,106.63,187.586,0.856386,-1,-1,-1
590,-1,573.056,457.228,47.81,100.48,0.854551,-1,-1,-1
590,-1,551.642,425.49,45.118,120.179,0.731059,-1,-1,-1
590,-1,701.733,447.751,54.53,104.924,0.678736,-1,-1,-1
590,-1,640.47,463.546,49.632,92.091,0.574174,-1,-1,-1
591,-1,1221.62,421.392,120.61,293.582,0.988056,-1,-1,-1
591,-1,1097.09,420.153,86.15,274.06,0.979016,-1,-1,-1
591,-1,380.236,456.054,61.561,112.486,0.969967,-1,-1,-1
591,-1,998.032,424.004,93.878,236.54,0.930639,-1,-1,-1
591,-1,1662.02,406.877,118.76,194.123,0.882939,-1,-1,-1
591,-1,567.674,464.163,55.211,94.282,0.806658,-1,-1,-1
591,-1,1837.92,389.677,78.83,562.061,0.767851,-1,-1,-1
591,-1,543.674,425.817,46.292,110.092,0.568046,-1,-1,-1
592,-1,1223.92,438.903,115.34,287.292,0.989978,-1,-1,-1
592,-1,1098.03,412.289,78.17,292.62,0.975265,-1,-1,-1
592,-1,370.657,460.445,62.323,117.6,0.96299,-1,-1,-1
592,-1,999.071,421.963,78.419,214.455,0.919776,-1,-1,-1
592,-1,1667.42,409.989,111.01,192.4,0.889544,-1,-1,-1
592,-1,575.19,453.479,43.793,95.244,0.806782,-1,-1,-1
592,-1,1839.36,394.881,74.56,397.585,0.622173,-1,-1,-1
592,-1,642.017,474.415,49.009,85.81,0.593421,-1,-1,-1
592,-1,1056.93,438.943,56.89,193.974,0.563037,-1,-1,-1
592,-1,720.951,454.59,37.289,85.211,0.555249,-1,-1,-1
592,-1,544.309,425.705,43.801,107.274,0.530025,-1,-1,-1
593,-1,1233.23,436.79,113.51,266.801,0.996117,-1,-1,-1
593,-1,1099.55,408.354,79.93,291.22,0.979669,-1,-1,-1
593,-1,370.236,457,64.947,122.839,0.969222,-1,-1,-1
593,-1,1012.57,441.037,80.76,193.5,0.904139,-1,-1,-1
593,-1,1661.17,408.867,102.54,181.194,0.868858,-1,-1,-1
593,-1,581.242,443.362,38.549,97.514,0.82562,-1,-1,-1
593,-1,1834.87,365.954,79.17,437.073,0.693918,-1,-1,-1
593,-1,640.6,475.125,48.151,88.547,0.653557,-1,-1,-1
593,-1,548.946,426.309,43.825,108.822,0.5906,-1,-1,-1
593,-1,616.174,449.16,30.955,93.168,0.583642,-1,-1,-1
593,-1,699.595,456.641,53.71,98.066,0.554899,-1,-1,-1
593,-1,967.461,451.195,75.139,155.585,0.519956,-1,-1,-1
594,-1,1237.64,442.493,112.94,260.412,0.994952,-1,-1,-1
594,-1,1102.12,420.119,80.5,288.173,0.97226,-1,-1,-1
594,-1,382.06,455.105,61.892,112.583,0.96725,-1,-1,-1
594,-1,1006.27,442.185,81.18,200.025,0.960742,-1,-1,-1
594,-1,1661.42,412.482,102.42,180.578,0.892262,-1,-1,-1
594,-1,579.74,439.31,41.905,100.307,0.848587,-1,-1,-1
594,-1,1838.91,406.234,74.11,389.556,0.833667,-1,-1,-1
594,-1,553.708,422.441,46.359,119.876,0.83023,-1,-1,-1
594,-1,598.113,459.619,44.133,105.125,0.728358,-1,-1,-1
594,-1,714.46,447.928,38.731,87.892,0.674007,-1,-1,-1
594,-1,638.537,464.41,49.996,93.671,0.60886,-1,-1,-1
595,-1,1237.5,442.128,118.46,287.746,0.995612,-1,-1,-1
595,-1,1105.51,424.906,76.12,264.478,0.971824,-1,-1,-1
595,-1,1016.51,446.438,77.84,208.106,0.971634,-1,-1,-1
595,-1,383.073,454.02,60.696,112.671,0.966418,-1,-1,-1
595,-1,1661.58,411.758,101.17,180.629,0.866801,-1,-1,-1
595,-1,565.864,448.621,42.154,88.8,0.822945,-1,-1,-1
595,-1,712.939,447.579,39.668,95.078,0.738648,-1,-1,-1
595,-1,641.591,459.83,49.553,96.681,0.661309,-1,-1,-1
595,-1,1841.37,404.882,71.51,350.711,0.589415,-1,-1,-1
595,-1,683.126,463.181,33.945,76.796,0.588769,-1,-1,-1
596,-1,1233.3,447.398,118.5,257.884,0.992624,-1,-1,-1
596,-1,1111.83,420.818,80.32,266.479,0.972548,-1,-1,-1
596,-1,1025.32,422.223,88.73,265.07,0.964578,-1,-1,-1
596,-1,381.907,455.583,59.849,131.092,0.913173,-1,-1,-1
596,-1,1662.15,411.657,101.86,181.699,0.892317,-1,-1,-1
596,-1,574.351,447.554,42.894,106.043,0.847909,-1,-1,-1
596,-1,714.813,463.863,50.268,102.404,0.782431,-1,-1,-1
596,-1,1856.85,434.8,49.09,250.895,0.757619,-1,-1,-1
596,-1,547.615,423.798,46.033,118.886,0.68004,-1,-1,-1
596,-1,616.166,448.99,29.592,89.371,0.654632,-1,-1,-1
596,-1,628.863,470.258,52.065,94.466,0.576345,-1,-1,-1
596,-1,667.426,458.192,54.231,98.411,0.542817,-1,-1,-1
597,-1,1241.83,449.821,114.61,254.205,0.993884,-1,-1,-1
597,-1,1108.16,420.429,90.27,291.271,0.978252,-1,-1,-1
597,-1,1000.18,442.914,96.74,215.552,0.977412,-1,-1,-1
597,-1,381.292,455.631,60.941,112.654,0.970073,-1,-1,-1
597,-1,1661.84,414.256,98.68,174.666,0.899856,-1,-1,-1
597,-1,1860.97,441.435,48.17,218.308,0.878009,-1,-1,-1
597,-1,551.712,443.956,56.692,113.87,0.862391,-1,-1,-1
597,-1,716.86,463.378,50.77,100.814,0.818828,-1,-1,-1
597,-1,574.844,469.128,75.254,94.439,0.731672,-1,-1,-1
597,-1,615.755,451.373,27.575,85.33,0.592954,-1,-1,-1
597,-1,637.318,467.953,50.271,95.745,0.586491,-1,-1,-1
597,-1,1172.9,432.944,64.23,258.191,0.501703,-1,-1,-1
598,-1,1247.54,443.244,114.36,270.929,0.99473,-1,-1,-1
598,-1,1012.21,438.373,102.03,238.382,0.980698,-1,-1,-1
598,-1,380.997,454.72,63.49,116.465,0.970346,-1,-1,-1
598,-1,1115.56,424.667,83.83,258.568,0.968639,-1,-1,-1
598,-1,1861.81,441.386,47.49,214.824,0.905303,-1,-1,-1
598,-1,552.632,440.234,57.056,119.352,0.89914,-1,-1,-1
598,-1,1660.88,412.355,101.29,176.786,0.895985,-1,-1,-1
598,-1,715.232,465.205,50.344,101.585,0.754873,-1,-1,-1
598,-1,1175.81,438.353,60.08,239.412,0.670683,-1,-1,-1
598,-1,1207.76,426.255,75.85,269.392,0.638925,-1,-1,-1
598,-1,611.244,452.69,27.871,86.511,0.611011,-1,-1,-1
598,-1,653.191,463.688,28.42,75.024,0.607746,-1,-1,-1
598,-1,663.143,469.032,52.78,91.015,0.521737,-1,-1,-1
599,-1,1249.88,438.881,120.14,288.049,0.99433,-1,-1,-1
599,-1,1021.76,429.241,97.67,241.756,0.988129,-1,-1,-1
599,-1,1119.86,426.488,84.63,259.492,0.977184,-1,-1,-1
599,-1,381.041,455.517,62.788,115.511,0.971452,-1,-1,-1
599,-1,1860.51,437.016,49.05,207.761,0.950235,-1,-1,-1
599,-1,1663.63,414.449,98.64,176.631,0.906228,-1,-1,-1
599,-1,551.094,440.02,57.893,120.453,0.889002,-1,-1,-1
599,-1,725.45,455.639,37.088,96.57,0.852118,-1,-1,-1
599,-1,1204.5,429.902,80.85,261.877,0.817796,-1,-1,-1
599,-1,638.974,468.092,50.994,92.409,0.559837,-1,-1,-1
600,-1,1257.4,434.468,114.4,288.668,0.994017,-1,-1,-1
600,-1,1007.33,431.784,115.26,246.203,0.986569,-1,-1,-1
600,-1,372.031,464.382,63.03,119.905,0.962289,-1,-1,-1
600,-1,1861.71,445.862,46.89,194.43,0.953696,-1,-1,-1
600,-1,1115.03,430.242,107.39,273.347,0.938185,-1,-1,-1
600,-1,1196.85,437.11,79.14,255.888,0.914639,-1,-1,-1
600,-1,1674.66,426.093,80.39,170.673,0.905933,-1,-1,-1
600,-1,568.709,466.861,51.484,94.782,0.897681,-1,-1,-1
600,-1,699.841,449.553,57.527,116.325,0.891882,-1,-1,-1
600,-1,639.176,472.277,49.585,91.377,0.675665,-1,-1,-1
600,-1,685.154,469.208,32.006,76.188,0.577094,-1,-1,-1
600,-1,550.896,430.934,44.593,113.473,0.517879,-1,-1,-1
================================================
FILE: docker_run.sh
================================================
DOCKER_NAME=sort
XSOCK=/tmp/.X11-unix
XAUTH=/home/$USER/.Xauthority
xhost +
docker run \
-it --rm \
-e XAUTHORITY=${XAUTH} \
-e DISPLAY=${DISPLAY} \
-e QT_X11_NO_MITSHM=1 \
--privileged \
-v /dev/bus/usb:/dev/bus/usb \
-v /dev/video0:/dev/video0 \
-v $XSOCK:$XSOCK:rw \
-v $XAUTH:$XAUTH:rw \
-v /home/$USER:/home/$USER \
-u $(id -u ${USER}):$(id -g ${USER}) \
--name sort-cpp \
$DOCKER_NAME /bin/bash
================================================
FILE: include/kalman_filter.h
================================================
#pragma once
#include
#include
// abstract class for Kalman filter
// implementation could be KF/EKF/UKF...
class KalmanFilter {
public:
/**
* user need to define H matrix & R matrix
* @param num_states
* @param num_obs
*/
// constructor
explicit KalmanFilter(unsigned int num_states, unsigned int num_obs);
// destructor
virtual ~KalmanFilter() = default;
/**
* Coast state and state covariance using the process model
* User can use this function without change the internal
* tracking state x_
*/
virtual void Coast();
/**
* Predict without measurement update
*/
void Predict();
/**
* This function maps the true state space into the observed space
* using the observation model
* User can implement their own method for more complicated models
*/
virtual Eigen::VectorXd PredictionToObservation(const Eigen::VectorXd &state);
/**
* Updates the state by using Extended Kalman Filter equations
* @param z The measurement at k+1
*/
virtual void Update(const Eigen::VectorXd &z);
/**
* Calculate marginal log-likelihood to evaluate different parameter choices
*/
float CalculateLogLikelihood(const Eigen::VectorXd& y, const Eigen::MatrixXd& S);
// State vector
Eigen::VectorXd x_, x_predict_;
// Error covariance matrix
Eigen::MatrixXd P_, P_predict_;
// State transition matrix
Eigen::MatrixXd F_;
// Covariance matrix of process noise
Eigen::MatrixXd Q_;
// measurement matrix
Eigen::MatrixXd H_;
// covariance matrix of observation noise
Eigen::MatrixXd R_;
unsigned int num_states_, num_obs_;
float log_likelihood_delta_;
float NIS_;
};
================================================
FILE: include/matrix.cpp
================================================
/*
* Copyright (c) 2007 John Weaver
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "matrix.h"
#include
#include
#include
/*export*/ template
Matrix::Matrix() {
m_rows = 0;
m_columns = 0;
m_matrix = nullptr;
}
/*export*/ template
Matrix::Matrix(const std::initializer_list> init) {
m_matrix = nullptr;
m_rows = init.size();
if ( m_rows == 0 ) {
m_columns = 0;
} else {
m_columns = init.begin()->size();
if ( m_columns > 0 ) {
resize(m_rows, m_columns);
}
}
size_t i = 0, j;
for ( auto row = init.begin() ; row != init.end() ; ++row, ++i ) {
assert ( row->size() == m_columns && "All rows must have the same number of columns." );
j = 0;
for ( auto value = row->begin() ; value != row->end() ; ++value, ++j ) {
m_matrix[i][j] = *value;
}
}
}
/*export*/ template
Matrix::Matrix(const Matrix &other) {
if ( other.m_matrix != nullptr ) {
// copy arrays
m_matrix = nullptr;
resize(other.m_rows, other.m_columns);
for ( size_t i = 0 ; i < m_rows ; i++ ) {
for ( size_t j = 0 ; j < m_columns ; j++ ) {
m_matrix[i][j] = other.m_matrix[i][j];
}
}
} else {
m_matrix = nullptr;
m_rows = 0;
m_columns = 0;
}
}
/*export*/ template
Matrix::Matrix(const size_t rows, const size_t columns) {
m_matrix = nullptr;
resize(rows, columns);
}
/*export*/ template
Matrix &
Matrix::operator= (const Matrix &other) {
if ( other.m_matrix != nullptr ) {
// copy arrays
resize(other.m_rows, other.m_columns);
for ( size_t i = 0 ; i < m_rows ; i++ ) {
for ( size_t j = 0 ; j < m_columns ; j++ ) {
m_matrix[i][j] = other.m_matrix[i][j];
}
}
} else {
// free arrays
for ( size_t i = 0 ; i < m_columns ; i++ ) {
delete [] m_matrix[i];
}
delete [] m_matrix;
m_matrix = nullptr;
m_rows = 0;
m_columns = 0;
}
return *this;
}
/*export*/ template
Matrix::~Matrix() {
if ( m_matrix != nullptr ) {
// free arrays
for ( size_t i = 0 ; i < m_rows ; i++ ) {
delete [] m_matrix[i];
}
delete [] m_matrix;
}
m_matrix = nullptr;
}
/*export*/ template
void
Matrix::resize(const size_t rows, const size_t columns, const T default_value) {
assert ( rows > 0 && columns > 0 && "Columns and rows must exist." );
if ( m_matrix == nullptr ) {
// alloc arrays
m_matrix = new T*[rows]; // rows
for ( size_t i = 0 ; i < rows ; i++ ) {
m_matrix[i] = new T[columns]; // columns
}
m_rows = rows;
m_columns = columns;
clear();
} else {
// save array pointer
T **new_matrix;
// alloc new arrays
new_matrix = new T*[rows]; // rows
for ( size_t i = 0 ; i < rows ; i++ ) {
new_matrix[i] = new T[columns]; // columns
for ( size_t j = 0 ; j < columns ; j++ ) {
new_matrix[i][j] = default_value;
}
}
// copy data from saved pointer to new arrays
size_t minrows = std::min(rows, m_rows);
size_t mincols = std::min(columns, m_columns);
for ( size_t x = 0 ; x < minrows ; x++ ) {
for ( size_t y = 0 ; y < mincols ; y++ ) {
new_matrix[x][y] = m_matrix[x][y];
}
}
// delete old arrays
if ( m_matrix != nullptr ) {
for ( size_t i = 0 ; i < m_rows ; i++ ) {
delete [] m_matrix[i];
}
delete [] m_matrix;
}
m_matrix = new_matrix;
}
m_rows = rows;
m_columns = columns;
}
/*export*/ template
void
Matrix::clear() {
assert( m_matrix != nullptr );
for ( size_t i = 0 ; i < m_rows ; i++ ) {
for ( size_t j = 0 ; j < m_columns ; j++ ) {
m_matrix[i][j] = 0;
}
}
}
/*export*/ template
inline T&
Matrix::operator ()(const size_t x, const size_t y) {
assert ( x < m_rows );
assert ( y < m_columns );
assert ( m_matrix != nullptr );
return m_matrix[x][y];
}
/*export*/ template
inline const T&
Matrix::operator ()(const size_t x, const size_t y) const {
assert ( x < m_rows );
assert ( y < m_columns );
assert ( m_matrix != nullptr );
return m_matrix[x][y];
}
/*export*/ template
const T
Matrix::min() const {
assert( m_matrix != nullptr );
assert ( m_rows > 0 );
assert ( m_columns > 0 );
T min = m_matrix[0][0];
for ( size_t i = 0 ; i < m_rows ; i++ ) {
for ( size_t j = 0 ; j < m_columns ; j++ ) {
min = std::min(min, m_matrix[i][j]);
}
}
return min;
}
/*export*/ template
const T
Matrix::max() const {
assert( m_matrix != nullptr );
assert ( m_rows > 0 );
assert ( m_columns > 0 );
T max = m_matrix[0][0];
for ( size_t i = 0 ; i < m_rows ; i++ ) {
for ( size_t j = 0 ; j < m_columns ; j++ ) {
max = std::max(max, m_matrix[i][j]);
}
}
return max;
}
================================================
FILE: include/matrix.h
================================================
/*
* Copyright (c) 2007 John Weaver
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _MATRIX_H_
#define _MATRIX_H_
#include
#include
#include
template
class Matrix {
public:
Matrix();
Matrix(const size_t rows, const size_t columns);
Matrix(const std::initializer_list> init);
Matrix(const Matrix &other);
Matrix & operator= (const Matrix &other);
~Matrix();
// all operations modify the matrix in-place.
void resize(const size_t rows, const size_t columns, const T default_value = 0);
void clear();
T& operator () (const size_t x, const size_t y);
const T& operator () (const size_t x, const size_t y) const;
const T min() const;
const T max() const;
inline size_t minsize() { return ((m_rows < m_columns) ? m_rows : m_columns); }
inline size_t columns() const { return m_columns;}
inline size_t rows() const { return m_rows;}
friend std::ostream& operator<<(std::ostream& os, const Matrix &matrix)
{
os << "Matrix:" << std::endl;
for (size_t row = 0 ; row < matrix.rows() ; row++ )
{
for (size_t col = 0 ; col < matrix.columns() ; col++ )
{
os.width(8);
os << matrix(row, col) << ",";
}
os << std::endl;
}
return os;
}
private:
T **m_matrix;
size_t m_rows;
size_t m_columns;
};
#ifndef USE_EXPORT_KEYWORD
#include "matrix.cpp"
//#define export /*export*/
#endif
#endif /* !defined(_MATRIX_H_) */
================================================
FILE: include/munkres.h
================================================
/*
* Copyright (c) 2007 John Weaver
* Copyright (c) 2015 Miroslav Krajicek
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#if !defined(_MUNKRES_H_)
#define _MUNKRES_H_
#include "matrix.h"
#include
#include
#include
#include
#include
template class Munkres
{
static constexpr int NORMAL = 0;
static constexpr int STAR = 1;
static constexpr int PRIME = 2;
public:
/*
*
* Linear assignment problem solution
* [modifies matrix in-place.]
* matrix(row,col): row major format assumed.
*
* Assignments are remaining 0 values
* (extra 0 values are replaced with -1)
*
*/
void solve(Matrix &m) {
const size_t rows = m.rows(),
columns = m.columns(),
size = std::max(rows, columns);
#ifdef DEBUG
std::cout << "Munkres input: " << m << std::endl;
#endif
// Copy input matrix
this->matrix = m;
if ( rows != columns ) {
// If the input matrix isn't square, make it square
// and fill the empty values with the largest value present
// in the matrix.
matrix.resize(size, size, matrix.max());
}
// STAR == 1 == starred, PRIME == 2 == primed
mask_matrix.resize(size, size);
row_mask = new bool[size];
col_mask = new bool[size];
for ( size_t i = 0 ; i < size ; i++ ) {
row_mask[i] = false;
}
for ( size_t i = 0 ; i < size ; i++ ) {
col_mask[i] = false;
}
// Prepare the matrix values...
// If there were any infinities, replace them with a value greater
// than the maximum value in the matrix.
replace_infinites(matrix);
minimize_along_direction(matrix, rows >= columns);
minimize_along_direction(matrix, rows < columns);
// Follow the steps
int step = 1;
while ( step ) {
switch ( step ) {
case 1:
step = step1();
// step is always 2
break;
case 2:
step = step2();
// step is always either 0 or 3
break;
case 3:
step = step3();
// step in [3, 4, 5]
break;
case 4:
step = step4();
// step is always 2
break;
case 5:
step = step5();
// step is always 3
break;
}
}
// Store results
for ( size_t row = 0 ; row < size ; row++ ) {
for ( size_t col = 0 ; col < size ; col++ ) {
if ( mask_matrix(row, col) == STAR ) {
matrix(row, col) = 0;
} else {
matrix(row, col) = -1;
}
}
}
#ifdef DEBUG
std::cout << "Munkres output: " << matrix << std::endl;
#endif
// Remove the excess rows or columns that we added to fit the
// input to a square matrix.
matrix.resize(rows, columns);
m = matrix;
delete [] row_mask;
delete [] col_mask;
}
static void replace_infinites(Matrix &matrix) {
const size_t rows = matrix.rows(),
columns = matrix.columns();
assert( rows > 0 && columns > 0 );
double max = matrix(0, 0);
constexpr auto infinity = std::numeric_limits::infinity();
// Find the greatest value in the matrix that isn't infinity.
for ( size_t row = 0 ; row < rows ; row++ ) {
for ( size_t col = 0 ; col < columns ; col++ ) {
if ( matrix(row, col) != infinity ) {
if ( max == infinity ) {
max = matrix(row, col);
} else {
max = std::max(max, matrix(row, col));
}
}
}
}
// a value higher than the maximum value present in the matrix.
if ( max == infinity ) {
// This case only occurs when all values are infinite.
max = 0;
} else {
max++;
}
for ( size_t row = 0 ; row < rows ; row++ ) {
for ( size_t col = 0 ; col < columns ; col++ ) {
if ( matrix(row, col) == infinity ) {
matrix(row, col) = max;
}
}
}
}
static void minimize_along_direction(Matrix &matrix, const bool over_columns) {
const size_t outer_size = over_columns ? matrix.columns() : matrix.rows(),
inner_size = over_columns ? matrix.rows() : matrix.columns();
// Look for a minimum value to subtract from all values along
// the "outer" direction.
for ( size_t i = 0 ; i < outer_size ; i++ ) {
double min = over_columns ? matrix(0, i) : matrix(i, 0);
// As long as the current minimum is greater than zero,
// keep looking for the minimum.
// Start at one because we already have the 0th value in min.
for ( size_t j = 1 ; j < inner_size && min > 0 ; j++ ) {
min = std::min(
min,
over_columns ? matrix(j, i) : matrix(i, j));
}
if ( min > 0 ) {
for ( size_t j = 0 ; j < inner_size ; j++ ) {
if ( over_columns ) {
matrix(j, i) -= min;
} else {
matrix(i, j) -= min;
}
}
}
}
}
private:
inline bool find_uncovered_in_matrix(const double item, size_t &row, size_t &col) const {
const size_t rows = matrix.rows(),
columns = matrix.columns();
for ( row = 0 ; row < rows ; row++ ) {
if ( !row_mask[row] ) {
for ( col = 0 ; col < columns ; col++ ) {
if ( !col_mask[col] ) {
if ( matrix(row,col) == item ) {
return true;
}
}
}
}
}
return false;
}
bool pair_in_list(const std::pair &needle, const std::list > &haystack) {
for ( std::list >::const_iterator i = haystack.begin() ; i != haystack.end() ; i++ ) {
if ( needle == *i ) {
return true;
}
}
return false;
}
int step1() {
const size_t rows = matrix.rows(),
columns = matrix.columns();
for ( size_t row = 0 ; row < rows ; row++ ) {
for ( size_t col = 0 ; col < columns ; col++ ) {
if ( 0 == matrix(row, col) ) {
for ( size_t nrow = 0 ; nrow < row ; nrow++ )
if ( STAR == mask_matrix(nrow,col) )
goto next_column;
mask_matrix(row,col) = STAR;
goto next_row;
}
next_column:;
}
next_row:;
}
return 2;
}
int step2() {
const size_t rows = matrix.rows(),
columns = matrix.columns();
size_t covercount = 0;
for ( size_t row = 0 ; row < rows ; row++ )
for ( size_t col = 0 ; col < columns ; col++ )
if ( STAR == mask_matrix(row, col) ) {
col_mask[col] = true;
covercount++;
}
if ( covercount >= matrix.minsize() ) {
#ifdef DEBUG
std::cout << "Final cover count: " << covercount << std::endl;
#endif
return 0;
}
#ifdef DEBUG
std::cout << "Munkres matrix has " << covercount << " of " << matrix.minsize() << " Columns covered:" << std::endl;
std::cout << matrix << std::endl;
#endif
return 3;
}
int step3() {
/*
Main Zero Search
1. Find an uncovered Z in the distance matrix and prime it. If no such zero exists, go to Step 5
2. If No Z* exists in the row of the Z', go to Step 4.
3. If a Z* exists, cover this row and uncover the column of the Z*. Return to Step 3.1 to find a new Z
*/
if ( find_uncovered_in_matrix(0, saverow, savecol) ) {
mask_matrix(saverow,savecol) = PRIME; // prime it.
} else {
return 5;
}
for ( size_t ncol = 0 ; ncol < matrix.columns() ; ncol++ ) {
if ( mask_matrix(saverow,ncol) == STAR ) {
row_mask[saverow] = true; //cover this row and
col_mask[ncol] = false; // uncover the column containing the starred zero
return 3; // repeat
}
}
return 4; // no starred zero in the row containing this primed zero
}
int step4() {
const size_t rows = matrix.rows(),
columns = matrix.columns();
// seq contains pairs of row/column values where we have found
// either a star or a prime that is part of the ``alternating sequence``.
std::list > seq;
// use saverow, savecol from step 3.
std::pair z0(saverow, savecol);
seq.insert(seq.end(), z0);
// We have to find these two pairs:
std::pair z1(-1, -1);
std::pair z2n(-1, -1);
size_t row, col = savecol;
/*
Increment Set of Starred Zeros
1. Construct the ``alternating sequence'' of primed and starred zeros:
Z0 : Unpaired Z' from Step 4.2
Z1 : The Z* in the column of Z0
Z[2N] : The Z' in the row of Z[2N-1], if such a zero exists
Z[2N+1] : The Z* in the column of Z[2N]
The sequence eventually terminates with an unpaired Z' = Z[2N] for some N.
*/
bool madepair;
do {
madepair = false;
for ( row = 0 ; row < rows ; row++ ) {
if ( mask_matrix(row,col) == STAR ) {
z1.first = row;
z1.second = col;
if ( pair_in_list(z1, seq) ) {
continue;
}
madepair = true;
seq.insert(seq.end(), z1);
break;
}
}
if ( !madepair )
break;
madepair = false;
for ( col = 0 ; col < columns ; col++ ) {
if ( mask_matrix(row, col) == PRIME ) {
z2n.first = row;
z2n.second = col;
if ( pair_in_list(z2n, seq) ) {
continue;
}
madepair = true;
seq.insert(seq.end(), z2n);
break;
}
}
} while ( madepair );
for ( std::list >::iterator i = seq.begin() ;
i != seq.end() ;
i++ ) {
// 2. Unstar each starred zero of the sequence.
if ( mask_matrix(i->first,i->second) == STAR )
mask_matrix(i->first,i->second) = NORMAL;
// 3. Star each primed zero of the sequence,
// thus increasing the number of starred zeros by one.
if ( mask_matrix(i->first,i->second) == PRIME )
mask_matrix(i->first,i->second) = STAR;
}
// 4. Erase all primes, uncover all columns and rows,
for ( size_t row = 0 ; row < mask_matrix.rows() ; row++ ) {
for ( size_t col = 0 ; col < mask_matrix.columns() ; col++ ) {
if ( mask_matrix(row,col) == PRIME ) {
mask_matrix(row,col) = NORMAL;
}
}
}
for ( size_t i = 0 ; i < rows ; i++ ) {
row_mask[i] = false;
}
for ( size_t i = 0 ; i < columns ; i++ ) {
col_mask[i] = false;
}
// and return to Step 2.
return 2;
}
int step5() {
const size_t rows = matrix.rows(),
columns = matrix.columns();
/*
New Zero Manufactures
1. Let h be the smallest uncovered entry in the (modified) distance matrix.
2. Add h to all covered rows.
3. Subtract h from all uncovered columns
4. Return to Step 3, without altering stars, primes, or covers.
*/
double h = std::numeric_limits::max();
for ( size_t row = 0 ; row < rows ; row++ ) {
if ( !row_mask[row] ) {
for ( size_t col = 0 ; col < columns ; col++ ) {
if ( !col_mask[col] ) {
if ( h > matrix(row, col) && matrix(row, col) != 0 ) {
h = matrix(row, col);
}
}
}
}
}
for ( size_t row = 0 ; row < rows ; row++ ) {
if ( row_mask[row] ) {
for ( size_t col = 0 ; col < columns ; col++ ) {
matrix(row, col) += h;
}
}
}
for ( size_t col = 0 ; col < columns ; col++ ) {
if ( !col_mask[col] ) {
for ( size_t row = 0 ; row < rows ; row++ ) {
matrix(row, col) -= h;
}
}
}
return 3;
}
Matrix mask_matrix;
Matrix matrix;
bool *row_mask;
bool *col_mask;
size_t saverow = 0, savecol = 0;
};
#endif /* !defined(_MUNKRES_H_) */
================================================
FILE: include/track.h
================================================
#pragma once
#include
#include "kalman_filter.h"
class Track {
public:
// Constructor
Track();
// Destructor
~Track() = default;
void Init(const cv::Rect& bbox);
void Predict();
void Update(const cv::Rect& bbox);
cv::Rect GetStateAsBbox() const;
float GetNIS() const;
int coast_cycles_ = 0, hit_streak_ = 0;
private:
Eigen::VectorXd ConvertBboxToObservation(const cv::Rect& bbox) const;
cv::Rect ConvertStateToBbox(const Eigen::VectorXd &state) const;
KalmanFilter kf_;
};
================================================
FILE: include/tracker.h
================================================
#pragma once
#include